:root {
    --wa: #4a56ff;
    --wa-soft: #6f79ff;
    --bg: #eef1ff;
    --panel: rgba(255, 255, 255, 0.86);
    --panel-solid: #ffffff;
    --line: #dfe3ff;
    --txt: #101326;
    --muted: #697096;
    --radius: 14px;
    --radius-lg: 24px;
    --sidebar-1: #4a56ff;
    --sidebar-2: #2028a8;
    --sidebar-text: #ffffff;
    --search-bg: #f4f6ff;
    --item-hover: #eef1ff;
    --scroll-thumb: #c7cdfa;
    --shadow: 0 30px 80px rgba(17, 21, 71, .18);
    --shadow-soft: 0 18px 50px rgba(17, 21, 71, .11);
    --nav-h: 76px;
    --gold: #e7c365;
}

[data-theme="dark"] {
    --wa: #7f88ff;
    --wa-soft: #a3a9ff;
    --bg: #000214;
    --panel: rgba(10, 13, 38, .78);
    --panel-solid: #111547;
    --line: #2a3185;
    --txt: #f4f6ff;
    --muted: #b8bee8;
    --sidebar-1: #111547;
    --sidebar-2: #000214;
    --sidebar-text: #ffffff;
    --search-bg: #10143a;
    --item-hover: #161b55;
    --scroll-thumb: #323a9c;
    --shadow: 0 30px 80px rgba(0, 0, 0, .32);
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, .22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    min-height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--txt);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background .6s ease, color .6s ease;
}

#bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .22;
    mix-blend-mode: soft-light;
}

.site-main,
.footer,
.navbar {
    position: relative;
    z-index: 2;
}

/* Floating Navbar — preservada do site atual, com o tema premium da referência */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 34px));
    background: linear-gradient(135deg, rgba(74, 86, 255, .95), rgba(32, 40, 168, .92));
    color: var(--sidebar-text);
    backdrop-filter: blur(14px);
    border-radius: 999px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: background .6s ease, border-color .6s ease, box-shadow .6s ease;
}

[data-theme="dark"] .navbar {
    background: linear-gradient(135deg, rgba(17, 21, 71, .96), rgba(0, 2, 20, .94));
    border-color: rgba(255, 255, 255, .12);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 98px;
    height: 46px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 10px 24px rgba(0, 0, 0, .13);
}

.logo img {
    width: auto;
    display: block;
    height: 33px;
    max-height: 33px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: rgba(255, 255, 255, .84);
    text-decoration: none;
    font-weight: 700;
    font-size: .94rem;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, .16);
    transform: translateY(-1px);
}

.nav-links a::after {
    display: none;
}

.nav-tools,
.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: .92rem;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    white-space: nowrap;
}

.signup-btn {
    background: #ffffff;
    color: #111547;
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .13);
}

.signup-btn:hover {
    transform: translateY(-2px);
    background: #eef1ff;
}

.ghost-btn {
    background: rgba(255, 255, 255, .08);
    color: var(--txt);
    border: 1px solid var(--line);
}

.hero-copy .ghost-btn {
    color: var(--txt);
}

.ghost-btn:hover {
    transform: translateY(-2px);
    background: var(--item-hover);
}

.mobile-auth-buttons {
    display: none;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    transition: transform .2s ease, background .4s ease, border-color .4s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
}

.theme-toggle .sun,
.theme-toggle .moon {
    position: absolute;
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity .3s ease, transform .3s ease;
}

.theme-toggle .sun {
    opacity: 1;
    transform: scale(1);
}

.theme-toggle .moon {
    opacity: 0;
    transform: scale(.6) rotate(-20deg);
}

[data-theme="dark"] .theme-toggle .sun {
    opacity: 0;
    transform: scale(.6) rotate(20deg);
}

[data-theme="dark"] .theme-toggle .moon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
}

/* Sections */
.section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 118px 22px 64px;
}

.section-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 28px;
    border: 1px solid var(--line);
    background: var(--panel);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: background .6s ease, border-color .6s ease, box-shadow .6s ease;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wa);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--wa);
    box-shadow: 0 0 0 5px rgba(74, 86, 255, .13);
}

.section h1 {
    font-size: clamp(2.4rem, 5vw, 5.7rem);
    font-weight: 950;
    line-height: .9;
    letter-spacing: -0.075em;
    color: var(--txt);
}

.txtbrilho {
    color: var(--wa);
    text-shadow: 0 12px 36px rgba(74, 86, 255, .18);
}

.section-info {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 580px;
    margin-top: 18px;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 26px;
    align-items: center;
}

.hero-copy {
    padding: 12px 8px 12px 4px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.hero-stats div,
.quick-card {
    padding: 16px;
    border-radius: var(--radius);
    background: var(--panel-solid);
    border: 1px solid var(--line);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
    transition: background .6s ease, border-color .6s ease;
}

.hero-stats strong,
.quick-card strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    color: var(--txt);
}

.hero-stats span,
.quick-card span {
    display: block;
    margin-top: 6px;
    font-size: .79rem;
    font-weight: 700;
    color: var(--muted);
}

.banner1 {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--panel-solid);
    box-shadow: var(--shadow-soft);
    transition: background .6s ease, border-color .6s ease, transform .25s ease;
}

.banner1:hover {
    transform: translateY(-2px);
}

.banner1 img,
.banner1 picture {
    display: block;
    width: 100%;
    height: auto;
}

.about-shell {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 26px;
    align-items: center;
}

.app-card {
    background: var(--panel-solid);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: background .6s ease, border-color .6s ease;
}

