/* ========== FONTES ========== */
@font-face {
    font-family: 'Acum-Pro-Wide-Black';
    src: url('../fonts/Acumin-Pro-Wide-Black.woff2');
}
@font-face {
    font-family: 'Acum-Pro-Wide-Bold';
    src: url('../fonts/Acumin-Pro-Wide-Bold.woff2');
}
@font-face {
    font-family: 'Acum-Pro-Wide-Book';
    src: url('../fonts/Acumin-Pro-Wide-Book.woff2');
}
@font-face{
    font-family: 'Acum-Pro-Wide-Medium';
    src: url('../fonts/Acumin-Pro-Wide-Medium.woff2');
}
@font-face{
    font-family: 'Acum-Pro-Wide-Semibold';
    src: url('../fonts/Acumin-Pro-Wide-Semibold.woff2');
}
@font-face{
    font-family: 'Acum-Pro-Wide-ExtraLight';
    src: url('../fonts/Acumin-Pro-Wide-ExtraLight.woff2');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0;}

/* ========== CORES ========== */
:root {
    --purple-1: #944CF5;
    --purple-2: #7D45D3;
    --purple-3: #4C277C;
    --purple-4: #11091B;
    --purple-5: #DFC9FD;
    --purple-6: #CDA8FD;
    --purple-7: #AB73FA;
    --pink:     #FF2CCD;
    --green:    #5EDD82;
    --teal:     #5FD4E0;
    --yellow:   #F7F11E;
    --orange:   #FF822E;
    --red:      #FF2E2E;
    --white:    #ffffff;
    --dark:     #11091B;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
/* ========== HEADER ========== */
.header {
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--purple-2);
    height: 90px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.nav_contato{
    display: flex;
    flex-wrap: wrap;
    background: var(--purple-1);
    height: auto;
    align-items: center;
    justify-content: space-between;
    padding: 0px 16%;
}

.nav_contato_redes{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-right: 80px;
    align-items: center;
    color: var(--white);
}

.nav_contato_telefone{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: var(--white);
    margin-top: 5px;

}

.nav{
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.nav__logo-img {
    height: 36px;
    width: auto;
    margin-right: 40px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 248px;
    flex: 1;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

.nav__menu div{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nav__link {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    background: var(--white);
    padding: 10px 13px;
    border-radius: 20px;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.nav__link:hover { opacity: 0.85; }

.nav__link--cta {
    background: var(--green);
    color: var(--white);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
}
.nav__hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}
.nav__hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav__hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav__hamburger span {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__menu .nav_contato_redes--mobile {
    display: none;
}

/* NAV — garante opacity para animação GSAP */
.nav__link {
    opacity: 1;
}

/* ========== DROPDOWN ========== */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-arrow {
    font-size: 9px;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.nav__dropdown.open .nav__dropdown-arrow {
    transform: rotate(180deg);
}

.nav__dropdown-panel {
    display: none !important;
    position: absolute;
    top: calc(100% + 14px);
    left: 130%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.13);
    padding: 20px 24px;
    min-width: 350px;
    z-index: 200;
}

.nav__dropdown.open .nav__dropdown-panel {
    display: block !important;
    animation: dropdownFade 0.18s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav__dropdown-title {
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.nav__dropdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.nav__dropdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
    cursor: pointer;
}
.nav__dropdown-item {
    flex: 1 1 120px;
    max-width: 160px;
}

.nav__dropdown-item:hover {
    border-color: var(--purple-1);
    color: var(--purple-1);
    box-shadow: 0 4px 14px rgba(148,76,245,0.1);
}

.nav__dropdown-item i {
    font-size: 22px;
    color: var(--purple-2);
    transition: color 0.2s;
}

.nav__dropdown-item:hover i {
    color: var(--purple-1);
}

/* ========== DROPDOWN APLICATIVOS ========== */
.nav__dropdown-panel--apps {
    min-width: 520px;
    left: 230%;
    right: 0;
    transform: translateX(-50%);
}

.nav__apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.nav__app-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1.5px solid #eee;
    border-radius: 14px;
    color: var(--dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.nav__app-card:hover {
    border-color: var(--purple-1);
    box-shadow: 0 4px 14px rgba(148,76,245,0.1);
    color: var(--purple-1);
}

.nav__app-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.nav__app-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav__app-name {
    font-size: 15px;
    font-weight: 700;
}

.nav__app-cta {
    font-size: 12px;
    color: var(--purple-1);
    font-weight: 600;
}

/*BANNERS*/
.banner__inicio-pagina{
    opacity: 1;    
}

/* ========== FOOTER ========== */
.footer {
    background: var(--purple-2);
    padding: 50px 24px 32px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    height: 400px;
}

.footer__bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    height: 250%;
    width: 100%;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.footer__logo { flex: 0 0 auto; margin-left: 24px; }
.footer__logo-img { height: 40px; width: auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 10px;}

.footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 90px;
    flex: 1;
    margin-left: 24px;
}

.footer__col-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 2px; }
.footer__col a {
    font-size: 0.85rem;
    color: var(--white);
    transition: color 0.2s;
}
.footer__col a:hover { color: var(--green); }

.footer__social { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; max-width: 100px;}
.footer__social-icon {
    font-size: 14px;
    transition: opacity 0.2s;
}
.footer__social-icon:hover { opacity: 0.8; }

.redes_sociais {
    background-color: var(--white);
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.redes_sociais a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-2);
}

.footer-direitos{
    display:flex; 
    align-items:flex-end;
}

/* ========== RESPONSIVE — HEADER / FOOTER ========== */

@media (max-width: 1010px){
    .footer__logo{
        margin-bottom: 20px;
    }
    .footer-direitos{
        margin-left: 24px;
    }
}

@media (max-width: 900px) {
    .nav__hamburger { display: flex; }
    .nav_contato { padding: 0px 80px; }
    .nav__logo-img { margin-right: 0; }
    .footer__cols { grid-template-columns: repeat(2, 1fr); }
    .nav_contato_telefone{    
        margin-top: 5px;
    }
    /* Menu: desce direto da navbar, position absolute ao header */
    .nav__menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--purple-3);
        padding: 0 0 24px;
        gap: 0;
        z-index: 99;
        /* Fechado: sobe 100% da própria altura → some atrás da navbar */
        transform: translateY(-100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0s linear 0.32s;
    }

    /* Aberto: desce naturalmente abaixo da navbar */
    .nav__menu.open {
        transform: translateY(0);
        visibility: visible;
        pointer-events: all;
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0s linear 0s;
    }

    .nav__menu div { gap: 0; }

    .nav__menu li {
        width: 100%;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    li.ultimo_li { border-top: none; }
    li.ultimo_li a { padding-bottom: 0; }

    .nav__link {
        border-radius: 0;
        width: 100%;
        background-color: transparent;
        text-align: center;
        color: var(--white);
        padding: 14px 20px;
        font-size: 14px;
        display: block;
    }
    .nav__menu li:has(.nav__link--cta) {
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        border-bottom: none;
        margin-top: 8px;
        padding: 12px 16px;
    }
    .nav__link--cta {
        display: block;
        background: var(--green);
        color: var(--white);
        text-align: center;
        border-radius: 30px;
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
        
    }
    
    /* ── Todos os painéis no mobile: modal centralizado (estão no body via JS) ── */
    .nav__dropdown-panel:not(.nav__dropdown-panel--apps) {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        width: 90% !important;
        transform: translate(-50%, -50%) !important;
        border-radius: 20px !important;
        min-width: 0 !important;
        max-height: 80dvh !important;
        overflow-y: auto;
        z-index: 200;
        padding: 20px 20px 28px;
        background: #fff !important;
        box-shadow: 0 12px 40px rgba(0,0,0,0.35) !important;
        animation: none !important;
        display: none !important;
    }

    .nav__dropdown-panel:not(.nav__dropdown-panel--apps).mobile-open {
        display: block !important;
    }

    /* Grid Internet Fibra: 2 colunas no mobile */
    .nav__dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── Painel Aplicativos: overlay fixo abaixo da navbar ── */
    /* Painel de apps: movido para body via JS, controlado por .mobile-open */
    .nav__dropdown-panel--apps {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        width: 90% !important;
        transform: translate(-50%, -50%) !important;
        border-radius: 20px !important;
        min-width: 0 !important;
        max-height: 80dvh !important;
        overflow-y: auto;
        z-index: 200;
        padding: 20px 20px 28px;
        background: #fff !important;
        box-shadow: 0 12px 40px rgba(0,0,0,0.35) !important;
        animation: none !important;
        display: none !important;
    }

    .nav__dropdown-panel--apps.mobile-open {
        display: block !important;
    }

    /* Reseta cores para fundo branco no painel de apps */
    .nav__dropdown-panel--apps .nav__dropdown-title {
        color: #aaa;
    }

    .nav__apps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 8px;
    }

    .nav__app-card {
        color: var(--dark);
        border-color: #eee;
        background: transparent;
        padding: 12px 14px;
    }

    .nav__app-card:hover {
        border-color: var(--purple-1);
        color: var(--purple-1);
        box-shadow: 0 4px 14px rgba(148,76,245,0.1);
    }

    .nav__app-name {
        color: inherit;
    }
}

@       margin-bottom: 20px;
    }
    .footer-direitos{
        margin-left: 24px;
    }a(max-width: 320px){
    .nav__menu .nav_contato_redes--mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav_contato_redes, .nav_contato_telefone{
        margin: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav_contato_redes div, .nav_contato_telefone div{
        margin: 0px 12px 0px 12px;
    }
    .nav_contato{
        display: none;
    }
    .nav__logo-img {
        margin-right: 68px;
    }
    .footer{
        height: auto;
    }
}

@media(min-width: 320px) and (max-width: 375px){
    .nav__menu .nav_contato_redes--mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav_contato_redes, .nav_contato_telefone{
        margin: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav_contato_redes div, .nav_contato_telefone div{
        margin: 0px 12px 0px 12px;
    }
    .nav_contato{
        display: none;
    }
    .nav__logo-img {
        margin-right: 80px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        gap: 30px;
    }
}

@media(min-width: 375px) and (max-width: 390px){
    .nav__menu .nav_contato_redes--mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav_contato_redes, .nav_contato_telefone{
        margin: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav_contato_redes div, .nav_contato_telefone div{
        margin: 0px 12px 0px 12px;
    }
    .nav_contato{
        display: none;
    }
    .nav__logo-img {
        margin-right: 110px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        gap: 30px;
    }
}

@media(min-width: 390px) and (max-width: 414px){
    .nav__menu .nav_contato_redes--mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav_contato_redes, .nav_contato_telefone{
        margin: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav_contato_redes div, .nav_contato_telefone div{
        margin: 0px 12px 0px 12px;
    }
    .nav_contato{
        display: none;
    }
    .nav__logo-img {
        margin-right: 120px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        gap: 30px;
    }
}

@media(min-width: 414px) and (max-width: 430px){
    .nav__menu .nav_contato_redes--mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav_contato_redes, .nav_contato_telefone{
        margin: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav_contato_redes div, .nav_contato_telefone div{
        margin: 0px 12px 0px 12px;
    }
    .nav_contato{
        display: none;
    }
    .nav__logo-img {
        margin-right: 140px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        gap: 30px;
    }
}

@media(min-width: 430px) and (max-width: 460px){
    .nav__menu .nav_contato_redes--mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav_contato_redes, .nav_contato_telefone{
        margin: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav_contato_redes div, .nav_contato_telefone div{
        margin: 0px 12px 0px 12px;
    }
    .nav_contato_telefone{    
        margin-top: 5px;
    }
    .nav_contato{
        display: none;
    }
    .nav__logo-img {
        margin-right: 160px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        gap: 30px;
    }
}

@media(min-width: 460px) and (max-width: 500px){
    .nav__menu .nav_contato_redes--mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav_contato_redes, .nav_contato_telefone{
        margin: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav_contato_redes div, .nav_contato_telefone div{
        margin: 0px 12px 0px 12px;
    }
    .nav_contato_telefone{    
        margin-top: 5px;
    }
    .nav_contato{
        display: none;
    }
    .nav__logo-img {
        margin-right: 200px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        gap: 30px;
    }
}

@media(min-width: 500px) and (max-width: 540px){
    .nav_contato{
        padding: 0px 12%;
    }
    .nav_contato_redes{
        margin: 0;
    }
    .nav__logo-img {
        margin-right: 240px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        gap: 30px;
    }
}
@media(max-width: 720px){
    .footer__cols { grid-template-columns: repeat(1, 1fr); }
}
@media(min-width: 540px) and (max-width: 600px){
    .nav_contato{
        padding: 0px 14%;
    }
    .nav__logo-img {
        margin-right: 280px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        gap: 30px;
    }
}

@media(min-width: 600px) and (max-width: 660px){
    .nav_contato{
        padding: 0px 14%;
    }
    .nav__logo-img {
        margin-right: 320px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        gap: 30px;
    }
}

@media(min-width: 660px) and (max-width: 700px){
    .nav_contato{
        padding: 0px 8%;
    }
    .nav__logo-img {
        margin-right: 380px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        gap: 30px;
    }
}

@media(min-width: 700px) and (max-width: 768px){
    .nav_contato{
        padding: 0px 8%;
    }
    .nav__logo-img {
        margin-right: 440px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        gap: 30px;
    }
}

@media(min-width: 768px) and (max-width: 840px){
    .nav_contato{
        padding: 0px 14%;
    }
    .nav__logo-img {
        margin-right: 450px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        margin-left: 45px;
        gap: 30px;
    }
}

@media(min-width: 840px) and (max-width: 900px){
    .nav_contato{
        padding: 0px 10%;
    }
    .nav__logo-img {
        margin-right: 550px;
    }
    .footer{
        height: auto;
    }
    .footer__cols {
        margin-left: 45px;
        gap: 30px;
    }
}

@media(min-width: 900px) and (max-width: 1050px){
    .nav_contato{
        padding: 0px 12%;
    }
    .nav__menu{
        gap: 5px;   
    }
    .nav__menu div{
        display: flex;
        gap: 5px;   
    }
    
}

@media(min-width: 1050px) and (max-width: 1190px){
    .nav__menu{
        gap: 90px;
    }
}
@media(min-width: 1190px) and (max-width: 2000px){
    .nav__menu{
        gap: 50px;
    }
}

.popups {
    display: flex;
    flex-direction: column;
    position: fixed;
    gap: 12px;
    right: 20px;
    bottom: 24px;
    z-index: 9999;
}

.popups a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.20);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
    position: relative;
}

.popups a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: popup-pulse 2s ease-out infinite;
    z-index: -1;
}

.popup_whatsapp::before { animation-delay: 0s; }
.popup_telefone::before { animation-delay: 0.4s; }

@keyframes popup-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.7); opacity: 0;   }
    100% { transform: scale(1.7); opacity: 0;   }
}

.popups a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.popups a i {
    font-size: 1.4rem;
}

.popup_telefone {
    background-color: #0064BA;
}

.popup_whatsapp {
    background-color: #25D366;
}

.highlighted {
    animation: pulseHighlight 2s ease infinite;
  }
  @keyframes pulseHighlight {
    0%   { box-shadow: 0 0 0 0 rgba(148,76,245,0.5); }
    50%  { box-shadow: 0 0 0 16px rgba(148,76,245,0); }
    100% { box-shadow: 0 0 0 0 rgba(148,76,245,0); }
  }

  /* carrossel */
  .swiper {
    width: 100vw;
    height: 56vw;
    max-height: 700px;
  }
  
.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0,0,0,.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

.swiper-pagination-bullet-active {
  background: var(--purple-1);
}

.swiper-slide:has(video) {
    background: linear-gradient(135deg, var(--purple-3) 0%, var(--purple-1) 100%);
  }
  
  .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
@media (max-width: 768px) {
    .swiper {
      height: 56vw; /* mantém a proporção no mobile também */
    }
  }


/*Rolagem navegador*/
/* ── Scrollbar personalizada ── */
/* Tamanho da scroll bar*/
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--white); /* fundo escuro */
}
/* Botoes */
::-webkit-scrollbar-button:hover {
    background: #bbb;
}
::-webkit-scrollbar-thumb {
    background: var(--purple-1); /* roxo principal */
    border-radius: 4px;
}
/* Quando passa em cima */
::-webkit-scrollbar-thumb:hover {
    background: var(--purple-7); /* mais claro no hover */
}
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--purple-1) var(--white);
}

