.elementor-28 .elementor-element.elementor-element-e5f9162{--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-1260e31 *//* --- Reset e Configurações Gerais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f6ebe6; /* Tom de fundo sutilmente rosado/bege do site original */
    color: #4a1521; /* Texto escuro puxado para o bordô */
    padding-top: 100px; /* Espaço para o menu fixo */
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Menu de Navegação --- */
.main-header {
    background-color: #f6ebe6;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(122, 23, 39, 0.05) !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    
        
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    color: #80182c;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #613e46;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #80182c;
}

/* --- Layout Principal (Grid Split) --- */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    flex: 1;
    margin-bottom: 50px;
}

/* Coluna da Esquerda */
.left-column {
    display: flex;
}

.featured-image {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
    border-radius: 24px; /* Bordas arredondadas marcantes das fotos */
}

/* Coluna da Direita */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Cards / Blocos */
.info-card {
    background-color: #fff9f6; /* Fundo interno mais claro dos blocos */
    border-radius: 24px;
    padding: 40px;
}

.main-card h1 {
    font-size: 42px;
    color: #80182c; /* Cor vinho/bordô do título */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.main-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #835d66;
    margin-bottom: 30px;
}

/* Sub-Grid Inferior */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.counter-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.counter-card h2 {
    font-size: 36px;
    color: #80182c;
    margin-bottom: 10px;
}

.counter-card p {
    color: #835d66;
    font-size: 15px;
}

/* Bloco de Imagem com Botão */
.image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

/* --- Botões Padrão --- */
.btn-vinho {
    display: inline-block;
    background-color: #921931; /* Vermelho escuro/vinho idêntico ao botão */
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: center;
    transition: background-color 0.2s;
}

.btn-vinho:hover {
    background-color: #751225;
}

.wide-btn {
    width: 100%;
}

