.elementor-25 .elementor-element.elementor-element-a220076{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-2ab3b41 *//* ==========================================================================
   TELA DE CARREGAMENTO (PRELOADER) PADRÃO
   ========================================================================== */
#preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important; 
    height: 100vh !important; 
    background-color: #fcf7f5 !important; /* Fundo bege rosado do site */
    z-index: 999999 !important; 
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important; 
    padding: 0 !important; 
    transition: opacity 0.6s ease, visibility 0.6s ease !important;
}

.loader-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; 
    justify-content: center !important;
}

.loader-logo {
    width: 100px !important;
    margin: 0 auto 20px auto !important; 
    display: block !important;
    animation: saltitar 0.5s infinite alternate ease-in-out !important;
    border-radius: 50% !important;
}

@keyframes saltitar {
    0% { transform: translateY(0) scaleY(0.95); }
    100% { transform: translateY(-25px) scaleY(1.05); }
}

.spinner {
    width: 40px !important;
    height: 40px !important;
    border: 4px solid rgba(122, 23, 39, 0.2) !important;
    border-top-color: #7a1727 !important; /* Cor vinho padrão */
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    margin: 0 auto 15px auto !important;
}

@keyframes spin { 
    100% { transform: rotate(360deg); } 
}

/* ==========================================================================
   PÁGINA FAQ E EFEITO ACORDEÃO - PROJETO VOZES DELAS
   ========================================================================== */
.main-content-faq {
    margin-top: 40px;
    margin-bottom: 80px;
    max-width: 900px; /* Deixa o FAQ mais centralizado para leitura fácil */
}

.faq-intro {
    text-align: center;
    margin-bottom: 50px;
}

.faq-intro h1 {
    font-size: 42px;
    color: #7a1727; /* Vinho padrão */
    margin-bottom: 15px;
}

.faq-intro p {
    font-size: 18px;
    color: #8c6b71;
    line-height: 1.6;
}

/* CAIXAS DAS PERGUNTAS */
.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.faq-item {
    background-color: #ffffff; /* Caixa branca no fundo bege */
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(122, 23, 39, 0.05);
    overflow: hidden; /* Garante que a animação não vaze pra fora */
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(122, 23, 39, 0.1);
}

/* A PERGUNTA CLICÁVEL */
.faq-pergunta {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #7a1727;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-pergunta:hover {
    color: #c92a42; /* Vermelho vivo ao passar o mouse */
}

/* A SETINHA DE ABRIR */
.faq-seta {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Transição elástica bonitinha */
    flex-shrink: 0;
    margin-left: 20px;
}

/* A RESPOSTA ESCONDIDA */
.faq-resposta {
    max-height: 0; /* Começa com altura 0 (escondido) */
    opacity: 0;
    padding: 0 30px;
    transition: all 0.4s ease-in-out;
}

.faq-resposta p {
    color: #8c6b71;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 15px;
}

/* A MÁGICA DE QUANDO O USUÁRIO CLICA (.ativo) */
.faq-item.ativo {
    border: 1px solid rgba(122, 23, 39, 0.15); /* Marca a caixa aberta */
}

.faq-item.ativo .faq-pergunta {
    color: #c92a42;
}

.faq-item.ativo .faq-seta {
    transform: rotate(180deg); /* Vira a setinha pra cima */
}

.faq-item.ativo .faq-resposta {
    max-height: 500px; /* Altura suficiente para o texto vazar suavemente */
    opacity: 1;
    padding-bottom: 25px; /* Libera espaço embaixo */
}

/* BOTÃO INTERNO DE CONTATO */
.btn-faq-interno {
    display: inline-block;
    background-color: #fcf7f5;
    color: #7a1727;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 13px;
    margin-top: 10px;
    border: 1px solid rgba(122, 23, 39, 0.2);
    transition: all 0.3s ease;
}

.btn-faq-interno:hover {
    background-color: #7a1727;
    color: #ffffff;
}

/* BANNER DE CHAMADA FINAL (CTA) */
.faq-cta-final {
    background-color: #7a1727; /* Fundo vinho */
    color: #ffffff;
    text-align: center;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(122, 23, 39, 0.2);
}

.faq-cta-final h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.faq-cta-final p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* BOTÃO COMECE AGORA */
.btn-faq-comece {
    display: inline-block;
    background-color: #c92a42; /* Vermelho destaque */
    color: #ffffff;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(201, 42, 66, 0.3);
}

.btn-faq-comece:hover {
    transform: scale(1.05) translateY(-3px);
    background-color: #ffffff;
    color: #c92a42;
}

/* RESPONSIVIDADE DO FAQ */
@media (max-width: 800px) {
    .faq-pergunta {
        font-size: 16px;
        padding: 20px;
    }
    .faq-resposta {
        padding: 0 20px;
    }
    .faq-item.ativo .faq-resposta {
        padding-bottom: 20px;
    }
    .faq-cta-final {
        padding: 40px 20px;
    }
    .faq-cta-final h2 {
        font-size: 26px;
    }
}