/* ── Cookie Banner ── */
#cookieBanner{
    display: none;
}
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 10%;
    z-index: 9997;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 20px 22px;
    max-width: 300px;
    width: auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner a {
    color: var(--purple-1);
    font-weight: 600;
    cursor: text;
}

.cookie-banner__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.fa-cookie-bite{
    color: var(--purple-1);
    font-size: 16px;
}

.cookie-banner__text {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner__links {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.cookie-banner__links i{
    display: none;
}

.cookie-banner button {
    background: var(--purple-1);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-banner__links span {
    color: #aaa;
}

.cookie-banner__btns {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.cookie-banner__btn {
    flex: 1;
    padding: 9px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, transform 0.14s;
    font-family: inherit;
}

.cookie-banner__btn--aceitar {
    background: var(--purple-1);
    border: none;
    color: #fff;
}

.cookie-banner__btn--aceitar:hover {
    background: var(--purple-2);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .cookie-banner{
        padding: 10px;
    }
    .cookie-banner__text{
        display: none;
    }
    .cookie-banner {
        left: 15%;
    }
    .cookie-banner__title span, .cookie-banner__title i{
        display: none;
    }
    .cookie-banner__links i{
        display: block;
    }
    .cookie-banner__header{
        width: auto;
    }
    .cookie-banner__links{
        gap: 3px;
    }
    .cookie-banner button{
        font-weight: 600;
    }
}

@media (max-width: 400px) {
    .cookie-banner {
        left: 12px;
        bottom: 12px;
        width: auto;
    }
}

/* ── Popup Cupom ── */
.popup-overlay {
    display: none;
    position: fixed;
    left: 50%;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.ativo {
    display: flex;
    opacity: 1;
}

.popup-modal {
    background: #fff;
    border-radius: 18px;
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: popupEntrada 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popupEntrada {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.25);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    z-index: 2;
    transition: background 0.2s;
}
.popup-close:hover { background: rgba(255,255,255,0.4); }

.popup-topo {
    background: var(--purple-1);
    padding: 30px 28px 22px;
    text-align: center;
}

.popup-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.popup-desconto {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-family: 'Acum-Pro-Wide-Black', sans-serif;
}

.popup-desconto-label {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-top: 4px;
}

.popup-corpo {
    padding: 24px 28px 28px;
}

.popup-titulo {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
    margin: 0 0 8px;
}

.popup-texto {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin: 0 0 18px;
}

.popup-timer-wrap {
    background: #F9F6FF;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.popup-timer-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.popup-timer-label i {
    color: var(--purple-1);
    font-size: 16px;
}

.popup-timer {
    font-size: 22px;
    font-weight: 900;
    color: var(--purple-1);
    font-variant-numeric: tabular-nums;
    transition: color 0.3s;
}

.popup-cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--purple-1);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s, transform 0.14s;
    box-sizing: border-box;
}
.popup-cta:hover {
    background: var(--purple-2);
    transform: scale(1.02);
}

.popup-aviso {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    margin: 12px 0 0;
    line-height: 1.4;
}

@media (max-width: 420px) {
    .popup-topo { padding: 24px 20px 18px; }
    .popup-corpo { padding: 20px 20px 24px; }
    .popup-desconto { font-size: 52px; }
    .nav_contato_telefone{    
        margin-top: 5px;
    }
}