/* ========== ESTILOS ESPECÍFICOS DA PÁGINA DE SERVIÇOS ========== */
/* Arquivo: css/servicos.css */

/* Service Detail */
.service-detail {
    margin-bottom: 4rem;
}

/* Override CTA Section - Apenas na página de serviços */
.cta-section {
    background: var(--light-bg) !important;
}

.cta-section h2 {
    color: var(--rose-gold) !important;
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-section .lead {
    color: var(--dark-text) !important;
    opacity: 1 !important;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%) !important;
    color: var(--white) !important;
    border: none !important;
    animation: none !important;
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-pink) 100%) !important;
    color: var(--white) !important;
}

.service-detail-image img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

.service-icon-detail {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
}

.service-detail-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-benefits li {
    padding: 0.8rem 0;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.service-benefits i {
    color: var(--rose-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-detail hr {
    border-color: var(--primary-pink);
    opacity: 0.3;
}

.service-detail .btn-primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
    animation: none;
}

.service-detail .btn-primary:hover {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-pink) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .service-detail-title {
        font-size: 1.8rem;
    }

    .service-detail-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .service-detail {
        margin-bottom: 3rem;
    }

    .service-detail .order-lg-2 {
        order: 1 !important;
    }

    .service-detail .order-lg-1 {
        order: 2 !important;
    }

    .service-icon-detail {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
    }
}