.elementor-1683 .elementor-element.elementor-element-d303022{--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-1683 .elementor-element.elementor-element-d303022:not(.elementor-motion-effects-element-type-background), .elementor-1683 .elementor-element.elementor-element-d303022 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#058BCC;}.elementor-1683 .elementor-element.elementor-element-d13630d{--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:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-widget-heading .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-1683 .elementor-element.elementor-element-0b5eb60 .elementor-heading-title{font-family:"Inter", Sans-serif;font-size:65px;font-weight:700;}.elementor-1683 .elementor-element.elementor-element-65a6713{--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-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1683 .elementor-element.elementor-element-db77be9{font-family:"Roboto", Sans-serif;font-size:18px;font-weight:400;color:#303030;}.elementor-1683 .elementor-element.elementor-element-01c6ebb{--display:flex;}.elementor-1683 .elementor-element.elementor-element-f6646f3{--display:flex;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}}/* Start custom CSS for html, class: .elementor-element-a63d2f3 *//* 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 */