@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-main: #05020c;
    --bg-secondary: #0b0714;
    --bg-card: rgba(18, 11, 30, 0.82);
    --border-color: rgba(236, 72, 153, 0.18);
    --color-pink: #ec4899;
    --color-purple: #8b5cf6;
    --color-orange: #f97316;
    --color-green: #82e09b;
    --color-whatsapp: #25d366;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-sans: 'Outfit', sans-serif;
    --color-bg-secondary: #121117;
    --color-text-muted: #9f9ea6;
    --font-titles: 'Outfit', sans-serif;
    --gta-gradient: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    --cta-gradient: linear-gradient(135deg, #ffa851 0%, #ff6b00 100%);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    background-image:
        radial-gradient(circle at 15% 12%, rgba(236, 72, 153, 0.12), transparent 42%),
        radial-gradient(circle at 85% 18%, rgba(139, 92, 246, 0.12), transparent 44%),
        radial-gradient(circle at 80% 88%, rgba(249, 115, 22, 0.10), transparent 40%);
    color: var(--text-main);
    font-family: var(--font-sans);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

.hero-subtitle,
.hero-lead,
.section-header p,
.about-copy p,
.operation-text,
.brands-text,
.final-cta-inner p,
.faq-grid p,
.wholesale-lead,
.wholesale-note {
    text-wrap: balance;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 9, 13, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.navbar-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 14px 24px;
}

.logo-link {
    align-items: center;
    display: flex;
    gap: 12px;
}

.nav-logo {
    height: 58px;
    width: auto;
}

.logo-text {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.nav-links {
    align-items: center;
    display: flex;
    gap: 26px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-orange);
}

.nav-gta-link {
    background: var(--gta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-nav-contact {
    background-color: rgba(130, 224, 155, 0.04);
    border: 1px solid var(--color-green);
    border-radius: 8px;
    color: var(--color-green) !important;
    padding: 9px 18px;
}

.btn-nav-contact:hover {
    background-color: var(--color-green);
    color: #060508 !important;
}

.mobile-menu-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    background-color: #fff;
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: var(--transition-smooth);
    width: 24px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

main {
    padding-top: 92px;
}

/* Hero */
.pv-hero {
    overflow: hidden;
    padding: 92px 24px 72px;
    position: relative;
}

.hero-bg-glow {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent 62%);
    height: 560px;
    position: absolute;
    right: -180px;
    top: 40px;
    width: 560px;
    pointer-events: none;
}

.pv-hero-container {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.gta-badge,
.section-eyebrow {
    background: var(--gta-gradient);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    padding: 8px 14px;
    text-transform: uppercase;
}

.pv-hero-content h1 {
    font-size: clamp(2.4rem, 6.4vw, 4.6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.05;
    margin: 18px 0 20px;
    max-width: 720px;
    padding-right: 8px;
    text-transform: uppercase;
}

.pv-hero-content h1 .accent {
    background: var(--cta-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.05em;
}

.pv-hero-content p,
.section-header p,
.faq-grid p,
.summary-content p {
    color: var(--text-muted);
    font-size: 1.06rem;
    line-height: 1.7;
}

.hero-subtitle {
    color: var(--text-main);
    font-size: clamp(1.12rem, 2.8vw, 1.28rem);
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 16px;
    max-width: 560px;
}

.hero-lead {
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn-primary,
.btn-secondary {
    align-items: center;
    border-radius: 12px;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    letter-spacing: 0.03em;
    min-height: 50px;
    padding: 14px 24px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--cta-gradient);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.28);
    color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text-main);
}

/* Hero art */
.hero-art-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
}

.hero-art-img {
    aspect-ratio: 16 / 11;
    object-fit: cover;
    width: 100%;
}

.hero-art-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 2, 12, 0) 45%, rgba(5, 2, 12, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.hero-art-logo {
    width: 120px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.55));
}

.hero-art-platforms {
    display: block;
    max-width: 175px;
    width: 100%;
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.12));
}

/* Countdown */
.countdown {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    min-width: 78px;
    padding: 14px 10px;
    text-align: center;
}

