/* ===================================
   RESET E CONFIGURAÇÕES BÁSICAS
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores */
    --verde-oliva: #6B7F5C;
    --verde-oliva-escuro: #556349;
    --verde-oliva-claro: #8FA67E;
    --dourado: #C9A961;
    --dourado-trans: #c9aa6146;
    --dourado-escuro: #B39347;
    --terracota: #C87E5A;
    --bege: #E8DCC4;
    --bege-claro: #F5F1E8;
    --marrom: #6B5444;
    --preto: #1A1A1A;
    --branco: #FFFFFF;
    --cinza-claro: #F8F8F8;
    --destaque-cta: #D97706; /* Laranja âmbar/terracota vibrante para contraste */
    
    /* Tipografia */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
    
    /* Espaçamentos - Mobile First */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 2rem;      /* 32px */
    --spacing-xl: 3rem;      /* 48px */
    --spacing-xxl: 4rem;     /* 64px */
    
    /* Bordas */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Transições */
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--preto);
    line-height: 1.7;
    background-color: var(--branco);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   HEADER - MOBILE FIRST
   =================================== */
.header {
    background-color: var(--branco);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
}

.header-logo {
    width: 60px;
    height: 70px;
    object-fit: cover;
    flex-shrink: 0;
}

.logo h1 {
    font-size: clamp(1.25rem, 4vw, 1.8rem);
    color: var(--verde-oliva);
    font-weight: 600;
}

.logo-subtitle {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--marrom);
    font-style: italic;
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--verde-oliva);
    transition: var(--transition-base);
    border-radius: 2px;
}

/* Navegação Mobile First */
.nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--branco);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.nav.active {
    max-height: 400px;
}

.nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
}

.nav-list a {
    text-decoration: none;
    color: var(--verde-oliva-escuro);
    font-weight: 500;
    transition: color var(--transition-base);
    font-size: 0.95rem;
    padding: var(--spacing-xs) 0;
    display: block;
}

.nav-list a:hover {
    color: var(--verde-oliva);
}

/* Header Desktop */
@media (min-width: 768px) {
    .header {
        padding: var(--spacing-md) 0;
    }
    
    .header-logo {
        width: 70px;
        height: 80px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav {
        position: static;
        box-shadow: none;
        max-height: none;
        overflow: visible;
    }
    
    .nav-list {
        flex-direction: row;
        padding: 0;
        gap: var(--spacing-lg);
    }
    
    .nav-list a {
        padding: 0;
    }
}

/* ===================================
   HERO SECTION - MOBILE FIRST
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--bege-claro) 0%, var(--bege) 100%);
    padding: var(--spacing-xl) 0;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.hero-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-smooth);
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    color: var(--verde-oliva-escuro);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    color: var(--dourado-escuro);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.5;
}

.hero-description {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--preto);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

/* Hero Tablet */
@media (min-width: 768px) {
    .hero {
        padding: var(--spacing-xl) 0;
        min-height: 85vh;
        display: flex;
        align-items: center;
    }

    .hero .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: var(--spacing-xl);
    }

    .hero-image {
        width: 90%;
        max-width: 400px;
        order: 2;
    }

    .hero-content {
        text-align: left;
        max-width: 50%;
        order: 1;
    }
}

/* Hero Desktop */
@media (min-width: 1024px) {
    .hero .container {
        gap: var(--spacing-xxl);
    }

    .hero-image {
        max-width: 480px;
    }

    .hero-content {
        max-width: 55%;
    }

    .hero:hover .hero-image {
        box-shadow: 0 30px 60px rgba(201, 169, 97, 0.2);
        transform: scale(1.02);
    }
}

/* ===================================
   BUTTONS - MOBILE FIRST
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    font-size: clamp(0.9rem, 2vw, 1rem);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--verde-oliva);
    color: var(--branco);
    box-shadow: 0 4px 14px 0 rgba(217, 119, 6, 0.39);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.23);
}

.btn-secondary {
    background-color: var(--dourado);
    color: var(--branco);
}

.btn-secondary:hover {
    background-color: var(--dourado-escuro);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .btn {
        padding: 1rem 2.5rem;
    }
}

/* ===================================
   PROBLEMS SECTION - MOBILE FIRST
   =================================== */
.problems-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--branco);
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: var(--dourado);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    line-height: 1.2;
}

/* Grid responsivo - Mobile First */
.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

/* Cards - Mobile First com Imagem de Fundo */
.problem-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--dourado);
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Overlay para garantir legibilidade */
.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(7, 80, 35, 0.212) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: background var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--verde-oliva-claro);
}

.problem-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.103) 0%, rgba(0, 0, 0, 0.9) 100%);
}

/* Conteúdo interno do card */
.problem-card-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}

