/* =========================================================================
   ESTILOS ESPECÍFICOS PARA PÁGINAS DE SERVIÇOS (Premium Soul)
   ========================================================================= */

/* Hero Simplificado para Serviços */
.hero-service {
    min-height: 60vh;
    background-color: var(--color-primary-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: var(--border-gold-subtle);
}

/* Ambient Glow (Luzes decorativas) */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 177, 113, 0.08) 0%, rgba(7, 30, 24, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Passo a Passo (Grid de 4 colunas com números) */
.steps-section {
    padding: var(--space-24) 0;
    background-color: var(--color-primary);
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.step-card {
    padding: var(--space-12) var(--space-8);
    border-left: 1px solid rgba(225, 177, 113, 0.1);
}

.step-card:first-child {
    background-color: var(--color-gold-dark);
    border-left: none;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: var(--space-6);
    opacity: 0.8;
    line-height: 1;
}

.step-content {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* FAQ Estilo Acordeão (Toggle) */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    border-bottom: var(--border-dark-subtle);
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: var(--space-6) 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-trigger:hover {
    color: var(--color-gold-dark);
}

.faq-trigger svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
    color: var(--color-gold-dark);
}

.faq-item.active .faq-trigger svg {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    color: rgba(7, 30, 24, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item.active .faq-content {
    max-height: 500px; /* Suficiente para a maioria das respostas */
    padding-bottom: var(--space-6);
}

/* Responsividade de Serviços */
@media (max-width: 900px) {
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { border-left: none; border-bottom: 1px solid rgba(225, 177, 113, 0.1); }
    .hero-service { min-height: 60vh; text-align: center; }
}