.countdown-number {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
    background: var(--cta-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-label {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-top: 6px;
    text-transform: uppercase;
}

/* Generic section shell */
.section {
    margin: 0 auto;
    max-width: 1200px;
    padding: 72px 24px;
}

.section-header {
    margin: 0 auto 48px;
    max-width: 820px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 18px 0;
    text-transform: uppercase;
}

/* About / O Jogo */
.about-grid {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: 1.05fr 0.95fr;
}

.about-copy h2 {
    font-size: clamp(1.9rem, 4.4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 18px 0 20px;
    text-transform: uppercase;
}

.about-copy p {
    color: var(--text-muted);
    font-size: 1.06rem;
    line-height: 1.72;
    margin-bottom: 16px;
}

.about-copy strong {
    color: var(--text-main);
}

.spec-list {
    display: grid;
    gap: 14px;
}

.spec-item {
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    gap: 14px;
    padding: 14px 18px;
}

.spec-ico {
    align-items: center;
    background: rgba(130, 224, 155, 0.08);
    border: 1px solid rgba(130, 224, 155, 0.2);
    border-radius: 12px;
    color: var(--color-green);
    display: inline-flex;
    flex-shrink: 0;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.spec-ico svg {
    height: 22px;
    width: 22px;
}

.spec-item .spec-text {
    font-size: 0.98rem;
}

.spec-item .spec-text strong {
    color: #fff;
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.spec-item .spec-text span {
    color: var(--text-muted);
}

.game-schedule {
    align-self: start;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    padding: 28px 24px;
}

.schedule-kicker {
    color: var(--color-orange);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.schedule-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 22px;
    text-transform: uppercase;
}

/* Feature grid */
.feature-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 26px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-6px);
}

.feature-ico {
    align-items: center;
    background: rgba(130, 224, 155, 0.08);
    border: 1px solid rgba(130, 224, 155, 0.2);
    border-radius: 12px;
    color: var(--color-green);
    display: flex;
    height: 54px;
    justify-content: center;
    margin-bottom: 18px;
    width: 54px;
}

.feature-ico svg {
    height: 26px;
    width: 26px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Editions / Reserva */
.editions-section {
    background-color: var(--color-bg-secondary);
    padding: 80px 24px;
}

.editions-inner {
    margin: 0 auto;
    max-width: 1200px;
}

.edition-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 12px;
}

.edition-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    position: relative;
}

.edition-card.featured {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 24px 70px rgba(249, 115, 22, 0.12);
}

.edition-flag {
    background: var(--cta-gradient);
    border-radius: 999px;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    position: absolute;
    right: 24px;
    top: -14px;
    text-transform: uppercase;
}

.edition-kicker {
    color: var(--color-orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.edition-card h3 {
    font-size: 1.7rem;
    margin: 8px 0 6px;
}

.edition-price {
    color: #fff;
    font-size: 2.35rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 10px 0 14px;
}

.edition-price-currency {
    font-size: 1.15rem;
    font-weight: 800;
    margin-right: 2px;
    opacity: 0.92;
    vertical-align: super;
}

.edition-price--pix {
    color: var(--color-green);
}

.edition-price-card {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
    margin: -6px 0 14px;
}

.pix-price-badge {
    background: rgba(37, 211, 102, 0.16);
    border: 1px solid rgba(37, 211, 102, 0.45);
    border-radius: 999px;
    color: var(--color-green);
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-left: 8px;
    padding: 4px 10px;
    text-transform: uppercase;
    vertical-align: middle;
}

.pix-promo-banner {
    align-items: center;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.14) 0%, rgba(37, 211, 102, 0.05) 100%);
    border: 1px solid rgba(37, 211, 102, 0.42);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.1);
    display: flex;
    gap: 16px;
    margin: 0 auto 28px;
    max-width: 920px;
    padding: 18px 22px;
}

.pix-promo-badge {
    background: var(--color-green);
    border-radius: 12px;
    color: #052e16;
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.1;
    padding: 10px 12px;
    text-align: center;
    text-transform: uppercase;
}

.pix-promo-content strong {
    color: #fff;
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.pix-promo-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

.pix-promo-content p strong {
    color: var(--color-green);
    display: inline;
    font-size: inherit;
    margin: 0;
}

.checkout-notice-banner {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 14px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.55;
    margin: 0 auto 24px;
    max-width: 920px;
    padding: 16px 20px;
    text-align: center;
}

.checkout-notice-banner--warn {
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.4);
    color: #fff;
}

.checkout-notice-banner--info {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.35);
}

