/* ════════════════════════════════════════════════
   VANGUARD VISION — PRICING PAGE
   Premium dark theme with cyan accents
   ════════════════════════════════════════════════ */

:root {
    --bg: #030712;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 220, 255, 0.35);

    --cyan: #00dcff;
    --cyan-dim: #007a8f;
    --cyan-glow: rgba(0, 220, 255, 0.15);
    --cyan-glow-strong: rgba(0, 220, 255, 0.4);

    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', var(--font);

    --radius: 16px;
    --radius-sm: 10px;
}

/* ── Typography ───────────────────────────────── */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--white);
}

/* ── Reset ────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--gray-300);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Animated Background ──────────────────────── */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: drift1 20s ease-in-out infinite;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    bottom: 10%;
    right: -150px;
    animation: drift2 25s ease-in-out infinite;
}

.bg-glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation: drift3 18s ease-in-out infinite;
}

@keyframes drift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(80px, 60px); }
}
@keyframes drift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-60px, -80px); }
}
@keyframes drift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -50px); }
}

/* ── Hero ─────────────────────────────────────── */
.hero {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    min-height: 45vh;
}

.logo-link {
    display: inline-block;
    transition: transform 0.4s ease;
}
.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    width: 280px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 30px var(--cyan-glow-strong));
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    margin: 2rem 0;
    border-radius: 2px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--gray-400);
    text-transform: uppercase;
}

.hero-title span {
    font-weight: 800;
    color: var(--white);
}

/* ── Sticky Nav ───────────────────────────────── */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 7, 18, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--gray-300);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--bg);
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow-strong);
}

/* ── Sections ─────────────────────────────────── */
main {
    position: relative;
    z-index: 1;
}

.section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

/* Section label (01 ——— Criativos & Reels) */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.label-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 2px;
}

.label-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

.label-text {
    font-size: 0.8rem;
    color: var(--gray-500);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Section intro */
.section-intro {
    margin-bottom: 3rem;
}

.section-intro h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 550px;
}

/* ── Split Layout (info + table) ──────────────── */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.split-info {
    position: sticky;
    top: 100px;
}

.split-info h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.split-info p {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
}

/* Observation Box */
.obs-box {
    margin-top: 1.2rem;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 220, 255, 0.04);
    border-left: 3px solid var(--cyan);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.85rem;
    color: var(--gray-400);
    max-width: 100%;
    line-height: 1.5;
}

.obs-box strong {
    color: var(--cyan);
    margin-right: 4px;
}

/* ── Cards ────────────────────────────────────── */
.cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.glass-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--cyan-glow);
}

/* Highlight card */
.highlight-card {
    border-color: rgba(0, 220, 255, 0.2);
    background: rgba(0, 220, 255, 0.03);
}

.highlight-card .card-glow {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    border-radius: 0 0 4px 4px;
}

/* Card badge */
.card-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
    border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}

.card-badge.popular {
    color: var(--cyan);
    border-color: rgba(0, 220, 255, 0.3);
    background: rgba(0, 220, 255, 0.08);
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* ── Price Table ──────────────────────────────── */
.price-table {
    display: flex;
    flex-direction: column;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: var(--radius-sm);
}

.price-row span {
    font-size: 0.92rem;
    color: var(--gray-400);
}

.price-row strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

/* ── Volume Box ───────────────────────────────── */
.volume-box {
    margin-top: 1.2rem;
    background: rgba(0, 220, 255, 0.04);
    border: 1px solid rgba(0, 220, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 1rem;
}

.volume-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
}

.volume-row span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.volume-row strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
}

.volume-row.big {
    padding-top: 0.7rem;
    margin-top: 0.4rem;
    border-top: 1px dashed rgba(0, 220, 255, 0.15);
}

.volume-row.big span {
    color: var(--cyan);
    font-size: 0.9rem;
}

.volume-row.big strong {
    font-size: 1.5rem;
    text-shadow: 0 0 15px var(--cyan-glow-strong);
}

.volume-row.big small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-500);
    margin-left: 2px;
}

/* ── Call Card (VSL com Copy) ─────────────────── */
.call-card {
    display: flex;
    flex-direction: column;
}

.call-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
}

.call-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 220, 255, 0.06);
    border: 1px solid rgba(0, 220, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--cyan);
    transition: all 0.4s ease;
}

.call-card:hover .call-icon {
    background: var(--cyan);
    color: var(--bg);
    box-shadow: 0 0 30px var(--cyan-glow-strong);
    transform: scale(1.1);
}

.call-icon svg {
    width: 28px;
    height: 28px;
}

.call-headline {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 0.8rem;
}

.call-desc {
    color: var(--gray-500);
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────── */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    background: var(--cyan);
    color: var(--bg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 100px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--cyan);
}

.btn-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 30px var(--cyan-glow-strong);
    transform: translateY(-2px);
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--bg);
}

.btn-big {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

/* ── Extras Cards ─────────────────────────────── */
.extras-row {
    grid-template-columns: repeat(2, 1fr);
}

.extra-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.extra-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(0, 220, 255, 0.06);
    border: 1px solid rgba(0, 220, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--cyan);
    transition: all 0.3s ease;
}

.extra-card:hover .extra-icon {
    background: var(--cyan);
    color: var(--bg);
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 0 20px var(--cyan-glow-strong);
}

.extra-icon svg {
    width: 26px;
    height: 26px;
}

.extra-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.extra-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    max-width: 300px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.extra-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow-strong);
}

/* ── Extras Grid (mini cards) ─────────────────── */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.extra-mini {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.2rem;
}

