.elementor-88 .elementor-element.elementor-element-1bdd404{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-88 .elementor-element.elementor-element-1bdd404{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-88 .elementor-element.elementor-element-f402e1b{margin:89px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-f402e1b */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&display=swap');

/* Configurações Gerais */
body { padding-top: 100px; margin: 0; font-family: 'Montserrat', sans-serif; }

:root {
    --azul-transito: #1e3a8a;
    --texto: #334155;
    --branco: #ffffff;
}

/* Header Estrutura Principal */
.tv-header {
    background: var(--branco);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Altura fixa para o desktop */
    display: flex;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.tv-nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Divide em 3 colunas perfeitas */
    align-items: center;
}

/* Coluna Esquerda */
.tv-nav-left { display: flex; align-items: center; }
.tv-logo-desktop img { height: 65px; width: auto; mix-blend-mode: multiply; transition: 0.3s; }

/* Coluna Central */
.tv-nav-center { display: flex; justify-content: center; align-items: center; }
.tv-desktop-menu ul { list-style: none; display: flex; gap: 40px; margin: 0; padding: 0; }
.tv-desktop-menu ul li a { 
    text-decoration: none; 
    color: var(--texto); 
    font-weight: 700; 
    font-size: 15px; 
    transition: 0.3s;
    letter-spacing: -0.2px;
}
.tv-desktop-menu ul li a:hover { color: var(--azul-transito); }

/* Coluna Direita */
.tv-nav-right { display: flex; justify-content: flex-end; }
.tv-btn-simulado {
    background: var(--azul-transito);
    color: var(--branco) !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    padding: 15px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.tv-btn-simulado:hover { background: #3b82f6; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(30,58,138,0.2); }

/* Esconder elementos mobile por padrão */
.tv-mobile-btn, .tv-logo-mobile { display: none; }

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 991px) {
    body { padding-top: 85px; }
    .tv-header { height: 85px; }

    /* Troca as logos e esconde o menu desktop */
    .tv-logo-desktop, .tv-desktop-menu { display: none; }
    .tv-mobile-btn, .tv-logo-mobile { display: block; }

    /* Ajuste da Logo Central Mobile */
    .tv-logo-mobile img { 
        height: 75px; /* Aumentada como solicitado */
        mix-blend-mode: multiply; 
    }

    /* Hamburguer */
    .tv-mobile-btn { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 6px; }
    .tv-mobile-btn .bar { width: 25px; height: 3px; background: var(--azul-transito); border-radius: 3px; }

    /* Botão na direita no mobile */
    .tv-btn-simulado span { display: none; } /* Deixa apenas o ícone no mobile para caber */
    .tv-btn-simulado { padding: 12px; border-radius: 10px; }
}

/* Estilos do Menu Lateral (Drawer) */
.tv-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--branco);
    z-index: 10001;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 40px 30px;
}
.tv-drawer.active { left: 0; }
.tv-drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.tv-font-bold { font-weight: 800; color: #cbd5e1; font-size: 12px; letter-spacing: 1px; }
.tv-close-drawer { background: none; border: none; font-size: 40px; color: var(--azul-transito); cursor: pointer; line-height: 1; }
.tv-drawer-links a { display: block; text-decoration: none; color: var(--texto); font-weight: 700; font-size: 20px; margin-bottom: 25px; }
.tv-drawer-cta { background: var(--azul-transito); color: var(--branco) !important; text-align: center; padding: 18px; border-radius: 15px; margin-top: 20px; }

/* Overlay Background */
.tv-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); z-index: 10000; display: none; }
.tv-overlay.active { display: block; }
.no-scroll { overflow: hidden; }/* End custom CSS */