.edition-card .edition-sub {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.edition-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin-bottom: 26px;
}

.edition-list li {
    color: var(--text-main);
    font-size: 0.96rem;
    line-height: 1.5;
    padding-left: 28px;
    position: relative;
}

.edition-list li::before {
    color: var(--color-green);
    content: "✓";
    font-weight: 900;
    left: 0;
    position: absolute;
}

.edition-card .btn-primary,
.edition-card .btn-secondary {
    margin-top: auto;
    width: 100%;
}

.edition-note {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.55;
    margin-top: 24px;
    text-align: center;
}

/* TEMPORÁRIO — remover/atenuar quando ULTIMATE_SOLD_OUT = false em product-availability.js */
.edition-card--sold-out {
    filter: grayscale(0.35);
    opacity: 0.78;
}

.edition-card--sold-out.featured {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.edition-card--sold-out .edition-flag {
    background: rgba(156, 163, 175, 0.35);
    color: #e5e7eb;
}

.edition-sold-out-notice {
    color: #fbbf24;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
    margin: 8px 0 12px;
}

.edition-card--sold-out .btn-primary.is-disabled {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.55);
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.btn-primary.is-disabled,
.btn-primary.is-disabled:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.55;
    pointer-events: none;
    transform: none;
}

/* Atacado / B2B */
.wholesale-section {
    padding: 80px 24px;
}

.wholesale-inner {
    align-items: stretch;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    margin: 0 auto;
    max-width: 1200px;
}

.wholesale-eyebrow {
    background: linear-gradient(135deg, rgba(130, 224, 155, 0.95) 0%, rgba(34, 197, 94, 0.85) 100%);
}

