/* ========================================
   ESTILOS GLOBAIS - VARIÁVEIS DE CORES
   ======================================== */

:root {
    /* Paleta de Cores */
    --color-primary-light: #ACB4D3;      /* Azul claro principal */
    --color-primary-medium: #7D86A6;     /* Azul médio */
    --color-primary-dark: #4D577A;       /* Azul escuro */
    --color-primary-darker: #14214D;     /* Azul muito escuro */
    --color-dark: #0A1127;               /* Preto azulado */
    --color-light: #E9E9E9;              /* Cinza claro */
    --color-gold: #B8860B;               /* Dourado */
    --color-brown: #716753;              /* Marrom */
    --color-white: #FFFFFF;
    
    /* Fontes */
    --font-cinzel: 'Cinzel', serif;
    --font-montserrat: 'Montserrat', sans-serif;
    
    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Breakpoints */
    --breakpoint-mobile: 480px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;
    --breakpoint-large: 1440px;
}

/* ========================================
   RESET CSS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-montserrat);
    color: var(--color-primary-darker);
    line-height: 1.6;
    background-color: var(--color-light);
}

/* ========================================
   HEADER - ESTILO PRINCIPAL (Wix Style)
   ======================================== */

/* Variáveis do Header (baseadas no Wix) */
.header {
    --header-height: 125px;        /* Altura do cabeçalho */
    --bg-position: 0px;
    --bg-color: var(--color-light); /* 🎨 COR DO FUNDO do header */
    --header-shadow: 0 0 5px rgba(0, 0, 0, 0.7); /* Sombra */
    --borders-position: 6px;       /* Posição das bordas */
    --outer-line-size: 3px;        /* Espessura linha externa */
    --border-color: #9c7103;       /* 🎨 COR DAS LINHAS (bordas) */
    --line-gap: 5px;               /* Espaço entre linhas */
    --inner-line-size: 1px;        /* Espessura linha interna */
    
    position: sticky;
    top: 0;
    width: 100%;
    min-height: var(--header-height);
    z-index: 1000;
}

/* ========== ESTRUTURA DO HEADER COM BORDAS DUPLAS ========== */

/* Background Layer (fundo do header) */
.header__bg {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--bg-position);
    bottom: var(--bg-position);
    background-color: var(--bg-color);
    box-shadow: var(--header-shadow);
    z-index: -2;
}

/* Outer Border (linha externa grossa - 3px) */
.header__outer-border {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--borders-position);
    bottom: var(--borders-position);
    border-top: var(--outer-line-size) solid var(--border-color);
    border-bottom: var(--outer-line-size) solid var(--border-color);
    z-index: -1;
    pointer-events: none;
}

/* Inner Border (linha interna fina - 1px) 
   Posição: borders-position(6px) + outer-line-size(3px) + line-gap(5px) = 14px */
.header__inner-border {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--borders-position) + var(--outer-line-size) + var(--line-gap));
    bottom: calc(var(--borders-position) + var(--outer-line-size) + var(--line-gap));
    border-top: var(--inner-line-size) solid var(--border-color);
    border-bottom: var(--inner-line-size) solid var(--border-color);
    z-index: -1;
    pointer-events: none;
}

/* Container do Header */
.header__inner {
    width: 100%;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
    padding-left: 150px;   /* 👈 MARGEM ESQUERDA */
    padding-right: 150px;  /* 👈 MARGEM DIREITA */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    min-height: calc(var(--header-height) - 20px);
}

@media (min-width: 992px) {
    .header__inner {
        padding-top: var(--space-md);
        padding-bottom: var(--space-md);
        padding-left: 150px;   /* 👈 MARGEM ESQUERDA DESKTOP */
        padding-right: 150px;  /* 👈 MARGEM DIREITA DESKTOP */
    }
}

/* Perfil Mobile (aparece só no mobile) */
.header__mobile-profile {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: var(--space-md);
    bottom: var(--space-sm);
}

@media (min-width: 992px) {
    .header__mobile-profile {
        display: none;
    }
}

/* ========================================
   LOGO / MARCA
   ======================================== */

.header__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    text-align: center;
    order: 0;
}

@media (min-width: 992px) {
    .header__logo {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        text-align: left;
        width: 200px; /* Largura fixa para equilibrar com actions */
    }
}