/* --- Rodapé (Footer) --- */
.main-footer {
    background-color: #f6ebe6;
    padding: 25px 0;
    margin-top: auto;
    font-size: 13px;
    color: #835d66;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(131, 93, 102, 0.15);
    padding-top: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.footer-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.footer-center p {
    text-align: center;
}

.footer-right .instagram-icon {
    font-size: 18px;
    text-decoration: none;
    opacity: 0.8;
}

/* --- Responsividade para Celulares --- */
@media (max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/* Efeito de sublinhado animado no menu */
.nav-menu ul li a {
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #800020; /* Ajuste para a cor vinho do seu projeto */
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

/* Animação nos botões (Crescer levemente e ganhar sombra) */
.btn-vinho {
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-vinho:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1); /* Deixa a cor um pouco mais viva ao passar o mouse */
}

.image-card {
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: scale(1.02); /* A imagem dá um leve zoom */
}

/* Estilo base do número */
.numero-animado {
    font-size: 3rem;
    color: #800020; /* Cor vinho do projeto */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Efeito ativado pelo JavaScript quando a contagem termina */
.numero-animado.concluido {
    transform: scale(1.1);
    color: #b3002d; /* Um tom de vinho mais claro/brilhante */
    text-shadow: 0px 4px 10px rgba(128, 0, 32, 0.3);
}

/* ==========================================================================
   CSS GLOBAL DO PROJETO VOZES DELAS (Blindado para Elementor)
   ========================================================================== */

/* --- EFEITO DA LOGO CLICÁVEL --- */
.logo-area {
    padding: 5px 15px !important;
    border-radius: 8px !important;
    border: 2px solid transparent !important; 
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
}

.logo-area:hover {
    border: 2px solid #800020 !important; 
    background-color: rgba(128, 0, 32, 0.05) !important; 
    transform: scale(1.02) !important; 
    cursor: pointer !important;
}

/* --- EFEITO DE SUBLINHADO ANIMADO NO MENU --- */
.nav-menu ul li > a {
    position: relative !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    padding-bottom: 5px !important; 
}

.nav-menu ul li > a::after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important; 
    height: 2px !important;
    bottom: 0 !important; 
    left: 0 !important;
    background-color: #800020 !important; 
    transition: width 0.3s ease !important;
}

.nav-menu ul li > a:hover::after {
    width: 100% !important; 
}

/* --- NOVO MENU SUSPENSO (DROPDOWN "MAIS ▾") --- */
.dropdown-item {
    position: relative !important;
}

.dropdown-menu {
    display: none !important; /* Esconde a caixinha por padrão */
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important; /* Centraliza a caixa embaixo do Mais */
    background-color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
    border-radius: 8px !important;
    padding: 10px 0 !important;
    min-width: 150px !important;
    z-index: 1000 !important;
    list-style: none !important;
}

/* Quando o mouse passar em cima do "Mais", a caixinha aparece */
.dropdown-item:hover .dropdown-menu {
    display: block !important;
    animation: fadeInDropdown 0.3s ease !important; /* Animação suave para aparecer */
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* Estilo do link dentro da caixinha (Calendário) */
.dropdown-menu li {
    display: block !important;
}

.dropdown-menu li a {
    padding: 10px 20px !important;
    color: #333 !important;
    display: block !important;
}

.dropdown-menu li a::after {
    display: none !important; /* Tira a linha debaixo dos links do dropdown */
}

.dropdown-menu li a:hover {
    background-color: rgba(128, 0, 32, 0.05) !important;
    color: #800020 !important;
}

/* --- TELA DE CARREGAMENTO (PRELOADER) --- */
#preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important; 
    height: 100vh !important; 
    background-color: #ffffff !important;
    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;
}

@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(128, 0, 32, 0.2) !important;
    border-top-color: #800020 !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    margin: 0 auto 15px auto !important;
}

@keyframes spin { 
    100% { transform: rotate(360deg); } 
}

/* --- ALINHAMENTO DO RODAPÉ E TRAVA DO INSTAGRAM --- */
/* --- ALINHAMENTO DO RODAPÉ (CORES CORRIGIDAS) --- */
.main-footer {
    padding: 20px 0 !important;
    background-color: #ffffff !important; /* Fundo branco combinando com o site */
    color: #333333 !important; /* Texto escuro original */
    border-top: 1px solid #eaeaea !important; /* Linha divisória bem suave e elegante */
}

.footer-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.footer-left {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.footer-logo {
    width: 40px !important;
    height: auto !important;
}

/* Controla o botão do Instagram para aparecer no fundo branco */
.instagram-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    color: #333333 !important; /* O ícone agora começa escuro para dar contraste */
    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;
}

/* Efeito hover perfeito com as cores do projeto */
.instagram-icon:hover {
    color: #800020 !important; /* Ícone muda para vinho */
    border-color: #800020 !important; /* Ganha a margem circular vinho */
    background-color: rgba(128, 0, 32, 0.05) !important; /* Fundo vermelho bem sutil */
    transform: scale(1.1) !important; 
}

/* --- REDUZIR ESPAÇO ENTRE HEADER E MAIN --- */
.main-content {
    margin-top: 20px !important; /* Controla o espaço de fora. Diminua para 10px ou 0 se quiser mais colado */
    padding-top: 0 !important;   /* Zera o espaço de dentro */
}

/* Se a primeira coisa do seu site for um título ou a imagem da coluna esquerda, isso impede que eles empurrem a página para baixo: */
.main-content > h1, 
.main-content > div,
.left-column {
    margin-top: 0 !important;
}

/* Garante que o header não esteja jogando o conteúdo para baixo */
.main-header {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important; 
}

/* --- ARREDONDAR BORDA DA IMAGEM PRINCIPAL --- */
.featured-image {
    border-radius: 12px !important; /* Deixa as bordas arredondadas (pode alterar o número se quiser mais ou menos redondo) */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important; /* Bônus: adiciona aquela sombra suave para combinar com os outros cards */
    object-fit: cover !important; 
    width: 100% !important; /* Garante que ela ocupe o espaço certinho sem distorcer */
}/* End custom CSS */