.wholesale-copy h2 {
    font-size: clamp(1.9rem, 4.6vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 18px 0 20px;
    text-transform: uppercase;
}

.wholesale-lead {
    color: var(--text-muted);
    font-size: 1.06rem;
    line-height: 1.72;
    margin-bottom: 28px;
    max-width: 620px;
}

.wholesale-lead strong {
    color: var(--text-main);
}

.wholesale-stats {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
}

.wholesale-stats li {
    background: rgba(130, 224, 155, 0.06);
    border: 1px solid rgba(130, 224, 155, 0.22);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 14px;
    text-align: center;
}

.wholesale-stat-value {
    color: var(--color-green);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
}

.wholesale-stat-label {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.wholesale-panel {
    background: var(--bg-card);
    border: 1px solid rgba(130, 224, 155, 0.24);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
}

.wholesale-panel-title {
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.wholesale-benefits {
    display: grid;
    gap: 16px;
    list-style: none;
    margin-bottom: 28px;
}

.wholesale-benefits li {
    align-items: flex-start;
    color: var(--text-main);
    display: flex;
    font-size: 0.96rem;
    gap: 14px;
    line-height: 1.55;
}

.wholesale-benefit-ico {
    align-items: center;
    background: rgba(130, 224, 155, 0.08);
    border: 1px solid rgba(130, 224, 155, 0.2);
    border-radius: 12px;
    color: var(--color-green);
    display: inline-flex;
    flex-shrink: 0;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.wholesale-benefit-ico svg {
    height: 20px;
    width: 20px;
}

.wholesale-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.wholesale-actions .btn-primary,
.wholesale-actions .btn-secondary {
    justify-content: center;
    width: 100%;
}

.wholesale-note {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.55;
    margin-top: 16px;
    text-align: center;
}

/* Omnichannel & Marketplace (institucional) */
.omnichannel-section {
    padding: 100px 24px;
    background-color: var(--color-bg-secondary);
}

.omnichannel-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: center;
}

.operation-details {
    padding-right: 20px;
}

.operation-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
}

.operation-text {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.marketplaces-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.market-logo-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 10px 18px;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    min-width: 0;
}

.market-logo-card.amazon {
    background-color: #152c3e;
}

.market-logo-card.tiktokshop {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

.market-logo-card.mercadolivre {
    background-color: #fee600;
}

.market-logo-card.shopee {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

.market-logo-card.magalu {
    background-color: #038cff;
}

.market-logo-card.kabum {
    background-color: #ff6900;
}

.market-logo-card:hover {
    transform: translateY(-6px) scale(1.04);
}

.market-logo-card.amazon:hover {
    border-color: #ff9900;
    box-shadow: 0 15px 35px rgba(21, 44, 62, 0.6), 0 0 15px rgba(255, 153, 0, 0.3);
}

.market-logo-card.tiktokshop:hover {
    border-color: #ff0050;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 0, 80, 0.2);
}

.market-logo-card.mercadolivre:hover {
    border-color: #2d3277;
    box-shadow: 0 15px 35px rgba(254, 230, 0, 0.4), 0 0 15px rgba(45, 50, 119, 0.2);
}

.market-logo-card.shopee:hover {
    border-color: #ff3a27;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 58, 39, 0.3);
}

.market-logo-card.magalu:hover {
    border-color: #ffffff;
    box-shadow: 0 15px 35px rgba(3, 140, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.2);
}

.market-logo-card.kabum:hover {
    border-color: #0060b1;
    box-shadow: 0 15px 35px rgba(255, 105, 0, 0.5), 0 0 15px rgba(0, 96, 177, 0.3);
}

.market-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition-smooth);
}

.market-logo-card:hover .market-logo {
    transform: scale(1.06);
}

/* Brands Section (institucional) */
.brands-section {
    padding: 80px 24px;
    background-color: #ffffff;
    color: #111827;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.brands-inner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.brands-info {
    max-width: 520px;
}

.brands-badge {
    display: inline-block;
    color: var(--color-orange);
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.brands-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
    color: #0f172a;
    font-family: var(--font-titles);
    text-transform: uppercase;
}

.brands-text {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

.brands-text strong {
    color: #0f172a;
}

.brands-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.brand-logo-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-logo-card:hover {
    background-color: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.brand-logo-img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.75);
    transition: all 0.3s ease;
}

.brand-logo-card:hover .brand-logo-img {
    filter: grayscale(0) opacity(1);
}

/* FAQ */
.faq-section {
    margin: 0 auto;
    max-width: 1200px;
    padding: 72px 24px;
}

.faq-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.faq-grid article {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    padding: 26px;
}

.faq-grid h3 {
    font-size: 1.18rem;
    margin-bottom: 14px;
}

/* Final CTA */
.final-cta {
    padding: 0 24px 96px;
}

.final-cta-inner {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.16), rgba(139, 92, 246, 0.16));
    border: 1px solid var(--border-color);
    border-radius: 30px;
    margin: 0 auto;
    max-width: 1100px;
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta-inner h2 {
    font-size: clamp(1.9rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.final-cta-inner p {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0 auto 32px;
    max-width: 640px;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #060507;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 80px 24px 50px;
    text-align: left;
}

.footer-container {
    display: grid;
    gap: 60px;
    grid-template-columns: 1.2fr 1fr 1fr;
    margin: 0 auto;
    max-width: 1200px;
    text-align: left;
}

.footer-brand {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    align-self: flex-start;
    display: block;
    flex-shrink: 0;
    height: 76px;
    max-height: 76px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
    width: auto;
}

.footer-desc,
.footer-info p,
.footer-legal p {
    line-height: 1.6;
    text-align: left;
}

.footer-desc {
    text-wrap: balance;
}

.footer-info-title {
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-align: left;
    text-transform: uppercase;
}

.footer-info p,
.footer-legal p {
    line-height: 1.5;
    margin-bottom: 12px;
}

.footer-credit {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    margin: 50px auto 0;
    max-width: 1200px;
    opacity: 0.6;
    padding-top: 25px;
    text-align: center;
}

.footer-credit p {
    line-height: 1.5;
    margin: 0;
}

.footer-credit a {
    color: var(--color-green);
    text-decoration: underline;
}

/* WhatsApp float */
.whatsapp-float {
    align-items: center;
    animation: whatsappPulse 2s infinite;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    bottom: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 20px rgba(37, 211, 102, 0.2);
    color: #fff;
    display: flex;
    height: 60px;
    justify-content: center;
    position: fixed;
    right: 30px;
    transition: var(--transition-smooth);
    width: 60px;
    z-index: 9999;
}

.whatsapp-float:hover {
    background-color: #20ba59;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.4);
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .omnichannel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .operation-details {
        padding-left: 0;
    }

    .game-schedule {
        max-width: 560px;
        width: 100%;
    }

    .brands-inner-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .brands-info {
        max-width: 100%;
        margin: 0 auto;
    }

    .brands-logos-grid {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1100px) {
    .logo-link {
        flex-shrink: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        background-color: #0d0a15;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.48);
        flex-direction: column;
        height: calc(100vh - 86px);
        padding: 30px;
        position: fixed;
        right: -100%;
        top: 86px;
        transition: var(--transition-smooth);
        width: min(300px, 82vw);
    }

    .nav-links.active {
        right: 0;
    }
}

@media (max-width: 900px) {
    .pv-hero-container,
    .edition-grid,
    .wholesale-inner,
    .footer-container {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .footer-credit {
        padding-right: 76px;
        text-align: left;
    }

    .footer-credit p {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        gap: 4px;
        max-width: calc(100% - 4px);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        text-wrap: pretty;
    }

    .hero-subtitle,
    .hero-lead,
    .section-header p,
    .about-copy p,
    .operation-text,
    .brands-text,
    .final-cta-inner p,
    .faq-grid p,
    .footer-desc,
    .wholesale-lead,
    .wholesale-note {
        text-wrap: pretty;
    }

    .footer-logo {
        height: 56px;
        max-height: 56px;
    }

    .pv-hero-content h1 {
        letter-spacing: -0.035em;
        line-height: 1.12;
        padding-right: 10px;
    }

    .operation-title,
    .brands-title {
        font-size: clamp(1.75rem, 6.2vw, 2.15rem);
        line-height: 1.18;
        letter-spacing: -0.03em;
    }

    .operation-text,
    .brands-text {
        font-size: clamp(0.98rem, 3.8vw, 1.06rem);
        line-height: 1.62;
    }

    .operation-details {
        padding-right: 0;
        max-width: 620px;
        margin: 0 auto;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .marketplaces-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .market-logo-card {
        height: 78px;
        padding: 8px 12px;
    }
}

@media (max-width: 560px) {
    .navbar-container {
        padding: 12px 18px;
    }

    .nav-logo {
        height: 48px;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .pv-hero {
        padding: 70px 18px 48px;
    }

    .hero-actions,
    .final-cta-actions,
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary,
    .final-cta-actions .btn-primary,
    .final-cta-actions .btn-secondary {
        width: 100%;
    }

    .section,
    .faq-section {
        padding: 56px 18px;
    }

    .editions-section,
    .omnichannel-section,
    .wholesale-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .wholesale-stats {
        grid-template-columns: 1fr;
    }

    .wholesale-panel {
        padding: 28px 22px;
    }

    .final-cta-inner {
        padding: 44px 24px;
    }

    .countdown-box {
        min-width: 68px;
        padding: 12px 8px;
    }

    .countdown-number {
        font-size: 1.55rem;
    }

    .faq-grid article {
        padding: 22px;
    }

    .whatsapp-float {
        bottom: 20px;
        height: 52px;
        right: 20px;
        width: 52px;
    }
}

@media (max-width: 480px) {
    .brands-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brands-badge {
        font-size: 0.74rem;
        line-height: 1.35;
        letter-spacing: 0.08em;
        padding: 7px 12px;
    }

    .operation-title,
    .brands-title {
        font-size: clamp(1.55rem, 7.4vw, 1.85rem);
        line-height: 1.16;
    }

    .marketplaces-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
        gap: 12px;
    }

    .market-logo-card {
        height: 68px;
        padding: 6px 10px;
    }

    .market-logo-card:hover .market-logo {
        transform: none;
    }

    .pix-promo-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 18px;
    }

    .pix-promo-badge {
        font-size: 0.76rem;
        padding: 8px 10px;
    }

    .brands-logos-grid {
        grid-template-columns: 1fr;
    }

    .brand-logo-card {
        height: 90px;
    }
}