/* Espaço para imagem da logo */
.header__logo-image {
    max-width: 60px;
    width: auto;
    height: 40px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .header__logo-image {
        max-width: 80px;
        height: 50px;
    }
}

/* Ícone emoji (temporário) */
.header__logo-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .header__logo-icon {
        width: 24px;
        height: 24px;
        font-size: 18px;
    }
}

/* Container do texto da logo */
.header__logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: center;
}

@media (min-width: 992px) {
    .header__logo-text {
        align-items: flex-start;
    }
}

.header__brand {
    font-family: var(--font-cinzel);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary-darker);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

@media (min-width: 992px) {
    .header__brand {
        font-size: 16px;
        letter-spacing: 2px;
    }
}

@media (min-width: 1200px) {
    .header__brand {
        font-size: 18px;
    }
}

.header__brand-subtitle {
    font-family: var(--font-montserrat);
    font-size: 8px;
    color: var(--color-primary-darker);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

@media (min-width: 992px) {
    .header__brand-subtitle {
        font-size: 8px;
        letter-spacing: 0.8px;
    }
}

@media (min-width: 1200px) {
    .header__brand-subtitle {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* ========================================
   NAVEGAÇÃO PRINCIPAL
   ======================================== */

.header__nav {
    display: none;
    flex: 1;
    justify-content: center;
}

@media (min-width: 992px) {
    .header__nav {
        display: flex;
    }
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 8px; /* Reduzido para aproximar itens */
    align-items: center;
    justify-content: center;
}

@media (min-width: 1200px) {
    .header__nav-list {
        gap: 14px;
    }
}

@media (min-width: 1440px) {
    .header__nav-list {
        gap: 20px;
    }
}

.header__nav-link {
    font-family: var(--font-cinzel);
    font-size: 12px; /* Reduzido para caber em telas menores */
    color: #14214D; /* Cor padrão azul escuro */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 750;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .header__nav-link {
        font-size: 12px;
        letter-spacing: 0.8px;
    }
}

/* Hover: texto branco */
.header__nav-link:hover {
    color: #FFFFFF;
}

/* Página ativa: texto dourado */
.header__nav-link--active {
    color: var(--color-gold);
}

/* Menu Mobile Hamburger */
.header__mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
}

.header__mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-primary-darker);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .header__mobile-toggle {
        display: none;
    }
}

/* ========================================
   AÇÕES DO HEADER (Idioma, Notificações, CTA)
   ======================================== */

.header__actions {
    display: none;
    flex-direction: column; /* Idiomas em cima, ícones embaixo */
    align-items: flex-end; /* Alinhado à direita */
    gap: 4px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .header__actions {
        display: flex;
        width: 200px; /* Mesma largura do logo para centralizar nav */
    }
}

/* Seletor de Idioma */
.header__language {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px 4px;
    border-radius: 20px;
    background-color: #d0d0d0;
    border: 1px solid var(--color-primary-medium);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.header__language-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 8px;
    border-radius: 16px;
    font-family: var(--font-montserrat);
    font-size: 10px;
    color: var(--color-primary-darker);
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.header__language-btn--active {
    opacity: 1;
    background-color: var(--color-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    color: var(--color-primary-darker);
}

.header__language-btn:hover {
    opacity: 1;
}

.header__language-flag {
    font-size: 11px;
    display: inline-flex;
    align-items: center;
}

.header__language-text {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Container dos Ícones */
.header__icons {
    display: flex;
    align-items: center;
    gap: 4px;
    border-left: none; /* Removido - agora está abaixo, não ao lado */
    padding-left: 0;
}

/* Ícones do Header */
.header__icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-primary-darker);
    transition: color 0.3s ease;
    padding: 0px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 28px;
    height: 28px;
}

.header__icon-btn:hover {
    color: var(--color-gold);
}

/* Badge de notificação */
.header__icon-btn--badge {
    position: relative;
}

.header__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--color-gold);
    color: var(--color-primary-darker);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    font-family: var(--font-montserrat);
    border: 2px solid var(--color-primary-light);
}

/* Ícone dropdown */
.header__icon-btn--dropdown {
    font-size: 14px;
    margin-left: 4px;
}

@media (min-width: 1024px) {
    .header__actions {
        gap: 16px;
    }
    
    .header__icons {
        gap: 10px;
        padding-left: 16px;
    }
    
    .header__icon-btn {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }
}