.logoSobre {
    display: block;
    width: min(420px, 100%);
    margin: 0 auto 18px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--wa);
    background: rgba(74, 86, 255, .11);
    font-size: .82rem;
    font-weight: 900;
}

.status-pill i {
    font-size: .48rem;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

/* Like button */
:root {
    --red: oklch(0.65 0.3 19.41);
    --particle-curve: cubic-bezier(0.2, 0.56, 0, 1);
}

.particleButton {
    position: relative;
    padding: 14px;
    background: transparent;
    color: var(--muted);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    margin-top: 18px;
    transition: color .25s ease, transform .25s ease, background .25s ease;
}

.particleButton:hover {
    color: var(--red);
    background: var(--item-hover);
    transform: translateY(-2px);
}

.particleButton.liked {
    color: var(--red);
}

.particleButton.liked path {
    fill: var(--red);
    stroke: var(--red);
}

.particleButton svg {
    position: relative;
    display: block;
    width: 2.8rem;
    height: 2.8rem;
}

.visually-hidden:not(:focus):not(:active) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.particle {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--wa);
    pointer-events: none;
    animation: fadeToTransparent var(--fade-duration) forwards, disperse 500ms forwards var(--particle-curve);
}

@keyframes fadeToTransparent {
    to { opacity: 0; }
}

@keyframes disperse {
    to {
        transform: translate(calc(cos(var(--angle)) * var(--distance)), calc(sin(var(--angle)) * var(--distance)));
    }
}

/* Stores */
.stores-shell {
    width: min(1240px, 100%);
}

.stores-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 20px;
}

.center-head {
    justify-content: center;
    text-align: center;
}

.center-head .section-info {
    margin-left: auto;
    margin-right: auto;
}

.stores-tools {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(190px, auto);
    gap: 12px;
    align-items: end;
    min-width: min(520px, 100%);
}

.search-field,
.filtro-lojas {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--search-bg);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    padding: 0 14px;
    transition: background .6s ease, border-color .6s ease, color .6s ease;
}

.search-field input,
.filtro-lojas select {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--txt);
    font: inherit;
    font-size: .93rem;
}

.search-field input::placeholder {
    color: var(--muted);
}

.filtro-lojas label {
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
}

.filtro-lojas select {
    cursor: pointer;
}

.lojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 14px;
}

.loja-container {
    background: var(--panel-solid);
    color: var(--txt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    overflow: hidden;
    max-height: 86px;
    transition: max-height .42s ease, box-shadow .25s ease, transform .25s ease, background .6s ease, border-color .6s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .035);
    position: relative;
}

.loja-container:hover,
.loja-container.expandido {
    max-height: 250px;
    background: var(--item-hover);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.loja-resumo {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 58px;
}

.loja-avatar,
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: .82rem;
    color: #111547;
    background: linear-gradient(135deg, #eef1ff, #a3a9ff);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .34);
    flex: 0 0 auto;
}

.loja-nome {
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.loja-container:hover .loja-nome,
.loja-container.expandido .loja-nome {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.loja-icones {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.icone {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    text-decoration: none;
    color: var(--wa);
    background: rgba(74, 86, 255, .11);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.icone:hover {
    transform: translateY(-2px);
    color: #fff;
    background: var(--wa);
}

.loja-icones i {
    font-size: 1rem;
}

.loja-detalhes {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s ease, transform .3s ease;
    padding: 8px 4px 4px 60px;
    color: var(--muted);
    font-size: .9rem;
}

.loja-container:hover .loja-detalhes,
.loja-container.expandido .loja-detalhes {
    opacity: 1;
    transform: translateY(0);
}

.loja-container.is-hidden {
    display: none;
}

/* Instagram / ofertas */
.instagram-embeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    justify-content: center;
    align-items: start;
}

.instagram-media {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    background: var(--panel-solid) !important;
    border: 1px solid var(--line) !important;
    box-shadow: var(--shadow-soft) !important;
}

/* Contact */
.contact-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-social {
    border: 1px solid var(--line);
    padding: 1rem 1.35rem;
    font-size: 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--txt);
    display: flex;
    align-items: center;
    gap: .58rem;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    background: var(--panel-solid);
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
}

.btn-social:hover {
    transform: translateY(-2px);
    background: var(--wa);
    color: #fff;
    border-color: var(--wa);
}

/* Footer */
.footer {
    background: transparent;
    padding: 0 22px 30px;
    display: flex;
    justify-content: center;
}

.footer-container {
    background: var(--panel);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 1180px;
    width: 100%;
    box-shadow: var(--shadow-soft);
    transition: background .6s ease, border-color .6s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--txt);
}

.footer-section p,
.footer-section a {
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    transition: color .3s ease;
    font-size: .9rem;
}

.footer-section a:hover {
    color: var(--wa);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .85rem;
    transition: border-color .6s ease;
}

.reveal-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--scroll-thumb);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

@media (max-width: 980px) {
    .hero-shell,
    .about-shell,
    .contact-shell {
        grid-template-columns: 1fr;
        display: grid;
    }

    .stores-head {
        align-items: stretch;
        flex-direction: column;
    }

    .stores-tools {
        grid-template-columns: 1fr;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 14px;
        padding: 10px 12px;
        width: calc(100% - 24px);
        border-radius: 24px;
    }

    .nav-container {
        gap: 10px;
    }

    .logo {
        min-width: 94px;
        height: 43px;
        padding: 7px 11px;
    }

    .logo img {
        height: 29px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(74, 86, 255, .98), rgba(32, 40, 168, .98));
        flex-direction: column;
        padding: 16px;
        border-radius: 22px;
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow);
    }

    [data-theme="dark"] .nav-links {
        background: linear-gradient(135deg, rgba(17, 21, 71, .98), rgba(0, 2, 20, .98));
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-auth-buttons {
        display: flex !important;
        width: 100%;
    }

    .mobile-auth-buttons .auth-btn {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .section {
        padding: 104px 12px 42px;
        min-height: auto;
    }

    .section-shell {
        padding: 18px;
        border-radius: 20px;
    }

    .section h1 {
        font-size: clamp(2.15rem, 13vw, 3.3rem);
    }

    .section-info {
        font-size: .98rem;
    }

    .hero-stats,
    .quick-grid {
        grid-template-columns: 1fr;
    }

    .lojas-grid {
        grid-template-columns: 1fr;
    }

    .loja-container {
        max-height: 96px;
    }

    .loja-resumo {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 10px;
    }

    .loja-icones {
        grid-column: 1 / -1;
        padding-left: 54px;
    }

    .loja-detalhes {
        padding-left: 54px;
    }

    .contact-shell {
        text-align: center;
    }

    .social-buttons,
    .hero-actions {
        justify-content: center;
    }

    .footer {
        padding: 0 12px 22px;
    }

    .footer-container {
        padding: 28px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .nav-tools {
        gap: 8px;
    }

    .theme-toggle,
    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .section-shell {
        padding: 14px;
    }

    .banner1 {
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* Navbar original preservada: apenas o botão light/dark foi adicionado */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background: #111547;
    opacity: 99%;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 30px;
    border: 1px solid #1b2066;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    transition: background .6s ease, border-color .6s ease, box-shadow .6s ease;
}

[data-theme="dark"] .navbar {
    background: #111547;
    border-color: #1b2066;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 40px;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.logo img {
    width: auto;
    display: block;
    height: 35px;
    max-height: 35px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
    border-radius: 0;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background: transparent;
    transform: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    display: block;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-tools,
.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.auth-btn {
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-height: auto;
    white-space: nowrap;
}

.signup-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    box-shadow: none;
}

.signup-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .10);
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    transition: transform .2s ease, background .4s ease, border-color .4s ease;
}

.theme-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .16);
}