/* ==========================================================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fcf7f5; /* Fundo exato do WordPress (bege/rosado bem claro) */
    color: #7a1727; /* Vinho padrão para textos escuros */
    padding-top: 100px; /* Espaço para o menu */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ==========================================================================
   MENU DE NAVEGAÇÃO E HEADER
   ========================================================================== */
.main-header {
    background-color: #fcf7f5 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(122, 23, 39, 0.05) !important; /* Sombra vinho super leve */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- EFEITO DA LOGO CLICÁVEL --- */
.logo-area {
    display: inline-flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 5px 15px !important;
    border-radius: 8px !important;
    border: 2px solid transparent !important; 
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.logo-area:hover {
    border: 2px solid #7a1727 !important; /* Margem cor de vinho nova */
    background-color: rgba(122, 23, 39, 0.05) !important; 
    transform: scale(1.02) !important; 
    cursor: pointer !important;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-weight: 700;
    font-size: 16px;
    color: #7a1727; 
    letter-spacing: 0.5px;
}

/* --- LINKS DO MENU E SUBLINHADO ANIMADO --- */
.nav-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none !important;
    color: #8c6b71 !important; 
    font-weight: 500;
    font-size: 15px;
    position: relative !important;
    padding-bottom: 5px !important; 
    transition: color 0.3s ease !important;
}

.nav-menu a::after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important; 
    height: 2px !important;
    bottom: 0 !important; 
    left: 0 !important;
    background-color: #7a1727 !important; /* Nova cor vinho */
    transition: width 0.3s ease !important;
}

.nav-menu a:hover, 
.nav-menu a.ativo {
    color: #7a1727 !important; 
}

.nav-menu a:hover::after, 
.nav-menu a.ativo::after {
    width: 100% !important; 
}

/* --- MENU SUSPENSO (DROPDOWN "MAIS ▾") --- */
.dropdown-item {
    position: relative !important;
}

.dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: #fcf7f5 !important; /* Fundo combinando com o site */
    box-shadow: 0 8px 20px rgba(122, 23, 39, 0.1) !important;
    border-radius: 8px !important;
    padding: 10px 0 !important;
    min-width: 150px !important;
    z-index: 1000 !important;
    list-style: none !important;
}

.dropdown-item:hover .dropdown-menu {
    display: block !important;
    animation: fadeInDropdown 0.3s ease !important;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.dropdown-menu li {
    display: block !important;
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 20px !important;
    color: #7a1727 !important;
    display: block !important;
}

.dropdown-menu li a::after {
    display: none !important; /* Remove linha no menu suspenso */
}

.dropdown-menu li a:hover {
    background-color: rgba(122, 23, 39, 0.05) !important;
}

/* ==========================================================================
   RODAPÉ (FOOTER UNIFICADO)
   ========================================================================== */
.main-footer {
    background-color: transparent !important;
    padding: 30px 0 !important;
    margin-top: auto !important;
    font-size: 13px !important;
    color: #8c6b71 !important;
}

.footer-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: 1px solid rgba(122, 23, 39, 0.1) !important; 
    padding-top: 20px !important;
    flex-wrap: wrap !important;
    gap: 15px;
}

.footer-left {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 600 !important;
    color: #7a1727 !important;
}

.footer-logo {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
}

/* Trava do Ícone do Instagram com Efeito Hover */
.instagram-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    color: #7a1727 !important; 
    border-radius: 50% !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    padding: 8px !important; 
    box-sizing: border-box !important;
}

.instagram-icon svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.instagram-icon:hover {
    color: #c92a42 !important; 
    border-color: #c92a42 !important; 
    background-color: rgba(201, 42, 66, 0.05) !important; 
    transform: scale(1.1) !important; 
}

/* ==========================================================================
   TELA DE CARREGAMENTO (PRELOADER)
   ========================================================================== */
#preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important; 
    height: 100vh !important; 
    background-color: #fcf7f5 !important; /* Corrigido para a cor base do site */
    z-index: 999999 !important; 
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important; 
    padding: 0 !important; 
    transition: opacity 0.6s ease, visibility 0.6s ease !important;
}

.loader-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; 
    justify-content: center !important;
}

.loader-logo {
    width: 100px !important;
    margin: 0 auto 20px auto !important; 
    display: block !important;
    animation: saltitar 0.5s infinite alternate ease-in-out !important;
    border-radius: 50% !important;
}

@keyframes saltitar {
    0% { transform: translateY(0) scaleY(0.95); }
    100% { transform: translateY(-25px) scaleY(1.05); }
}

.spinner {
    width: 40px !important;
    height: 40px !important;
    border: 4px solid rgba(122, 23, 39, 0.2) !important;
    border-top-color: #7a1727 !important; /* Nova cor vinho */
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    margin: 0 auto 15px auto !important;
}

@keyframes spin { 
    100% { transform: rotate(360deg); } 
}

/* ==========================================================================
   RESPONSIVIDADE (CELULARES) - GLOBAL
   ========================================================================== */
@media (max-width: 800px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}/* End custom CSS */