/* Imagens de fundo específicas para cada card */
.problem-card-anxiety {
    background-image: url('fotos/cafe.jpeg');
}

.problem-card-dysregulation {
    background-image: url('fotos/rodagigante.jpeg');
}

.problem-card-depression {
    background-image: url('fotos/guardachuva.jpeg');
}

.problem-card-insomnia {
    background-image: url('fotos/quarto.jpeg');
}

.problem-card-pain {
    background-image: url('fotos/fone.jpeg');
}

.problem-card-relationships {
    background-image: url('fotos/cafeteria.jpeg');
}

/* Parágrafo com cor branca para contraste */
.problem-card p {
    color: var(--branco);
    line-height: 1.6;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Container da emoção no rodapé do card */
.names-emotion {
    background-color: var(--dourado);
    padding: var(--spacing-sm) var(--spacing-md);
    margin: auto calc(var(--spacing-md) * -1) calc(var(--spacing-md) * -1) calc(var(--spacing-md) * -1);
    border-radius: 0;
    text-align: center;
    width: calc(100% + (var(--spacing-md) * 2));
}

.problem-card h3 {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--branco);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

/* Problems Section Tablet */
@media (min-width: 600px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Problems Section Desktop */
@media (min-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

/* ===================================
   CTA SECTION - MOBILE FIRST
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--verde-oliva) 0%, var(--verde-oliva-escuro) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
    color: var(--branco);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-weight: 500;
}

.cta-subtext {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--bege-claro);
    margin-top: var(--spacing-md);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cta-section {
        padding: var(--spacing-xxl) 0;
    }
}

/* ===================================
   ABOUT SECTION - MOBILE FIRST
   =================================== */
.about-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bege-claro);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Imagem da profissional */
.about-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.professional-photo {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* Container de texto */
.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Destaque de credenciais - Mobile First */
.credentials-highlight {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: rgba(201, 169, 97, 0.08);
    border-radius: var(--border-radius);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.credential-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
}

.credential-label {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    font-weight: 700;
    color: var(--dourado);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credential-value {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    color: var(--preto);
    font-weight: 500;
    line-height: 1.4;
    text-align: right;
}

/* Parágrafos */
.about-text p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 0;
    line-height: 1.7;
    color: var(--preto);
}

/* Destaque da abordagem */
.approach-highlight {
    background-color: var(--branco);
    padding: var(--spacing-md);
    border-left: 4px solid var(--dourado);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.approach-title {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--dourado);
    margin: 0 0 var(--spacing-xs) 0;
    font-weight: 600;
}

.approach-highlight p {
    margin: 0;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.approach-highlight strong {
    color: var(--verde-oliva-escuro);
    font-weight: 600;
}

/* Quote */
.quote {
    background-color: var(--branco);
    border-left: 4px solid var(--dourado);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0 0 0;
    font-style: italic;
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--verde-oliva-escuro);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    line-height: 1.7;
}

/* About Section Tablet */
@media (min-width: 768px) {
    .credentials-highlight {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .credential-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .credential-value {
        text-align: left;
    }
}

/* About Section Desktop */
@media (min-width: 1024px) {
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: var(--spacing-xxl);
        align-items: start;
    }

    .about-image {
        position: sticky;
        top: calc(var(--spacing-xl) + 80px);
        max-width: none;
    }
}

/* ===================================
   HOW IT WORKS SECTION - MOBILE FIRST
   =================================== */
.how-it-works-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--branco);
}

.section-subtitle-terapia {
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    color: var(--verde-oliva-escuro);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

/* Conteúdo introdutório */
.how-it-works-content {
    max-width: 850px;
    margin: 0 auto var(--spacing-lg);
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    line-height: 1.75;
    text-align: center;
    color: var(--preto);
}

/* Grid de serviços - Mobile First */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

/* Card de serviço */
.service-card {
    background: rgba(200, 127, 90, 0.08);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, rgba(201, 169, 97, 0.01) 100%);
    pointer-events: none;
    transition: opacity var(--transition-smooth);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
}

/* Ícone do serviço */
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    background-color: rgba(201, 169, 97, 0.08);
    transition: all var(--transition-smooth);
    color: var(--dourado);
}

.service-card:hover .service-icon {
    background-color: rgba(201, 169, 97, 0.15);
    transform: scale(1.1);
}

.service-icon svg {
    display: block;
}

/* Título do serviço */
.service-card h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--verde-oliva-escuro);
    margin: 0 0 var(--spacing-xs) 0;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* Localização do serviço */
.service-location {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--dourado);
    margin: 0 0 var(--spacing-sm) 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Descrição do serviço */
.service-description {
    color: var(--preto);
    line-height: 1.6;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    margin: 0;
}

