.elementor-1576 .elementor-element.elementor-element-768393f{--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;}.elementor-1576 .elementor-element.elementor-element-768393f:not(.elementor-motion-effects-element-type-background), .elementor-1576 .elementor-element.elementor-element-768393f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#058BCC;}.elementor-1576 .elementor-element.elementor-element-ffe138c{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-1576 .elementor-element.elementor-element-f95d4b9{margin:20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1576 .elementor-element.elementor-element-91cc5fd{padding:0px 0px 0px 0px;}.elementor-1576 .elementor-element.elementor-element-91cc5fd .elementor-heading-title{font-family:"Inter", Sans-serif;font-size:36px;font-weight:600;color:#2F2731;}.elementor-widget-theme-post-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-1576 .elementor-element.elementor-element-46a07c1{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;text-align:start;color:#585757;font-family:"Roboto", Sans-serif;font-size:18px;font-weight:400;}.elementor-1576 .elementor-element.elementor-element-ab0051f{--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;}@media(min-width:768px){.elementor-1576 .elementor-element.elementor-element-ffe138c{--width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-1576 .elementor-element.elementor-element-ffe138c{--width:100%;}}@media(max-width:1024px){.elementor-1576 .elementor-element.elementor-element-ffe138c{--padding-top:15px;--padding-bottom:15px;--padding-left:15px;--padding-right:15px;}.elementor-widget-theme-post-title .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-1576 .elementor-element.elementor-element-91cc5fd .elementor-heading-title{font-size:26px;}}@media(max-width:767px){.elementor-1576 .elementor-element.elementor-element-ffe138c{--padding-top:15px;--padding-bottom:15px;--padding-left:15px;--padding-right:15px;}.elementor-widget-theme-post-title .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-1576 .elementor-element.elementor-element-91cc5fd .elementor-heading-title{font-size:25px;}.elementor-1576 .elementor-element.elementor-element-46a07c1{font-size:15px;}}/* Start custom CSS for html, class: .elementor-element-df36d14 *//* Container Principal do Header */
.adv-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    background-color: transparent;
    font-family: "Helvetica", "Arial", sans-serif;
}

/* --- Estilos do Logo --- */
.adv-logo img {
    max-height: 45px;
    width: auto;
    display: block;
}

/* --- Estilos do Menu (Desktop) --- */
.adv-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.adv-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.adv-nav a:hover {
    color: #cccccc;
}

/* --- Estilos do Botão (CTA) --- */
.adv-btn {
    background-color: #ffffff;
    color: #c92c2c;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.adv-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- Checkbox e hambúrguer no desktop (escondidos) --- */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
}

/* ===========================
   MOBILE / TABLET (<= 900px)
   =========================== */
@media (max-width: 900px) {

    /* Linha superior: logo à esquerda, hambúrguer à direita */
    .adv-header-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;  /* Aumentei o padding vertical */
        min-height: 60px;    /* Garante altura mínima */
    }
    
    .adv-logo {
        order: 1;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        margin: 0;
    }

    .adv-logo img {
        max-height: 35px;
        vertical-align: middle;  /* Garante alinhamento vertical */
    }

    /* Ícone hambúrguer à direita */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;  /* Centraliza as barras verticalmente */
        gap: 4px;
        cursor: pointer;
        order: 2;
        height: 35px;  /* Mesma altura da logo */
        padding: 0 5px;
        z-index: 100;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #ffffff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Menu dropdown (inicialmente fechado) */
    .adv-nav {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background-color: transparent;
    }
    
    .adv-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin: 10px 0 0 0;
        padding: 0;
    }
    
    .adv-nav li {
        width: 100%;
    }
    
    .adv-nav a {
        display: block;
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 0;
        transition: background-color 0.2s ease, color 0.2s ease;
    }
    
    .adv-nav a:active,
    .adv-nav a:hover {
        background-color: rgba(255, 255, 255, 0.08);
    }
    
    /* CTA abaixo do menu */
    .adv-cta {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
        transition: max-height 0.35s ease;
    }
    
    .adv-btn {
        padding: 12px 32px;
        font-size: 15px;
        width: auto;
        max-width: 280px;
        margin: 15px 0;
    }

    /* Quando o checkbox é marcado: abre menu e CTA */
    .menu-toggle:checked ~ .adv-nav {
        max-height: 500px;
    }

    .menu-toggle:checked ~ .adv-cta {
        max-height: 120px;
    }

    /* Animação do hambúrguer → X */
    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ===========================
   MOBILE PEQUENO (<= 480px)
   =========================== */
@media (max-width: 480px) {

    .adv-header-wrapper {
        padding: 12px 16px;
        min-height: 55px;
    }
    
    .adv-logo img {
        max-height: 30px;
    }

    .hamburger {
        height: 30px;
    }
    
    .adv-nav a {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .adv-btn {
        padding: 10px 24px;
        font-size: 14px;
        max-width: 240px;
    }

    .hamburger span {
        width: 23px;
    }
}/* End custom CSS */