/* ========================================
   SEÇÃO DE VÍDEO HERO
   ======================================== */

.video-hero {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

@media (min-width: 768px) {
    .video-hero {
        min-height: 600px;
    }
}

@media (min-width: 1024px) {
    .video-hero {
        min-height: 700px;
    }
}

/* Placeholder para vídeo */
.video-hero__container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .video-hero__container {
        min-height: 600px;
    }
}

@media (min-width: 1024px) {
    .video-hero__container {
        min-height: 700px;
    }
}

.video-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Overlay escuro sobre o vídeo */
.video-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 33, 77, 0.5);
    z-index: 1;
}

/* Conteúdo do Hero */
.video-hero__content {
    position: relative;
    z-index: 8;
    text-align: center;
    padding: var(--space-xl) var(--space-xxl);
    max-width: 100%; /* Permite expandir para o título caber */
    margin: 0 auto;
}

.video-hero__subtitle {
    font-family: var(--font-montserrat);
    font-size: 26px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: var(--space-xxl);
    opacity: 0.85;
}

@media (min-width: 768px) {
    .video-hero__subtitle {
        font-size: 18px;
        margin-bottom: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .video-hero__subtitle {
        font-size: 32px;
        margin-bottom: var(--space-xl);
    }
}

.video-hero__title {
    font-family: var(--font-cinzel);
    font-size: 36px;
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    line-height: 1.15;
    word-spacing: 0.2em;
    white-space: nowrap; /* Mantém em uma linha */
}

@media (min-width: 768px) {
    .video-hero__title {
        font-size: 52px;
        margin-bottom: 3rem;
        letter-spacing: 3px;
    }
}

@media (min-width: 1024px) {
    .video-hero__title {
        font-size: 64px;
        margin-bottom: 3.5rem;
        letter-spacing: 4px;
    }
}

@media (min-width: 1440px) {
    .video-hero__title {
        font-size: 80px;
        letter-spacing: 5px;
    }
}

.video-hero__cta {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-primary-darker);
    border: none;
    padding: 12px 36px;
    font-family: var(--font-cinzel);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: var(--space-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-hero__cta:hover {
    background-color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .video-hero__cta {
        padding: 14px 44px;
        font-size: 13px;
        margin-top: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .video-hero__cta {
        padding: 16px 52px;
        font-size: 14px;
        margin-top: 3rem;
    }
}

.video-hero__cta:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: scale(1.05);
}

#video {
    position: relative;
    z-index: 2;  /* Fica acima de qualquer overlay residual */
    background: white;  /* Ou sua cor de fundo */
}

#video .video-wrapper iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}


/* ========================================
   RESPONSIVIDADE MOBILE
   ======================================== */

@media (max-width: 480px) {
    .header__inner {
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-md);
    }
    
    .header__brand {
        font-size: 16px;
    }
    
    .header__actions {
        gap: var(--space-sm);
    }
    
    .header__cta {
        padding: 6px 16px;
        font-size: 10px;
    }
    
    .video-hero__subtitle {
        font-size: 14px;
    }
    
    .video-hero__title {
        font-size: 28px;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeInDown 0.6s ease-out;
}

.video-hero__content {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* ========================================
   TRANSIÇÃO SOFISTICADA ENTRE SEÇÕES - EFEITO ESFUMAÇADO
   ======================================== */

.section-transition {
    position: relative;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #E9E9E9 0%, #F5F5F5 50%, #FFFFFF 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transition-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

/* Animação das camadas de fumaça */
.cloud-layer {
    animation: smokeFloat 20s ease-in-out infinite;
}

@keyframes smokeFloat {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.6;
    }
}

.transition-ornaments {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
    z-index: 2;
}

.ornament {
    display: flex;
    align-items: center;
    flex: 1;
    animation: ornamentSlide 1.5s ease-out;
}

.ornament-left {
    justify-content: flex-end;
    padding-right: 30px;
}

.ornament-right {
    justify-content: flex-start;
    padding-left: 30px;
}

.ornament-line {
    height: 2px;
    flex: 1;
    background: linear-gradient(to right, transparent, #B8860B, transparent);
    position: relative;
}

.ornament-left .ornament-line {
    background: linear-gradient(to left, #B8860B, transparent);
}

.ornament-right .ornament-line {
    background: linear-gradient(to right, #B8860B, transparent);
}

.ornament-diamond {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.6);
    animation: diamondPulse 2s ease-in-out infinite;
}

.ornament-center {
    padding: 0 20px;
}

.center-icon {
    font-size: 2.5rem;
    color: #B8860B;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.5),
                 0 0 30px rgba(255, 215, 0, 0.3);
    animation: iconGlow 3s ease-in-out infinite;
}

/* Animação de entrada da transição */
@keyframes ornamentSlide {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes diamondPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(184, 134, 11, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.9),
                    0 0 35px rgba(184, 134, 11, 0.6);
    }
}

@keyframes iconGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(184, 134, 11, 0.5),
                     0 0 30px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
                     0 0 40px rgba(184, 134, 11, 0.6),
                     0 0 50px rgba(255, 215, 0, 0.4);
        transform: scale(1.1);
    }
}

/* Efeito de entrada ao scroll */
.reception-section {
    animation: fadeInSection 1.2s ease-out;
}

@keyframes fadeInSection {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax Background */
.parallax-bg {
    transition: transform 0.1s ease-out;
}

/* Responsividade da transição */
@media (max-width: 768px) {
    .section-transition {
        height: 120px;
    }
    
    .transition-ornaments {
        max-width: 90%;
    }
    
    .center-icon {
        font-size: 2rem;
    }
    
    .ornament-diamond {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .section-transition {
        height: 100px;
    }
    
    .ornament-left,
    .ornament-right {
        padding: 0 15px;
    }
    
    .center-icon {
        font-size: 1.5rem;
    }
    
    .ornament-diamond {
        width: 8px;
        height: 8px;
    }
}

/* ========================================
   UTILITÁRIOS
   ======================================== */

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ========================================
   SEÇÃO CONTATO E FAQ
   ======================================== */

/* Container principal */
.contact-faq-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    align-items: start;
}

/* ===== COLUNA ESQUERDA ===== */
.contact-column {
    padding: 20px;
}

/* WhatsApp */
.contact-item {
    margin-bottom: 40px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #25d366;
    font-size: 1.05em;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    gap: 18px;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Email */
.email-link {
    display: inline-block;
    text-decoration: none;
    color: #2c3e50;
    font-size: 0.95em;
    border-bottom: 2px solid #E9E9E9;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.email-link:hover {
    border-bottom-color: #2c3e50;
    color: #1a2530;
}

/* Canal */
.canal-label {
    display: block;
    color: #666;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
}

/* YouTube placeholder */
.youtube-container {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.youtube-placeholder {
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #e9e9e9 0%, #f5f5f5 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.85em;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.youtube-placeholder:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Correspondência */
.correspondence {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #E9E9E9;
}

.correspondence-title {
    font-size: 0.95em;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.address {
    color: #555;
    font-size: 0.9em;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

/* ===== COLUNA DIREITA ===== */
.faq-column {
    background: #E9E9E9;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Header FAQ */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.faq-header h2 {
    font-size: 1.8em;
    color: #2c3e50;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Barra de busca */
.search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-box input {
    width: 100%;
    padding: 11px 15px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9em;
    color: #666;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.search-box input::placeholder {
    color: #999;
}

.search-box input:focus {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1em;
    cursor: pointer;
}

/* Acordeão */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Header do item */
.accordion-header {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background: #fafafa;
}

.accordion-item.active .accordion-header {
    background: #f5f5f5;
    border-bottom-color: #E9E9E9;
}

.accordion-title {
    font-size: 0.95em;
    color: #2c3e50;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Ícone chevron */
.accordion-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: transform 0.3s ease;
    font-size: 1.1em;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #666;
}

/* Conteúdo */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
}

.accordion-text {
    padding: 18px 22px;
    color: #555;
    line-height: 1.65;
    font-size: 0.9em;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo - Contato e FAQ */
@media (max-width: 1024px) {
    .contact-faq-section {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 50px;
    }

    .faq-column {
        padding: 40px 30px;
    }

    .faq-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-faq-section {
        padding: 40px 20px;
        gap: 40px;
    }

    .faq-header h2 {
        font-size: 1.5em;
    }

    .accordion-header {
        padding: 15px 18px;
    }

    .accordion-text {
        padding: 15px 18px;
    }
}
