/* ===== SERVIÇOS PAGE STYLES ===== */

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #1e3a8a, #0f766e);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== SERVIÇOS DETALHES ===== */
.services-detail {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-detail-item.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detail-item.reverse > * {
    direction: ltr;
}

.detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.detail-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.detail-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.detail-content li {
    padding: 0.5rem 0;
    color: #6b7280;
}

.detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #1e3a8a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .service-detail-item,
    .service-detail-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-detail-item.reverse > * {
        direction: ltr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .services-detail {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .detail-content h2 {
        font-size: 1.3rem;
    }
}

/* Logo como botão */
.logo-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 8px solid var(--white);
}