.theme-toggle .sun,
.theme-toggle .moon {
    position: absolute;
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity .3s ease, transform .3s ease;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    width: auto;
    height: auto;
    border-radius: 0;
}


/* Ajustes solicitados */
.section-shell {
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
}

.banner1.vertical-banner {
    width: min(440px, 100%);
    aspect-ratio: 1080 / 1350;
    margin-left: auto;
    border-radius: 22px;
    overflow: hidden;
    background: var(--panel-solid);
}

.banner1.vertical-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-banner-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.hero-banner-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-banner-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity .55s ease, transform .55s ease, visibility .55s ease;
    background: var(--panel-solid);
}

.hero-banner-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.hero-banner-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 34px;
    display: grid;
    gap: 10px;
}

.hero-banner-copy span {
    display: grid;
    grid-template-columns: minmax(110px, auto) 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

[data-theme="light"] .hero-banner-copy span,
:root:not([data-theme="dark"]) .hero-banner-copy span {
    background: rgba(19, 26, 102, .36);
    border-color: rgba(164, 177, 255, .18);
}

.hero-banner-copy strong,
.hero-banner-copy em {
    font-style: normal;
    line-height: 1.2;
}

.hero-banner-copy strong {
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 900;
}

.hero-banner-copy em {
    color: rgba(255,255,255,.92);
    font-size: 1rem;
    text-align: right;
}

.hero-banner-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 4;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-banner-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255,255,255,.28);
    box-shadow: 0 0 0 1px rgba(255,255,255,.12);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, width .25s ease;
}

.hero-banner-dot.is-active {
    width: 24px;
    background: #ffffff;
}

.about-shell {
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
    gap: clamp(26px, 5vw, 64px);
}

.about-media {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
}

.about-logo-card {
    width: min(460px, 100%);
    min-height: 300px;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(74, 86, 255, .16), transparent 34%),
        var(--panel-solid);
}

.about-logo-card .logoSobre {
    max-height: none;
    width: min(350px, 85%);
    margin: 0 auto 18px;
}

.about-floating-card {
    position: absolute;
    right: 0;
    bottom: 8px;
    width: min(230px, 74%);
    padding: 18px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--wa), #2028a8);
    color: #ffffff;
    box-shadow: 0 22px 44px rgba(74, 86, 255, .28);
}

.about-floating-card strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.05em;
}

.about-floating-card span {
    display: block;
    margin-top: 6px;
    font-size: .86rem;
    opacity: .88;
}

.about-content h1 {
    max-width: 780px;
}

.about-text {
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 700px;
    margin-top: 14px;
}

.about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-pill {
    color: var(--wa);
    background: rgba(74, 86, 255, .11);
}

.section-kicker::before {
    box-shadow: 0 0 0 5px rgba(74, 86, 255, .13);
}

.txtbrilho {
    text-shadow: 0 12px 36px rgba(74, 86, 255, .22);
}

.icone {
    background: rgba(74, 86, 255, .11);
}

.footer-container {
    background: var(--panel-solid);
}