.extra-mini h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra-mini p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.extra-mini .extra-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 0;
}

.extra-mini .icon-area {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.extra-mini .extra-icon svg {
    width: 22px;
    height: 22px;
}

.extra-mini:hover .extra-icon {
    background: var(--cyan);
    color: var(--bg);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--cyan-glow-strong);
}

/* WhatsApp Icon */
.whatsapp-icon {
    background: rgba(37, 211, 102, 0.08) !important;
    border-color: rgba(37, 211, 102, 0.2) !important;
    color: #25D366 !important;
}

.extra-mini:hover .whatsapp-icon {
    background: #25D366 !important;
    color: var(--bg) !important;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4) !important;
}

/* Social Icons Row (overlap style) */
.social-icons-row {
    display: flex;
    margin-bottom: 1.2rem;
    justify-content: center;
}

.mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-bottom: 0;
    margin-left: -10px;
    border: 2px solid var(--bg) !important;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

.mini-icon:first-child {
    margin-left: 0;
    z-index: 3;
    animation-delay: 0s;
}

.mini-icon:nth-child(2) {
    z-index: 2;
    animation-delay: 0.4s;
}

.mini-icon:nth-child(3) {
    animation-delay: 0.8s;
}

.mini-icon:hover {
    z-index: 10;
    transform: scale(1.15) rotate(0deg) !important;
    animation-play-state: paused;
}

@keyframes iconPulse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(8deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-8deg) scale(1.05); }
}

/* Messenger Icon */
.messenger-icon {
    background: rgba(0, 132, 255, 0.08) !important;
    border-color: rgba(0, 132, 255, 0.2) !important;
    color: #0084FF !important;
}

.extra-mini:hover .messenger-icon {
    background: #0084FF !important;
    color: var(--bg) !important;
    box-shadow: 0 0 20px rgba(0, 132, 255, 0.4) !important;
}

/* Instagram Icon */
.instagram-icon {
    background: rgba(225, 48, 108, 0.08) !important;
    border-color: rgba(225, 48, 108, 0.2) !important;
    color: #E1306C !important;
}

.extra-mini:hover .instagram-icon {
    background: #E1306C !important;
    color: var(--bg) !important;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.4) !important;
}


/* Small button */
.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
}

/* ── CARRINHO ─────────────────────────────────── */

/* Add button on price rows */
.cart-add-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0, 220, 255, 0.3);
    background: rgba(0, 220, 255, 0.08);
    color: var(--cyan);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.cart-add-btn:hover {
    background: var(--cyan);
    color: var(--bg);
    transform: scale(1.15);
    box-shadow: 0 0 12px var(--cyan-glow-strong);
}

.cart-add-btn.added {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    transform: scale(1.2);
}

/* FAB (floating action button) */
.cart-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--cyan-glow-strong);
    transition: all 0.3s ease;
}

.cart-fab svg {
    width: 24px;
    height: 24px;
}

.cart-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px var(--cyan-glow-strong);
}

.cart-fab.pulse {
    animation: fabPulse 0.5s ease;
}

@keyframes fabPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff3b5c;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.cart-fab.has-items .cart-count {
    opacity: 1;
    transform: scale(1);
}

/* Overlay */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-header h3 {
    font-size: 1.2rem;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-close svg {
    width: 18px;
    height: 18px;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

/* Cart items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--gray-500);
}

.cart-empty p {
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 0.3rem;
}

.cart-empty span {
    font-size: 0.85rem;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    animation: slideIn 0.25s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-item-section {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cyan);
    font-weight: 600;
}

.cart-item-name {
    font-size: 0.85rem;
    color: var(--gray-300);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cart-item-qty {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 600;
}

.cart-item-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--white);
}

.cart-remove {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 60, 92, 0.1);
    color: #ff3b5c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-remove:hover {
    background: #ff3b5c;
    color: #fff;
}

/* Cart footer */
.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-total span {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.cart-total strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 15px var(--cyan-glow-strong);
}

.cart-whatsapp {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    border-color: #25D366;
    margin-bottom: 0.5rem;
}

.cart-whatsapp:hover {
    background: #1fbc5a;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-clear {
    width: 100%;
    padding: 0.6rem;
    background: transparent;
    border: 1px solid rgba(255, 60, 92, 0.2);
    color: #ff3b5c;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-clear:hover {
    background: rgba(255, 60, 92, 0.1);
}

/* Price row needs flex for the + button */
.price-row, .volume-row {
    display: flex;
    align-items: center;
}

/* ── Portfolio CTA ────────────────────────────── */
.portfolio-cta {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 0 2rem 4rem;
}

.portfolio-inner {
    text-align: center;
    padding: 4rem 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(0, 220, 255, 0.02) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.portfolio-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.portfolio-cta h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.portfolio-desc {
    color: var(--gray-500);
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Footer ───────────────────────────────────── */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
}

footer p {
    font-size: 0.85rem;
    color: var(--gray-700);
}

footer a {
    color: var(--cyan-dim);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--cyan);
}

/* ── Reveal Animations ────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger cards */
.cards-row .reveal:nth-child(2) {
    transition-delay: 0.15s;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem 3rem;
        min-height: auto;
    }

    .logo {
        width: 200px;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    .cards-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-info {
        position: static;
    }

    .section {
        padding: 3rem 1.2rem 2rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .extra-card {
        padding: 2rem 1.5rem;
    }

    .extra-price {
        font-size: 2.2rem;
    }

    .nav-inner {
        gap: 0.3rem;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 400px) {
    .logo {
        width: 160px;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.3rem;
    }
}