/* CTA centralizado */
.cta-center {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Services Grid Tablet */
@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
}

/* Services Grid Desktop */
@media (min-width: 1024px) {
    .how-it-works-content {
        margin-bottom: var(--spacing-xl);
    }
    
    .services-grid {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-center {
        margin-top: var(--spacing-xl);
    }
}

/* ===================================
   HELP SECTION - MOBILE FIRST
   =================================== */
.help-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--cinza-claro);
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.help-card {
    background-color: var(--branco);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-left: 4px solid var(--dourado);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--verde-oliva);
}

.help-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--verde-oliva);
    color: var(--branco);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.help-card h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--verde-oliva-escuro);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.help-card p {
    color: var(--preto);
    line-height: 1.7;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Help Grid Tablet */
@media (min-width: 768px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Help Grid Desktop */
@media (min-width: 1024px) {
    .help-section {
        padding: var(--spacing-xxl) 0;
    }
    
    .help-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* ===================================
   APPROACH SECTION - MOBILE FIRST
   =================================== */
.approach-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bege-claro);
}

.approach-description {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    text-align: center;
}

.approach-description strong {
    color: var(--dourado-escuro);
    font-weight: 600;
}

.pillars-title {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    background-color: var(--dourado);
    border-radius: var(--border-radius);
    color: var(--bege-claro);
    text-align: center;
    padding: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
    font-weight: 600;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.pillar-card {
    background-color: var(--branco);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--dourado);
    transition: all var(--transition-base);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pillar-card h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--dourado-escuro);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.pillar-card p {
    color: var(--preto);
    line-height: 1.7;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Pillars Grid Tablet */
@media (min-width: 600px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Pillars Grid Desktop */
@media (min-width: 1024px) {
    .approach-section {
        padding: var(--spacing-xxl) 0;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pillars-title {
        margin: var(--spacing-xl) 0 var(--spacing-lg);
    }
}

/* ===================================
   FAQ SECTION - MOBILE FIRST
   =================================== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--branco);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background-color: var(--cinza-claro);
    border: none;
    padding: var(--spacing-md);
    text-align: left;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    color: var(--verde-oliva-escuro);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background-color: var(--bege-claro);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--dourado);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--spacing-sm);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    background-color: var(--branco);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: var(--spacing-md);
    line-height: 1.7;
    color: var(--preto);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

@media (min-width: 768px) {
    .faq-section {
        padding: var(--spacing-xxl) 0;
    }
}

/* ===================================
   FINAL CTA SECTION - MOBILE FIRST
   =================================== */
.final-cta-section {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-escuro) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--branco);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .final-cta-section {
        padding: var(--spacing-xxl) 0;
    }
}

/* ===================================
   FOOTER - MOBILE FIRST
   =================================== */
.footer {
    background-color: var(--verde-oliva-escuro);
    color: var(--branco);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    width: 70px;
    height: 80px;
    object-fit: cover;
}

.footer-section h3 {
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    color: var(--dourado);
}

.footer-section h4 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    color: var(--bege-claro);
}

.footer-section p {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
    font-style: italic;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-section a {
    color: var(--bege-claro);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-section a:hover {
    color: var(--dourado);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--spacing-md);
}

.footer-bottom p {
    color: var(--bege-claro);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    align-items: center;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(201, 169, 97, 0.15);
    color: var(--dourado);
    transition: all var(--transition-smooth);
    text-decoration: none;
    border: 1px solid rgba(201, 169, 97, 0.3);
    position: relative;
    font-size: 1.5rem;
}

.social-icon:hover {
    background-color: var(--dourado);
    color: var(--verde-oliva-escuro);
    border-color: var(--dourado);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(201, 169, 97, 0.3);
}

.whatsapp-icon,
.email-icon,
.instagram-icon {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.whatsapp-icon:hover,
.email-icon:hover,
.instagram-icon:hover {
    background-color: #ffffff;
    color: var(--verde-oliva-escuro);
    border-color: #ffffff;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

/* Footer Desktop */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   WHATSAPP FLOAT BUTTON - MOBILE FIRST
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--branco);
}

@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-float svg {
        width: 35px;
        height: 35px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.section-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    color: var(--marrom);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states para acessibilidade */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--dourado);
    outline-offset: 2px;
}

/* ===================================
   ESTILOS PARA LISTAS (ESCANEABILIDADE)
   =================================== */
.about-list, .how-list {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding-left: 0;
}

.about-list li, .how-list li {
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-list i {
    color: var(--verde-oliva);
    margin-top: 5px;
    font-size: 0.9rem;
}

.how-list li {
    background: var(--bege-claro);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--verde-oliva);
    display: block;
}

.how-list li strong {
    color: var(--verde-oliva-escuro);
    display: block;
    margin-bottom: 2px;
}