@media (max-width: 768px) {
    .navbar {
        top: 15px;
        padding: 10px 20px;
        width: calc(100% - 30px);
        max-width: 500px;
        border-radius: 50px;
    }

    .nav-container {
        justify-content: space-between;
        gap: 0;
    }

    .nav-center {
        gap: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.95);
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
        gap: 15px;
        border: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    [data-theme="dark"] .nav-links {
        background: rgba(26, 26, 26, 0.95);
    }

    .nav-links.active {
        display: flex;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-auth-buttons {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-auth-buttons .auth-btn {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .hero-shell,
    .about-shell {
        grid-template-columns: 1fr;
    }

    .banner1.vertical-banner {
        margin: 22px auto 0;
        width: min(420px, 92vw);
    }

    .hero-banner-copy {
        left: 14px;
        right: 14px;
        bottom: 30px;
    }

    .hero-banner-copy span {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px 14px;
    }

    .hero-banner-copy em {
        text-align: left;
        font-size: .92rem;
    }

    .about-media {
        min-height: 320px;
    }

    .about-floating-card {
        right: 12px;
        bottom: 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   Ajustes V3 — About, Contato e Mobile
   =============================== */

/* Coração removido da seção Sobre */
.particleButton {
    display: none !important;
}

.about-section {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 86px;
}

.about-shell {
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr) !important;
    align-items: center;
    gap: clamp(32px, 6vw, 78px) !important;
}

.about-media {
    min-height: 430px !important;
    align-items: center;
}

.about-logo-card {
    position: relative;
    width: min(500px, 100%) !important;
    min-height: 350px !important;
    padding: clamp(26px, 4vw, 42px) !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 18%, rgba(74, 86, 255, .22), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,.88), rgba(238,241,255,.72)) !important;
    border: 1px solid rgba(74, 86, 255, .22) !important;
}

[data-theme="dark"] .about-logo-card {
    background:
        radial-gradient(circle at 20% 18%, rgba(127, 136, 255, .30), transparent 36%),
        linear-gradient(135deg, rgba(17,21,71,.88), rgba(9,12,42,.74)) !important;
    border-color: rgba(127, 136, 255, .28) !important;
}

.about-logo-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -80px auto;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(74, 86, 255, .16);
    filter: blur(10px);
    pointer-events: none;
}

.about-card-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--wa);
    background: rgba(74, 86, 255, .10);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.about-card-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--wa);
    box-shadow: 0 0 0 5px rgba(74, 86, 255, .13);
}

.about-logo-card .logoSobre {
    position: relative;
    z-index: 1;
    width: min(360px, 92%) !important;
    max-height: none !important;
    margin: 0 auto !important;
    filter: drop-shadow(0 22px 36px rgba(0,0,0,.18));
}

.about-card-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    width: 100%;
}

.about-card-list span {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.58);
    border: 1px solid rgba(74, 86, 255, .13);
    color: var(--muted);
    font-size: .88rem;
}

[data-theme="dark"] .about-card-list span {
    background: rgba(255,255,255,.06);
    border-color: rgba(127, 136, 255, .20);
}

.about-card-list strong {
    color: var(--txt);
    white-space: nowrap;
}

.about-floating-card {
    right: -8px !important;
    bottom: 28px !important;
    width: min(250px, 76%) !important;
    padding: 22px !important;
    border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(135deg, #7f88ff, #4a56ff 55%, #2028a8) !important;
    box-shadow: 0 26px 58px rgba(32, 40, 168, .35) !important;
}

.about-content h1 {
    max-width: 790px;
    font-size: clamp(2.65rem, 5.5vw, 5.6rem);
}

.about-text {
    max-width: 760px !important;
    line-height: 1.8;
}

.about-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.about-pill-list span {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--wa);
    background: rgba(74, 86, 255, .11);
    border: 1px solid rgba(74, 86, 255, .16);
    font-size: .82rem;
    font-weight: 900;
}

.about-highlights.quick-grid {
    margin-top: 24px;
}

.about-highlights .quick-card {
    min-height: 104px;
    background: rgba(255,255,255,.54);
    border-color: rgba(74, 86, 255, .20);
}

