.elementor-20 .elementor-element.elementor-element-11ef759{--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-bd541f6 *//* ==========================================================================
   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;
}

/* ==========================================================================
   TELA DE CARREGAMENTO (PRELOADER)
   ========================================================================== */
#preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important; 
    height: 100vh !important; 
    background-color: #fcf7f5 !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;
    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; 
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    margin: 0 auto 15px auto !important;
}

@keyframes spin { 
    100% { transform: rotate(360deg); } 
}


/* ==========================================================================
   CONTEÚDO DA PÁGINA "SOBRE NÓS" (Adaptado para as cores do site)
   ========================================================================== */
.main-content-sobre {
    margin-top: 40px;
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #7a1727;
    margin-bottom: 40px;
}

/* 1. INTRODUÇÃO */
.sobre-intro {
    text-align: center;
    padding: 60px 40px;
    margin-bottom: 60px;
    background-color: #ffffff; /* Fundo branco para destacar no bege */
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(122, 23, 39, 0.05);
}

.sobre-intro h1 {
    font-size: 42px;
    color: #7a1727;
    margin-bottom: 20px;
}

.sobre-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #8c6b71;
    max-width: 800px;
    margin: 0 auto;
}

/* 2. EQUIPE (Grid e Cards) */
.sobre-equipe {
    margin-bottom: 80px;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.membro-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(122, 23, 39, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.membro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(122, 23, 39, 0.1);
}

/* --- CORREÇÃO DAS FOTOS DOS MEMBROS (IDÊNTICAS E REDONDINHAS) --- */
.membro-foto {
    width: 140px !important; /* Largura fixa (pode aumentar se quiser maior) */
    height: 140px !important; /* Altura exatamente igual à largura para garantir o círculo */
    border-radius: 50% !important; /* É isso que faz o corte ficar 100% redondo */
    object-fit: cover !important; /* Faz a foto preencher o círculo sem esmagar ou distorcer a imagem */
    object-position: top center !important; /* Foca na parte de cima/rosto da pessoa caso a foto original seja muito comprida */
    margin: 0 auto 20px auto !important; /* Centraliza a foto perfeitamente no card */
    border: 4px solid #fcf7f5 !important; /* Cria uma bordinha charmosa na cor do fundo do site */
    box-shadow: 0 5px 15px rgba(122, 23, 39, 0.15) !important; /* Sombreado elegante combinando com o vinho */
    display: block !important;

}

.membro-nome {
    font-size: 22px;
    color: #7a1727;
    margin-bottom: 5px;
}

.membro-funcao {
    font-size: 14px;
    color: #c92a42;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.membro-desc {
    font-size: 14px;
    color: #8c6b71;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1; 
}

/* Botão Instagram Menor */
.btn-insta-membro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #fcf7f5;
    color: #7a1727;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(122, 23, 39, 0.2);
}

.btn-insta-membro svg {
    width: 16px;
    height: 16px;
}

.btn-insta-membro:hover {
    background-color: #7a1727;
    color: #ffffff;
    transform: scale(1.05);
}

/* 3. MISSÃO E LINHA DO TEMPO */
.sobre-missao {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.missao-bloco {
    background-color: #7a1727;
    color: #fcf7f5;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(122, 23, 39, 0.2);
}

.missao-bloco h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.missao-bloco p {
    font-size: 16px;
    line-height: 1.6;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 3px solid rgba(122, 23, 39, 0.2);
    padding-left: 20px;
    margin-left: 20px;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -29.5px;
    top: 5px;
    width: 16px;
    height: 16px;
    background-color: #c92a42;
    border-radius: 50%;
    border: 3px solid #fcf7f5;
}

.timeline-content h3 {
    color: #7a1727;
    font-size: 20px;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #8c6b71;
    font-size: 14px;
    line-height: 1.5;
}

/* 4. CARROSSEL DE LUGARES APRESENTADOS */
.sobre-carrossel-sec {
    margin-bottom: 60px;
}

.carrossel-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    padding-bottom: 20px;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.carrossel-container::-webkit-scrollbar {
    display: none;
}

.carrossel-slide {
    min-width: 350px;
    height: 250px;
    border-radius: 24px;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carrossel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.carrossel-slide:hover img {
    transform: scale(1.05);
}

.slide-legenda {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(122, 23, 39, 0.9), transparent);
    color: #ffffff;
    padding: 20px;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* ==========================================================================
   RODAPÉ (FOOTER UNIFICADO)
   ========================================================================== */
/* ==========================================================================
   RODAPÉ (FOOTER UNIFICADO CORRIGIDO)
   ========================================================================== */
.main-footer {
    background-color: #fcf7f5 !important; /* Força a cor bege/rosada exata do site */
    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; 
}
/* ==========================================================================
   RESPONSIVIDADE (CELULARES)
   ========================================================================== */
@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;
    }
    
    .sobre-missao {
        grid-template-columns: 1fr;
    }
    
    .carrossel-slide {
        min-width: 280px;
    }
}

/* --- BOTÃO GALERIA COMPLETA (CORES E FORMATO PADRONIZADOS) --- */
.btn-galeria {
    display: inline-block !important;
    background-color: #921931 !important; /* Cor vinho exata do botão da Home */
    color: #ffffff !important;
    padding: 14px 28px !important;
    border-radius: 8px !important; /* Borda padronizada com o resto do site */
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    margin-top: 30px !important;
    transition: all 0.3s ease !important;
}

.btn-galeria:hover {
    transform: translateY(-3px) scale(1.05) !important; /* O mesmo efeito de pulinho suave */
    background-color: #751225 !important; /* Cor exata do hover da Home */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2) !important;
}

/* ==========================================================================
   ESTILOS DO GRÁFICO INTERATIVO DOS DADOS
   ========================================================================== */
.secao-dados {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(122, 23, 39, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.secao-dados-header h2 {
    font-size: 32px;
    color: #7a1727;
    margin-bottom: 15px;
}

.secao-dados-header p {
    font-size: 16px;
    color: #8c6b71;
    line-height: 1.6;
}

.secao-dados-header .fonte {
    font-size: 12px;
    font-style: italic;
    color: #a3727b;
    margin-top: 10px;
    display: block;
}

.grafico-container {
    margin-top: 20px;
}

.grafico-legendas {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    color: #7a1727;
}

.grafico-fundo {
    width: 100%;
    height: 40px;
    background-color: #fcf7f5;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(122, 23, 39, 0.1);
    position: relative;
}

.grafico-barra {
    height: 100%;
    width: 0%; /* Começa em zero para a animação disparar */
    background: linear-gradient(90deg, #c92a42, #7a1727);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    transition: width 6s cubic-bezier(0.25, 1, 0.5, 1); /* Transição suave */
}

/* Classe ativada via JavaScript quando visível no ecrã */
.grafico-barra.animar {
    width: 20%;
}

@media (max-width: 800px) {
    .secao-dados { padding: 30px 20px; }
    .grafico-legendas { flex-direction: column; gap: 5px; text-align: center; }
}/* End custom CSS */