[data-theme="dark"] .about-highlights .quick-card {
    background: rgba(17,21,71,.54);
    border-color: rgba(127, 136, 255, .24);
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.about-actions .signup-btn {
    background: var(--wa);
    color: #fff;
    border: 1px solid var(--wa);
    box-shadow: 0 16px 34px rgba(74,86,255,.22);
}

.about-actions .signup-btn:hover {
    background: #2028a8;
}

/* Contato centralizado */
.contact-section {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 96px;
}

.contact-shell {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 24px !important;
}

.contact-shell .section-kicker {
    justify-content: center;
}

.contact-shell .section-info {
    margin-left: auto;
    margin-right: auto;
    max-width: 620px;
}

.social-buttons {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap !important;
}

.btn-social {
    min-width: 150px;
    justify-content: center;
}

/* Navbar mobile igual à atual, apenas com botão de tema adicionado */
@media (max-width: 768px) {
    .navbar {
        top: 15px !important;
        width: calc(100% - 30px) !important;
        max-width: 500px !important;
        padding: 8px 14px !important;
        border-radius: 50px !important;
    }

    .nav-container {
        display: grid !important;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        justify-content: initial !important;
        gap: 10px !important;
        width: 100%;
    }

    .logo {
        grid-column: 1;
        min-width: auto !important;
        height: auto !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .logo img {
        height: 30px !important;
        max-height: 30px !important;
    }

    .nav-center {
        grid-column: 2;
        min-width: 0 !important;
        display: block !important;
    }

    .nav-tools {
        grid-column: 3;
        display: flex !important;
        align-items: center;
        gap: 8px !important;
    }

    .auth-buttons {
        display: none !important;
    }

    .theme-toggle,
    .menu-toggle {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px;
        min-height: 36px;
    }

    .theme-toggle .sun,
    .theme-toggle .moon {
        width: 16px !important;
        height: 16px !important;
    }

    .menu-toggle {
        grid-column: 4;
        display: grid !important;
        place-items: center;
        font-size: 1.35rem !important;
        line-height: 1;
        background: none !important;
        border: none !important;
        color: #ffffff !important;
        padding: 0 !important;
        cursor: pointer;
    }

    .nav-links {
        display: none !important;
        position: absolute !important;
        top: calc(100% + 10px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(26, 26, 26, 0.96) !important;
        backdrop-filter: blur(10px);
        flex-direction: column !important;
        padding: 20px !important;
        border-radius: 15px !important;
        margin-top: 0 !important;
        gap: 15px !important;
        border: none !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        font-size: .96rem;
    }

    .mobile-auth-buttons {
        display: flex !important;
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-auth-buttons .auth-btn {
        width: 100%;
        text-align: center;
    }

    .section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .about-section {
        padding-top: 116px;
        padding-bottom: 58px;
    }

    .about-shell {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .about-media {
        min-height: auto !important;
        display: flex !important;
        flex-direction: column;
        gap: 14px;
    }

    .about-logo-card {
        width: 100% !important;
        min-height: auto !important;
        padding: 24px 18px !important;
    }

    .about-logo-card .logoSobre {
        width: min(300px, 88%) !important;
    }

    .about-card-list span {
        display: grid;
        gap: 2px;
        text-align: left;
    }

    .about-floating-card {
        position: static !important;
        width: 100% !important;
        max-width: none !important;
    }

    .about-content {
        text-align: left;
    }

    .about-content h1 {
        font-size: clamp(2.2rem, 12vw, 3.4rem) !important;
    }

    .about-highlights {
        grid-template-columns: 1fr !important;
    }

    .about-actions {
        justify-content: flex-start;
    }

    .contact-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .social-buttons {
        gap: 10px;
    }

    .btn-social {
        min-width: 136px;
        padding: .92rem 1rem;
    }
}

@media (max-width: 380px) {
    .navbar {
        width: calc(100% - 18px) !important;
        padding: 8px 10px !important;
    }

    .nav-container {
        gap: 7px !important;
    }

    .logo img {
        height: 27px !important;
        max-height: 27px !important;
    }

    .theme-toggle,
    .menu-toggle {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px;
        min-height: 34px;
    }

    .btn-social {
        min-width: 126px;
        padding: .85rem .78rem;
        font-size: .92rem;
    }
}


/* ===============================
   Ajustes V4 — Mobile, lojas e footer
   =============================== */

/* Remove o card flutuante de anos da seção Sobre */
.about-floating-card {
    display: none !important;
}

.about-media {
    min-height: 360px !important;
}

.about-logo-card {
    margin: 0 auto !important;
}

/* Footer sem página de Política e Privacidade */
.footer-content {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Light theme: reforço visual para luzes azul claro */
:root:not([data-theme="dark"]) body::after {
    background-image: radial-gradient(rgba(151, 160, 255, .18) 1px, transparent 1px);
}

/* Navbar mobile igual ao site atual, apenas com botão de tema adicionado */
@media (max-width: 768px) {
    .navbar {
        top: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 30px) !important;
        max-width: 500px !important;
        padding: 10px 20px !important;
        border-radius: 50px !important;
        background: #111547 !important;
        border: 1px solid #1b2066 !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, .3) !important;
    }

    [data-theme="dark"] .navbar {
        background: #111547 !important;
        border-color: #1b2066 !important;
    }

    .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0 !important;
        width: 100% !important;
    }

    .logo {
        min-width: auto !important;
        height: auto !important;
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .logo img {
        height: 35px !important;
        max-height: 35px !important;
        width: auto !important;
    }

    .nav-center {
        display: flex !important;
        align-items: center !important;
        gap: 20px !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .nav-tools {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin-left: auto !important;
        margin-right: 10px !important;
    }

    .auth-buttons {
        display: none !important;
    }

    .theme-toggle {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,.12) !important;
        border: 1px solid rgba(255,255,255,.25) !important;
    }

    .theme-toggle .sun,
    .theme-toggle .moon {
        width: 16px !important;
        height: 16px !important;
    }

    .menu-toggle {
        display: block !important;
        width: auto !important;
        height: auto !important;
        min-width: 0 !important;
        min-height: 0 !important;
        background: none !important;
        border: none !important;
        color: #ffffff !important;
        font-size: 1.5rem !important;
        line-height: 1 !important;
        padding: 0 !important;
        cursor: pointer !important;
        border-radius: 0 !important;
    }

    .nav-links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: auto !important;
        background: rgba(26, 26, 26, 0.95) !important;
        flex-direction: column !important;
        padding: 20px !important;
        border-radius: 15px !important;
        margin-top: 10px !important;
        gap: 15px !important;
        border: 0 !important;
        box-shadow: 0 18px 50px rgba(0,0,0,.25) !important;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        width: auto !important;
        padding: 0 !important;
        text-align: center !important;
        justify-content: center !important;
        color: #e0e0e0 !important;
        font-weight: 500 !important;
        font-size: .95rem !important;
        background: transparent !important;
        border-radius: 0 !important;
        transform: none !important;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #ffffff !important;
        background: transparent !important;
    }

    .nav-links a::after {
        display: block !important;
        content: '' !important;
        position: absolute !important;
        width: 0 !important;
        height: 2px !important;
        bottom: -5px !important;
        left: 50% !important;
        background: #ffffff !important;
        transition: all .3s ease !important;
        transform: translateX(-50%) !important;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100% !important;
    }

    .mobile-auth-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .mobile-auth-buttons .auth-btn {
        width: 100% !important;
        text-align: center !important;
    }

    .mobile-auth-buttons .auth-btn.signup-btn {
        background: #ffffff !important;
        color: #000000 !important;
        min-height: 42px !important;
        padding: 8px 20px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    /* Cards de lojas sem corte no mobile */
    .lojas-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .loja-container {
        max-height: none !important;
        min-height: 0 !important;
        overflow: visible !important;
        padding: 12px !important;
    }

    .loja-container:hover,
    .loja-container.expandido {
        max-height: none !important;
    }

    .loja-resumo {
        grid-template-columns: 48px minmax(0, 1fr) !important;
        grid-template-rows: auto auto !important;
        align-items: center !important;
        gap: 10px 12px !important;
        min-height: 58px !important;
    }

    .loja-nome {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
        line-height: 1.25 !important;
    }

    .loja-icones {
        grid-column: 2 !important;
        grid-row: 2 !important;
        justify-content: flex-start !important;
        align-self: start !important;
        padding-top: 2px !important;
    }

    .loja-detalhes {
        display: none !important;
        padding: 10px 4px 2px 60px !important;
    }

    .loja-container.expandido .loja-detalhes {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 15px !important;
    }

    .logo img {
        height: 30px !important;
        max-height: 30px !important;
    }

    .theme-toggle {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}

/* ===============================
   Ajustes V5 — seletor de cidade e lojas mobile
   =============================== */
.city-filter {
    position: relative;
    min-height: 54px;
    padding: 6px 8px 6px 14px !important;
    overflow: visible;
    border-radius: 999px !important;
    background:
        linear-gradient(var(--search-bg), var(--search-bg)) padding-box,
        linear-gradient(135deg, rgba(74,86,255,.72), rgba(127,136,255,.22)) border-box !important;
    border: 1px solid transparent !important;
    box-shadow: 0 14px 30px rgba(74, 86, 255, .08);
}

.city-filter label {
    flex: 0 0 auto;
    color: var(--wa) !important;
    white-space: nowrap;
}

.custom-city-select {
    position: relative;
    flex: 1;
    min-width: 170px;
    z-index: 30;
}

.custom-city-trigger {
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    padding: 0 12px 0 16px;
    background: rgba(74, 86, 255, .10);
    color: var(--txt);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.custom-city-trigger:hover,
.custom-city-select.is-open .custom-city-trigger {
    background: rgba(74, 86, 255, .16);
    box-shadow: inset 0 0 0 1px rgba(74, 86, 255, .20);
}

.custom-city-trigger i {
    color: var(--wa);
    font-size: .8rem;
    transition: transform .25s ease;
}

.custom-city-select.is-open .custom-city-trigger i {
    transform: rotate(180deg);
}

.custom-city-options {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 44px));
    max-height: 292px;
    overflow: auto;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(74, 86, 255, .20);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(-6px) scale(.98);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

[data-theme="dark"] .custom-city-options {
    background: rgba(17, 21, 71, .96);
    border-color: rgba(127, 136, 255, .26);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

.custom-city-select.is-open .custom-city-options {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.custom-city-options button {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 13px;
    padding: 0 12px;
    background: transparent;
    color: var(--txt);
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.custom-city-options button:hover,
.custom-city-options button.is-selected {
    background: rgba(74, 86, 255, .14);
    color: var(--wa);
    transform: translateX(2px);
}

.custom-city-options button.is-selected::after {
    content: "✓";
    float: right;
    font-weight: 900;
}

.js-ready .native-city-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    clip-path: inset(50%) !important;
}

@media (max-width: 768px) {
    .stores-tools {
        gap: 10px !important;
    }

    .city-filter {
        min-height: auto !important;
        border-radius: 22px !important;
        padding: 10px 12px !important;
        flex-wrap: wrap;
        align-items: stretch !important;
        gap: 8px !important;
    }

    .city-filter label {
        width: 100%;
        font-size: .74rem !important;
        letter-spacing: .14em !important;
    }

    .custom-city-select {
        width: 100%;
        min-width: 0;
    }

    .custom-city-trigger {
        border-radius: 15px;
        min-height: 44px;
    }

    .custom-city-options {
        left: 0;
        right: 0;
        width: 100%;
        max-height: 240px;
    }

    /* Ícones no mesmo alinhamento do nome da loja no mobile */
    .loja-container {
        padding: 12px !important;
    }

    .loja-resumo {
        grid-template-columns: 48px minmax(0, 1fr) auto !important;
        grid-template-rows: auto !important;
        gap: 10px !important;
        min-height: 52px !important;
    }

    .loja-nome {
        grid-column: 2 !important;
        grid-row: 1 !important;
        align-self: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        padding-right: 2px;
    }

    .loja-icones {
        grid-column: 3 !important;
        grid-row: 1 !important;
        padding: 0 !important;
        justify-content: flex-end !important;
        align-self: center !important;
        gap: 5px !important;
    }

    .icone {
        width: 32px !important;
        height: 32px !important;
        border-radius: 11px !important;
    }

    .icone i {
        font-size: .92rem !important;
    }

    .loja-detalhes {
        padding-left: 58px !important;
        padding-top: 10px !important;
    }

    /* Navbar mobile original com botão de tema, sem deformar o botão Lojas */
    .mobile-auth-buttons .auth-btn.signup-btn {
        border-radius: 25px !important;
        width: 100% !important;
        min-height: auto !important;
        padding: 8px 20px !important;
    }
}

@media (max-width: 430px) {
    .loja-resumo {
        grid-template-columns: 44px minmax(0, 1fr) auto !important;
        gap: 9px !important;
    }

    .loja-avatar {
        width: 42px !important;
        height: 42px !important;
        font-size: .76rem !important;
    }

    .loja-icones {
        gap: 4px !important;
    }

    .icone {
        width: 30px !important;
        height: 30px !important;
    }

    .loja-detalhes {
        padding-left: 53px !important;
    }
}

@media (max-width: 370px) {
    .loja-resumo {
        grid-template-columns: 42px minmax(0, 1fr) auto !important;
    }

    .loja-nome {
        font-size: .9rem !important;
    }

    .icone {
        width: 28px !important;
        height: 28px !important;
    }
}


/* ===============================
   Ajustes V6 — seletor responsivo, lojas mobile e footer legal
   =============================== */
.footer-bottom a {
    color: inherit;
    text-decoration: none;
    font-weight: 800;
    transition: color .25s ease;
}

.footer-bottom a:hover {
    color: var(--wa);
}

.footer-content {
    grid-template-columns: repeat(3, minmax(180px, 1fr)) !important;
    max-width: 920px !important;
}

/* Seletor de cidade/região com layout estável em qualquer largura */
.stores-tools {
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 420px) !important;
    align-items: stretch !important;
}

.city-filter {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 56px !important;
    display: grid !important;
    grid-template-columns: max-content minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 7px 8px 7px 16px !important;
    overflow: visible !important;
    border-radius: 999px !important;
}

.city-filter label {
    width: auto !important;
    min-width: 0 !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.custom-city-select {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

.custom-city-trigger {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
}

.custom-city-trigger span {
    display: block !important;
    min-width: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    text-align: left !important;
}

.custom-city-options {
    z-index: 3000 !important;
}

@media (max-width: 980px) {
    .stores-tools {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .city-filter {
        grid-template-columns: 1fr !important;
        border-radius: 24px !important;
        padding: 12px !important;
        gap: 10px !important;
    }

    .city-filter label {
        width: 100% !important;
        display: block !important;
    }

    .custom-city-trigger {
        border-radius: 16px !important;
        min-height: 46px !important;
    }

    .custom-city-options {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
}

/* Mobile: ícones na frente do nome sem cortar o card */
@media (max-width: 768px) {
    .lojas-grid {
        grid-template-columns: 1fr !important;
    }

    .loja-container {
        overflow: hidden !important;
        max-height: none !important;
        padding: 12px !important;
    }

    .loja-resumo {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        min-height: 52px !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .loja-avatar {
        width: 42px !important;
        height: 42px !important;
        flex: 0 0 42px !important;
    }

    .loja-nome {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        grid-column: auto !important;
        grid-row: auto !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        padding-right: 0 !important;
    }

    .loja-icones {
        grid-column: auto !important;
        grid-row: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 0 0 auto !important;
        gap: 5px !important;
        padding: 0 !important;
        min-width: max-content !important;
    }

    .loja-icones .icone {
        width: 31px !important;
        height: 31px !important;
        border-radius: 11px !important;
    }

    .loja-detalhes {
        padding-left: 54px !important;
    }
}

@media (max-width: 430px) {
    .loja-resumo {
        gap: 8px !important;
    }

    .loja-avatar {
        width: 38px !important;
        height: 38px !important;
        flex-basis: 38px !important;
        font-size: .72rem !important;
    }

    .loja-nome {
        font-size: .9rem !important;
    }

    .loja-icones {
        gap: 4px !important;
    }

    .loja-icones .icone {
        width: 28px !important;
        height: 28px !important;
        border-radius: 10px !important;
    }

    .loja-icones i {
        font-size: .82rem !important;
    }

    .loja-detalhes {
        padding-left: 46px !important;
    }
}

@media (max-width: 360px) {
    .loja-avatar {
        width: 36px !important;
        height: 36px !important;
        flex-basis: 36px !important;
    }

    .loja-icones .icone {
        width: 26px !important;
        height: 26px !important;
    }

    .loja-nome {
        font-size: .84rem !important;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }
}


/* Página Política e Privacidade */
.privacy-section {
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 80px;
}

.privacy-shell {
    max-width: 920px;
    margin: 0 auto;
    text-align: left;
}

.privacy-shell h1 {
    text-align: left;
    max-width: 760px;
}

.privacy-shell .section-info {
    text-align: left;
    margin-left: 0;
    max-width: 760px;
}

.privacy-content {
    margin: 34px 0;
    display: grid;
    gap: 18px;
    color: var(--muted);
}

.privacy-content h2 {
    color: var(--txt);
    font-size: 1.2rem;
    margin: 0 0 4px;
}

.privacy-content p {
    margin: 0;
    line-height: 1.75;
}

.privacy-content a {
    color: var(--wa);
    font-weight: 800;
}


@media (max-width: 520px) {
    .hero-banner-copy {
        bottom: 28px;
    }

    .hero-banner-copy strong {
        font-size: 1rem;
    }

    .hero-banner-copy em {
        font-size: .88rem;
    }

    .hero-banner-dots {
        bottom: 10px;
    }
}


/* Ajustes V8 — Slider suave e seção Sobre */
.hero-banner-track {
    overflow: hidden;
}

.hero-banner-slide {
    visibility: visible !important;
    opacity: 0;
    transform: scale(1.018);
    filter: blur(1.5px);
    z-index: 1;
    transition:
        opacity 1.05s cubic-bezier(.22, 1, .36, 1),
        transform 1.05s cubic-bezier(.22, 1, .36, 1),
        filter 1.05s cubic-bezier(.22, 1, .36, 1) !important;
}

.hero-banner-slide.is-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 2;
}

.about-card-list span em {
    color: var(--muted);
    font-style: normal;
    text-align: right;
}

.about-highlights {
    display: none !important;
}

.footer-admin-link {
    opacity: .72;
}

/* V25 - active navbar fix */
.nav-links a.is-hidden-link { display: none !important; }


/* V35 — correções mobile e lojas */
html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

@media (max-width: 768px) {
  .section,
  .container,
  .hero,
  .hero-content,
  .lojas-grid,
  .lojas-wrapper,
  .contact-content,
  .about-content {
    max-width: 100%;
    overflow-x: clip;
  }

  .loja-container {
    width: 100%;
    max-width: 100%;
    max-height: 92px;
  }

  .loja-container.expandido {
    max-height: 420px;
  }

  .loja-resumo {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
  }

  .loja-container.expandido .loja-resumo {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .loja-nome {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .loja-container.expandido .loja-nome {
    display: block;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .loja-icones {
    grid-column: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .loja-info {
    padding-left: 56px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .loja-info {
    padding-left: 0;
  }

  .loja-container.expandido .loja-resumo {
    grid-template-columns: 40px minmax(0, 1fr);
  }
}


/* V36 — correção definitiva do banner mobile e navbar responsiva do index */
@media (max-width: 1120px) {
  .navbar {
    top: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 28px) !important;
    max-width: 640px !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
  }

  .nav-container {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .nav-center {
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
  }

  .logo {
    min-width: 0 !important;
    flex: 0 1 auto !important;
  }

  .logo img {
    height: 32px !important;
    max-height: 32px !important;
  }

  .nav-tools {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  .auth-buttons {
    display: none !important;
  }

  .theme-toggle {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    border-radius: 999px !important;
  }

  .menu-toggle {
    display: grid !important;
    place-items: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    background: rgba(255,255,255,.10) !important;
    color: #ffffff !important;
    font-size: 1.35rem !important;
    line-height: 1 !important;
  }

  .nav-links {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 14px !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, rgba(17, 21, 71, .98), rgba(0, 2, 20, .98)) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    box-shadow: var(--shadow) !important;
    backdrop-filter: blur(14px) !important;
    z-index: 1001 !important;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    width: 100% !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    text-align: center !important;
    background: transparent !important;
  }

  .nav-links a.active,
  .nav-links a:hover {
    background: rgba(255,255,255,.12) !important;
  }

  .mobile-auth-buttons {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
  }

  .hero-section .section-shell.hero-shell {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: grid !important;
    justify-items: center !important;
    overflow: visible !important;
  }

  .hero-section .hero-copy {
    width: min(100%, calc(100vw - 24px)) !important;
    justify-self: center !important;
  }

  .hero-section .banner1.vertical-banner {
    width: min(420px, calc(100vw - 48px)) !important;
    max-width: calc(100vw - 48px) !important;
    margin: 22px auto 0 !important;
    justify-self: center !important;
    align-self: center !important;
  }
}

@media (max-width: 420px) {
  .navbar {
    width: calc(100% - 20px) !important;
    padding: 9px 12px !important;
  }

  .logo img {
    height: 28px !important;
    max-height: 28px !important;
  }

  .theme-toggle,
  .menu-toggle {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }

  .hero-section .banner1.vertical-banner {
    width: min(380px, calc(100vw - 36px)) !important;
    max-width: calc(100vw - 36px) !important;
  }
}


/* V39 — logo à esquerda na navbar mobile do index */
@media (max-width: 1120px) {
  .nav-center {
    justify-content: flex-start !important;
    justify-self: start !important;
    width: 100% !important;
  }

  .logo {
    margin-right: auto !important;
    justify-self: start !important;
  }

  .nav-container {
    justify-items: stretch !important;
  }
}


/* V46 — trava geral contra movimento horizontal no site público */
html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

.section,
.section-shell,
.container,
.navbar,
.nav-container,
.hero-section,
.hero-shell,
.lojas-grid,
.loja-container,
.contact-content,
.about-content,
.footer-content {
  min-width: 0 !important;
  max-width: 100% !important;
}

/* V49 — redes sociais dinâmicas */
.social-buttons { flex-wrap: wrap; }
.social-buttons .btn-social { min-width: 140px; justify-content: center; }

/* V10 — carregamento dinâmico, telefones e redes sociais */
.site-loading-card {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid rgba(151,160,255,.18);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255,255,255,.06);
  text-align: center;
}

.store-phone-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-weight: 700;
  color: var(--text-color, inherit);
}

.store-phone-line i {
  color: #25D366;
  font-size: 1rem;
}

.loja-detalhes .store-phone-line span {
  letter-spacing: .01em;
}

.social-buttons .btn-social.instagram,
.social-buttons .btn-social.facebook,
.social-buttons .btn-social.whatsapp,
.social-buttons .btn-social.tiktok,
.social-buttons .btn-social.youtube,
.social-buttons .btn-social.linkedin,
.social-buttons .btn-social.x-twitter,
.social-buttons .btn-social.telegram,
.social-buttons .btn-social.site {
  min-width: 140px;
  justify-content: center;
}

.social-buttons .btn-social.whatsapp i { color: #25D366; }
.social-buttons .btn-social.youtube i { color: #ff0033; }
.social-buttons .btn-social.linkedin i { color: #0A66C2; }
.social-buttons .btn-social.telegram i { color: #229ED9; }

/* V14 — contato responsivo sem corte */
@media (max-width: 720px) {
  #contact,
  .contact-section,
  .contact-section .container,
  .contact-section .section-shell {
    overflow-x: hidden !important;
  }

  .social-buttons {
    width: 100% !important;
    max-width: 360px !important;
    margin-inline: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    justify-items: stretch !important;
    overflow: visible !important;
  }

  .social-buttons .btn-social,
  .social-buttons .btn-social.instagram,
  .social-buttons .btn-social.facebook,
  .social-buttons .btn-social.whatsapp,
  .social-buttons .btn-social.tiktok,
  .social-buttons .btn-social.youtube,
  .social-buttons .btn-social.linkedin,
  .social-buttons .btn-social.x-twitter,
  .social-buttons .btn-social.telegram,
  .social-buttons .btn-social.site {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }
}
