/* =========================================
   SALES NOTIFICATIONS (POPUP)
   ========================================= */
#sales-notification {
    position: fixed !important;
    bottom: 25px !important;
    left: 20px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 16px !important;
    padding: 12px 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    z-index: 99999 !important;
    transform: translateX(-150%) !important;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    max-width: 320px !important;
}

#sales-notification.active {
    transform: translateX(0) !important;
}

.sn-icon {
    font-size: 1.5rem !important;
    background: #f1f5f9 !important;
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
}

.sn-content {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.3 !important;
}

.sn-name {
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    color: #1e293b !important;
}

.sn-action {
    font-size: 0.85rem !important;
    color: #64748b !important;
    margin: 2px 0 !important;
}

.sn-product {
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    color: #ee2a7b !important;
}

.sn-time {
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
    margin-top: 4px !important;
    font-weight: 500 !important;
}

@media (max-width: 640px) {
    #sales-notification {
        left: 10px !important;
        right: 10px !important;
        bottom: 15px !important;
        max-width: calc(100% - 20px) !important;
    }
}

/* ============================
    ROOT VARIABLES
============================ */
:root {
    --primary: #5a2cc9; /* Strong Purple from image */
    --primary-light: #7b4df0;
    --primary-dark: #3a1c85;
    
    --secondary: #1a66ff;
    --secondary-light: #3b82f6;
    
    --accent: #e11d48;
    --success: #10b981;
    
    --bg-light: #fafbfd;
    --bg-white: #ffffff;
    
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-card: 0 20px 40px -4px rgba(0,0,0,0.08);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================
    RESET & BASE
============================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: 100%; margin: 0 auto; padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; padding: 0 2rem; } }
@media (min-width: 1280px) { .container { max-width: 1200px; } }

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

/* ============================
    TYPOGRAPHY & UTILS
============================ */
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.2; letter-spacing: -0.5px; }
.section-subtitle { color: var(--text-muted); font-size: 1.125rem; margin-bottom: 2.5rem; }
.highlight { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.highlight-underline { position: relative; z-index: 1; }
.highlight-underline::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px; background: #e0e7ff; z-index: -1; border-radius: 4px; }

.social-header-badge {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: rgba(90, 44, 201, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-section .section-title {
    color: white;
    font-size: 2.5rem;
}

.social-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2rem; /* Reduzido de 3.5rem para 2rem para diminuir o gap */
    font-weight: 400;
}

/* ============================
    BUTTONS
============================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.85rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 1.05rem;
    transition: var(--transition); gap: 0.5rem;
}
.btn-primary { background: linear-gradient(90deg, #6c3ce9, #3b82f6); color: white; border-radius: 12px; }
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-outline { border: 2px solid #e2e8f0; color: var(--text-dark); border-radius: 12px; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: #f8fafc; }
.btn-block { width: 100%; padding: 1rem; }

/* --- Premium 3D Hero CTA (Instagram Gradient) --- */
.btn-cta-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    padding: 1.15rem 3rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    
    /* 3D Depth Layer - Dark Pink/Purple for Instagram feel */
    box-shadow: 0 8px 0 #831843, 0 15px 25px rgba(220, 39, 67, 0.4);
    
    transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(-4px); 
    user-select: none;
}

.btn-cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #831843, 0 10px 20px rgba(220, 39, 67, 0.3);
    filter: brightness(1.1);
    color: white;
}

.btn-cta-hero:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #831843, 0 5px 10px rgba(0,0,0,0.1);
}

.cta-wrapper {
    margin-top: 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem; /* Distância idêntica em cima e embaixo para simetria total */
}

.cta-micro-details {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center; /* Coreto para centralizar o texto/ícones */
    gap: 0.5rem;
    background: rgba(241, 245, 249, 0.8);
    padding: 0.6rem 1.25rem;
    border-radius: 99px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

@media (min-width: 1024px) {
    .cta-wrapper {
        align-items: flex-start; /* Keep left aligned for left-aligned text */
    }
}


/* ============================
    NAVBAR
============================ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px);
    border-bottom: 1px solid #f1f5f9; padding: 1rem 0;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.logo { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.5px; white-space: nowrap; }
.logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn) { font-weight: 500; color: var(--text-muted); transition: var(--transition); }
.nav-links a:not(.btn):hover { color: var(--primary); }
.nav-links .btn { padding: 0.5rem 1rem; font-size: 0.95rem; }
@media (max-width: 768px) { .nav-links a:not(.btn) { display: none; } }
@media (min-width: 768px) { .logo { font-size: 1.5rem; } .nav-links .btn { padding: 0.85rem 1.5rem; font-size: 1.05rem; } }

/* =========================================
   UI SEPARATORS & DIVIDERS
========================================= */
.section-divider-text {
    width: 100%;
    text-align: center;
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manual-order-title {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--primary); /* Destaque em roxo */
    letter-spacing: 0.35rem; /* Visual moderno e espaçado */
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.manual-order-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 99px;
    opacity: 0.3;
}

/* =========================================
   ORDER BUMP & PREMIUM PROMOS (REUSABLE)
========================================= */
.order-bump-box {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border: 2px dashed #6366f1;
    border-radius: 1.25rem;
    background: #f5f3ff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bumpSoftPulse 5s infinite;
}

@keyframes bumpSoftPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { transform: scale(1.01); box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
}

.order-bump-box:hover {
    border-color: #4f46e5;
    background: #eef2ff;
    transform: translateY(-2px);
}

.order-bump-box.active {
    border-color: #22c55e !important;
    background: #f0fdf4 !important;
    border-style: solid !important;
    animation: none !important; /* Para de pulsar quando selecionado */
}

.bump-checkbox {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    width: 24px;
    height: 24px;
    accent-color: #22c55e;
    cursor: pointer;
    z-index: 2;
}

.bump-badge-discount {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem; /* Space below badge */
}

/* ============================
    HERO SECTION
============================ */
.hero {
    padding-top: 10rem; padding-bottom: 4rem; /* Aumentado de 8rem para 10rem para não cortar o título */
    background: radial-gradient(circle at top left, #f3e8ff, transparent 40%), radial-gradient(circle at bottom right, #e0f2fe, transparent 40%);
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; text-align: center; }

.hero-social-proof { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.avatars { display: flex; }
.avatars img { width: 45px; height: 45px; border-radius: 50%; border: 3px solid white; object-fit: cover; margin-left: -16px; box-shadow: var(--shadow-sm); }
.avatars img:first-child { margin-left: 0; }
.proof-text { display: flex; flex-direction: column; text-align: left; }
.proof-count { font-size: 1.15rem; font-weight: 800; color: #002e5b; line-height: 1.2; letter-spacing: -0.5px; }
.proof-rating { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 700; color: #e81c62; }
.proof-rating .stars { letter-spacing: -2px; font-size: 1.15rem; }

.hero .headline { font-size: 2rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1px; max-width: 820px; margin-inline: auto; }
.hero .subheadline { font-size: 1rem; color: var(--text-muted); margin-bottom: 0px; max-width: 580px; margin-inline: auto; }
@media (min-width: 1024px) { .hero .headline { font-size: 3.5rem; } .hero .subheadline { font-size: 1.125rem; } }

.trust-indicators { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; color: var(--text-muted); font-size: 0.875rem; font-weight: 500; }
@media (min-width: 1024px) { .trust-indicators { justify-content: flex-start; gap: 1.5rem; } }
.trust-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-item i { width: 16px; height: 16px; color: var(--primary); }

.hero-image-wrapper { position: relative; max-width: 450px; margin: 0 auto; }
.hero-image { width: 100%; border-radius: 1.5rem; box-shadow: var(--shadow-md); background-color: #fff; }
.floating-element { position: absolute; background: white; padding: 0.75rem; border-radius: var(--radius-full); box-shadow: var(--shadow-md); font-size: 1.5rem; font-weight: bold; animation: float 4s ease-in-out infinite; z-index: 2; }
.float-1 { top: 15%; left: -2%; animation-delay: 0s; }
.float-2 { top: 45%; right: -5%; animation-delay: 1.5s; }
.float-3 { bottom: 10%; left: 15%; animation-delay: 2.5s; font-size: 1.25rem; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@media (max-width: 1024px) { .floating-element { display: none; } }

/* ============================
    SOCIAL PILLS
============================ */
.social-section {
    padding: 6rem 0;
    position: relative;
    background: #0f172a; /* Dark base */
    background: radial-gradient(circle at 10% 20%, rgba(90, 44, 201, 0.4) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.4) 0%, transparent 40%),
                linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    overflow: hidden;
}

/* Background Glowing Blobs */
.social-section::before,
.social-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.5;
}

.social-section::before {
    top: 10%;
    left: -100px;
    background: var(--primary);
}

.social-section::after {
    bottom: -50px;
    right: -100px;
    background: var(--secondary);
}
.social-pills-grid.instagram-tiktok-only {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    perspective: 1000px; /* Perspective for 3d effect */
}
@media (max-width: 640px) {
    .social-pills-grid.instagram-tiktok-only { flex-direction: column; align-items: stretch; }
    .social-pill { padding-left: 1rem; padding-right: 1.5rem; } /* better mobile fit for large coin */
}
.social-pill {
    position: relative;
    overflow: visible; /* Changed from hidden to show floating tags */
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.25rem 2.5rem 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 2rem; border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700; color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform-style: preserve-3d;
    isolation: isolate; 
    z-index: 1;
}

.pill-featured {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(90, 44, 201, 0.3);
}

.pill-featured:hover {
    transform: translateY(-10px) scale(1.07);
    box-shadow: 0 25px 50px rgba(90, 44, 201, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FF4B2B, #FF416C);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    box-shadow: 0 5px 15px rgba(255, 65, 108, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: bounceMinor 2s infinite;
}

@keyframes bounceMinor {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.pill-text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0.15rem;
}

.pill-title {
    font-size: 1.15rem;
    font-weight: 800;
}

.pill-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-style: italic;
}

.pill-instagram:hover {
    box-shadow: 0 20px 40px rgba(214, 36, 159, 0.15);
}

.pill-tiktok:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pill-text {
    position: relative;
    z-index: 2;
}
.pill-action {
    margin-left: auto;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all 0.3s;
    z-index: 2;
}
.social-pill:hover .pill-action {
    opacity: 1;
    transform: translateX(5px);
    color: white;
}

/* --- 3D Rotating Coins --- */
.icon-3d-coin {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    transform: translateZ(20px);
    animation: spinCoin 4s linear infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15), inset 0 2px 2px rgba(255,255,255,0.4), inset 0 -2px 5px rgba(0,0,0,0.2);
}
.icon-3d-coin i, .icon-3d-coin svg {
    transform: translateZ(10px);
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
}

@keyframes spinCoin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.insta-coin {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.tiktok-coin {
    background: #111;
}
.tiktok-svg {
    filter: drop-shadow(-1.5px 1.5px 0 #00f2fe) drop-shadow(1.5px -1.5px 0 #fe0979) !important;
    stroke: #ffffff;
}
.social-pill:hover .icon-3d-coin {
    animation-duration: 1.5s;
}

/* Hover Glow Effect */
.pill-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    z-index: 0;
    opacity: 0;
}
.social-pill:hover .pill-bg-glow {
    width: 300px;
    height: 300px;
    opacity: 1;
}
.insta-glow {
    background: radial-gradient(circle, rgba(214, 36, 159, 0.1) 0%, transparent 60%);
}
.tiktok-glow {
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 60%);
}
/* ============================
    CUSTOM ORDER (MONTE SEU PEDIDO)
============================ */
.custom-order-section {
    padding: 4rem 0;
    background: #f8fafc;
}
.custom-order-container {
    max-width: 768px !important;
}

/* Top Bar */
.order-top-bar {
    background: white;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    margin-bottom: 1.5rem;
    border: 1px solid #f1f5f9;
}
.bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.bar-icon-wrapper {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.bar-info {
    display: flex;
    flex-direction: column;
}
.bar-info strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.25rem;
}

/* Evidencia de onde colocar o @ */
.highlighted-input-wrap {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #ee2a7b;
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
    box-shadow: 0 0 0 4px rgba(238, 42, 123, 0.1);
    transition: var(--transition);
}
.highlighted-input-wrap:focus-within {
    box-shadow: 0 0 0 4px rgba(90, 44, 201, 0.3);
    background: #ffffff;
}

.at-symbol {
    font-weight: 800;
    color: #ee2a7b;
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

.header-input {
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    background: transparent;
    padding: 0.25rem 0;
    width: 100%;
}
@media (min-width: 640px) { .header-input { min-width: 250px; } }
.header-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.bar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.detail-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.old-price {
    font-size: 0.85rem;
    color: #ef4444;
    text-decoration: line-through;
    font-weight: 600;
    line-height: 1;
}
.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1.1;
}

@media (max-width: 639px) {
    .order-top-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .bar-right { align-items: flex-start; }
}

/* Card Principal */
.monte-pedido-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.card-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
}
.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 80%;
}

/* Sliders */
.sliders-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.slider-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.slider-label {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1e293b;
}
.slider-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1e293b;
}
.slider-control {
    position: relative;
    padding: 0.5rem 0; /* Add some padding around the slider to ensure bolinha is fully visible and grabbable */
}

/* Base styling for our custom CSS slider */
.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 4px;
    outline: none;
    position: relative;
    /* CSS Variables modified by JS */
    --value: 0%; 
    background: linear-gradient(to right, #ee2a7b var(--value), #e2e8f0 var(--value));
    cursor: pointer;
}

/* Thumb for Webkit/Chrome/Safari */
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ee2a7b;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.1s;
}
.custom-slider::-webkit-slider-thumb:hover, .custom-slider:active::-webkit-slider-thumb  {
    transform: scale(1.15);
}

/* Thumb for Firefox */
.custom-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ee2a7b;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.1s;
}
.custom-slider:active::-moz-range-thumb  {
    transform: scale(1.15);
}

/* Total Section */
.card-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
    margin-bottom: 1.5rem;
}
.total-label-text {
    font-weight: 800;
    font-size: 1.25rem;
    color: #0f172a;
}
.total-prices {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}
.total-old {
    color: #ef4444;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 1rem;
}
.total-current {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2563eb;
}

/* Botao Avancar (antigo, mantido para referência) */
.btn-avancar {
    background: linear-gradient(90deg, #4f46e5, #3b82f6);
    color: white;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1.2rem;
    border-radius: 12px;
}
.btn-avancar:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* =========================================
   PREMIUM DARK CARD -> CHANGED TO LIGHT FOR INSTAGRAM THEME
========================================= */
.monte-pedido-premium {
    position: relative;
    background: #fff;
    border: 2px solid #ee2a7b;
    border-radius: 2rem;
    padding: 3rem 2rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 25px rgba(238, 42, 123, 0.15), 0 20px 50px rgba(0,0,0,0.1);
    overflow: visible;
}

.monte-pedido-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f9ce34, #ee2a7b, #6228d7);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(238, 42, 123, 0.5);
    white-space: nowrap;
    z-index: 10;
}

.manual-order-title-premium {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 0.4rem;
}

.manual-order-subtitle-premium {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Custom input wrap */
.highlighted-input-wrap-dark {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #ee2a7b;
    border-radius: 8px;
    padding: 0.25rem 0.75rem;
    box-shadow: 0 0 0 4px rgba(238, 42, 123, 0.1);
    transition: var(--transition);
}
.highlighted-input-wrap-dark:focus-within {
    box-shadow: 0 0 0 4px rgba(238, 42, 123, 0.25);
    background: #fff;
}

.at-symbol-dark {
    font-weight: 800;
    color: #ee2a7b;
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

.header-input-dark {
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    outline: none;
    background: transparent;
    padding: 0.5rem 0;
    width: 100%;
}
.header-input-dark::placeholder { color: #94a3b8; font-weight: 500; }

/* Slider labels */
.slider-label-dark { color: #1e293b; font-weight: 700; font-size: 1.05rem; }
.slider-price-dark { color: #ee2a7b; font-weight: 800; font-size: 1.05rem; }

/* Teal slider track */
.custom-slider-teal {
    background: linear-gradient(to right, #ee2a7b var(--value, 0%), #e2e8f0 var(--value, 0%));
}
.custom-slider-teal::-webkit-slider-thumb { border-color: #ee2a7b; }
.custom-slider-teal::-moz-range-thumb    { border-color: #ee2a7b; }

/* Footer row */
.card-footer-dark {
    border-top-color: #f1f5f9 !important;
}

/* CTA button premium teal */
.btn-avancar-premium {
    background: linear-gradient(90deg, #f9ce34, #ee2a7b, #6228d7);
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 1.25rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(238, 42, 123, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}
.btn-avancar-premium:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(238, 42, 123, 0.5);
}


/* ============================
    BENEFITS
============================ */
.benefits-section { padding: 5rem 0; background: white; }
.benefits-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; margin-top: 4rem; }
.benefit-item { padding: 1rem; width: 100%; max-width: 240px; }
.b-icon { font-size: 3rem; margin-bottom: 1rem; }
.benefit-item h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.benefit-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ============================
    FAQ SECTION
============================ */
.faq-section { padding: 5rem 0; background: var(--bg-white); }
.accordion { max-width: 800px; margin: 3rem auto 0; }
.accordion-item { border-bottom: 1px solid #e2e8f0; }
.accordion-header {
    width: 100%; text-align: left; padding: 1.5rem 0; font-size: 1.125rem; font-weight: 600; color: var(--text-dark);
    display: flex; justify-content: space-between; align-items: center; transition: var(--transition);
}
.accordion-header:hover { color: var(--primary); }
.accordion-header.active i { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.accordion-body p { padding-bottom: 1.5rem; color: var(--text-muted); }

/* ============================
    FOOTER
============================ */
.site-footer { background: var(--text-dark); color: var(--text-light); padding: 4rem 0 2rem; }
.footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { color: #cbd5e1; transition: var(--transition); }
.footer-links a:hover { color: white; }
.copyright { color: #64748b; font-size: 0.875rem; padding-top: 2rem; border-top: 1px solid #334155; }

/* ============================
    INTERACTIVE & ANIMATIONS
============================ */
/* Hero Particles Canvas */
#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* behind content */
    pointer-events: none; /* Let clicks pass through to content */
}
.hero { position: relative; overflow: hidden; }
.hero > .container { position: relative; z-index: 1; }

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =========================================
   CHECKOUT E UPSELL (PROMO) - MODAL
========================================= */

.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-modal-overlay.show {
    visibility: visible;
    opacity: 1;
}

.modal-card {
    max-width: 500px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    background: #111; /* Dark Theme Base */
    color: white;
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(239, 68, 68, 0.1);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.checkout-modal-overlay.show .modal-card {
    transform: scale(1) translateY(0);
}

/* Modal Header Premium */
.modal-header-premium {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.modal-header-premium h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.5px;
}

.modal-close-icon {
    position: absolute;
    right: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.modal-close-icon:hover { opacity: 1; }

/* Product Summary Header */
.modal-product-summary {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-qty-label {
    font-size: 1.4rem;
    font-weight: 800;
    color: #94a3b8;
}

.product-price-label {
    font-size: 3rem;
    font-weight: 950;
    color: white;
    letter-spacing: -1px;
}

/* Modal Content Area */
.modal-content-premium {
    padding: 0 1.5rem 2.5rem;
}

/* Input Link Section */
.input-section-premium {
    margin-top: 2rem;
}

.premium-label {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
}

.premium-input-wrap {
    background: #222;
    border: 2px solid #333;
    border-radius: 1rem;
    padding: 0.25rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.premium-input-wrap:focus-within {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.premium-input-wrap input {
    background: transparent;
    border: none;
    width: 100%;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    outline: none;
}

.premium-input-help {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0.5rem 0 0;
    text-align: center;
    font-weight: 500;
}

/* Warning Box */
.warning-box-premium {
    background: rgba(234, 179, 8, 0.05);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.warning-box-premium i {
    color: #eab308;
    width: 20px;
    flex-shrink: 0;
}

.warning-box-premium span {
    font-size: 0.9rem;
    color: #eab308;
    line-height: 1.4;
}

/* Order Bump Premium Card */
.order-bump-premium {
    margin-top: 2rem;
    background: rgba(239, 68, 68, 0.03);
    border: 2px dashed rgba(239, 68, 68, 0.3);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.order-bump-premium.active {
    border-style: solid;
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.bump-header-badge {
    position: absolute;
    top: -16px;
    right: 1.5rem;
    background: #ff5213;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(255, 82, 19, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    animation: bumpBadgePulse 2s infinite ease-in-out;
}

@keyframes bumpBadgePulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 82, 19, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(255, 82, 19, 0.7); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 82, 19, 0.4); }
}

.bump-header-badge i { width: 16px; height: 16px; margin-top: -1px; }

.bump-checkbox-wrapper {
    display: flex;
    gap: 1.25rem;
    cursor: pointer;
}

.bump-checkbox-custom {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.bump-checkbox-custom input {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
}

.bump-checkbox-custom:hover input ~ .checkmark {
    border-color: rgba(255,255,255,0.4);
}

.bump-checkbox-custom input:checked ~ .checkmark {
    background-color: #ef4444;
    border-color: #ef4444;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.bump-checkbox-custom input:checked ~ .checkmark:after {
    display: block;
}

.bump-checkbox-custom .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bump-offer-text .offer-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.bump-offer-text .offer-header i { width: 16px; color: #ef4444; }

.bump-offer-text h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.8rem;
    line-height: 1.3;
}

.bump-prices {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.bump-prices .price-current {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

.bump-prices .price-old {
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: line-through;
}

.bump-prices .discount-pill {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.bump-scarcity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.bump-timer {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fbbf24;
}

.bump-timer span { font-weight: 950; }

.bump-proof {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
}

.bump-proof span { color: white; font-weight: 900; }

.bump-stock-container {
    margin-bottom: 1rem;
}

.stock-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-progress-bar {
    height: 6px;
    background: #222;
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.stock-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #ff7b00);
    border-radius: 99px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stock-percent {
    text-align: right;
    font-size: 0.75rem;
    font-weight: 900;
    color: #ef4444;
}

.stock-urgency {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #ff7b00;
    font-size: 0.8rem;
    font-weight: 800;
}

.stock-urgency i { width: 14px; }

/* CTA Button Premium */
.btn-continuar-premium {
    width: 100%;
    margin-top: 2rem;
    background: #ef4444; /* Standard Red for conversion */
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    padding: 1.25rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4), 0 0 15px rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-continuar-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.5), 0 0 25px rgba(239, 68, 68, 0.3);
    filter: brightness(1.1);
}

.btn-continuar-premium:active {
    transform: translateY(1px);
}

/* =========================================
   PULSING CTA BUTTON
========================================= */
@keyframes pulse-white {
    0% {
        box-shadow: 0 6px 0 rgba(0,0,0,0.1), 0 0 0 0 rgba(255, 255, 255, 0.6);
    }
    70% {
        box-shadow: 0 6px 0 rgba(0,0,0,0.1), 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 6px 0 rgba(0,0,0,0.1), 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-cta-pulse {
    background: #ffffff;
    color: #ee2a7b;
    font-size: 1.15rem;
    font-weight: 900;
    padding: 1.25rem 2.5rem;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* 3D Relief and Pulse */
    animation: pulse-white 2s infinite;
    transform: translateY(0);
    transition: transform 0.2s, background 0.2s;
}

.btn-cta-pulse:hover {
    transform: translateY(-3px);
    background: #fdf2f8;
}

.btn-cta-pulse:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0,0,0,0.1) !important;
    animation: none;
}

/* =========================================
   FLOATING BRAND LOGOS (HERO)
========================================= */
.floating-brand {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), inset 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 5;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.floating-brand svg { width: 32px; height: 32px; }
.floating-brand i { width: 32px; height: 32px; }

.zap-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: #0f172a; /* Dark Tech Background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.6), inset 0 2px 4px rgba(255,255,255,0.1);
    border: 2px solid #1e293b; /* Dark gray rim */
    z-index: 10;
}

/* Instagram Glass */
.instagram-float-1, .instagram-float-2 {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4), inset 0 -4px 10px rgba(0,0,0,0.2);
}
/* TikTok Glass */
.tiktok-float-1, .tiktok-float-2 {
    background: #000;
    box-shadow: 0 15px 35px rgba(0,242,254,0.3), inset 0 -4px 10px rgba(255,255,255,0.2);
}

.instagram-float-1 { top: 15%; left: 10%; animation-name: float-1; animation-duration: 4s; transform: rotate(-10deg); }
.tiktok-float-1 { top: 55%; left: 8%; animation-name: float-2; animation-duration: 5s; transform: rotate(15deg); }
.tiktok-float-2 { top: 15%; right: 12%; animation-name: float-3; animation-duration: 4.5s; transform: rotate(10deg); width: 45px; height: 45px; }
.tiktok-float-2 svg { width: 24px; height: 24px; }
.instagram-float-2 { top: 60%; right: 10%; animation-name: float-4; animation-duration: 5.5s; transform: rotate(-15deg); width: 50px; height: 50px; }
.instagram-float-2 i { width: 26px; height: 26px; }

@keyframes float-1 { from { transform: translateY(0) rotate(-10deg); } to { transform: translateY(-20px) rotate(-5deg); filter: brightness(1.1); } }
@keyframes float-2 { from { transform: translateY(0) rotate(15deg); } to { transform: translateY(-30px) rotate(20deg); filter: brightness(1.1); } }
@keyframes float-3 { from { transform: translateY(0) rotate(10deg); } to { transform: translateY(20px) rotate(25deg); filter: brightness(1.1); } }
@keyframes float-4 { from { transform: translateY(0) rotate(-15deg); } to { transform: translateY(-25px) rotate(-20deg); filter: brightness(1.1); } }

@media (max-width: 768px) {
    .floating-brand { opacity: 0.15; transform: scale(0.6) !important; animation: none; }
}

/* =========================================
   FEATURED PROMO CARD (REDE/REGUA)
========================================= */
.promo-package-card {
    background: #ffffff;
    border-radius: 1.5rem;
    border: 3px solid #6366f1; /* Indigo focus to stand out */
    padding: 2.5rem 2rem 2.25rem;
    margin-bottom: 3.5rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
}

.promo-badge-hot {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 1.25rem;
    border-radius: 99px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Better balance */
}

@media (min-width: 768px) {
    .promo-content { flex-direction: row; align-items: start; }
    .promo-text { flex: 1; padding-right: 2.5rem; border-right: 1px solid #f1f5f9; }
    .promo-pricing-box { width: 340px; padding-left: 2rem; display: flex; flex-direction: column; justify-content: center; }
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.promo-bullets {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.promo-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.bullet-icon {
    width: 20px;
    height: 20px;
    color: #22c55e;
}

.promo-pricing-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: -0.25rem;
}

.price-current {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.btn-promo-cta {
    width: 100%;
    font-size: 1.15rem;
    padding: 1.15rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(90, 44, 201, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(90, 44, 201, 0); }
    100% { box-shadow: 0 0 0 0 rgba(90, 44, 201, 0); }
}

.promo-scarcity {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ef4444;
    line-height: 1.4;
}

/* =========================================
   PREMIUM DARK PROMO CARDS (NEON STYLE)
========================================= */
.promo-premium-card {
    position: relative;
    background: #111;
    border-radius: 2rem;
    padding: 3rem 2rem 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Glow Borders based on platform */
.promo-premium-card.promo-insta {
    border-color: #d6249f;
    box-shadow: 0 0 25px rgba(214, 36, 159, 0.2), 0 20px 50px rgba(0,0,0,0.3);
}

.promo-premium-card.promo-tiktok {
    border-color: #00f2fe;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.2), 0 20px 50px rgba(0,0,0,0.3);
}

.promo-premium-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
    z-index: 10;
}

.promo-premium-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
    transform: perspective(1000px) rotateX(10deg);
}

/* 3D Premium Instagram Logo */
.insta-logo-3d {
    width: 64px;
    height: 64px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 25px rgba(214, 36, 159, 0.5),
        inset 0 -4px 8px rgba(0,0,0,0.2),
        inset 0 4px 8px rgba(255,255,255,0.3);
    animation: float3D 3s ease-in-out infinite;
}

.insta-logo-3d svg {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* 3D Premium TikTok Logo */
.tiktok-logo-3d {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #010101 0%, #1a1a2e 100%);
    border-radius: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 25px rgba(0, 242, 254, 0.35),
        inset 0 -4px 8px rgba(0,0,0,0.4),
        inset 0 4px 8px rgba(255,255,255,0.05);
    animation: float3D 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.tiktok-logo-3d svg {
    width: 36px;
    height: 36px;
    filter:
        drop-shadow(-2px 2px 0 #00f2fe)
        drop-shadow(2px -2px 0 #fe0979)
        drop-shadow(0 0 8px rgba(0, 242, 254, 0.6));
}

@keyframes float3D {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(10deg); }
}

.promo-premium-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.promo-premium-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.promo-premium-price-box {
    margin-bottom: 2rem;
}

.promo-premium-old-price {
    color: #ef4444;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
}

.promo-premium-current-price {
    color: white;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 0.25rem;
}

/* =========================================
   PROMO TIMER
========================================= */
.promo-timer-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: promo-pulse 2s infinite;
}
.promo-timer {
    color: #ef4444;
    font-weight: 900;
    margin-left: 0.4rem;
    font-size: 1.05rem;
    font-variant-numeric: tabular-nums;
}
@keyframes promo-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.25); }
    70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.promo-premium-btn {
    width: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: #000;
    font-size: 1.25rem;
    font-weight: 900;
    padding: 1.25rem;
    border-radius: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
    margin-bottom: 1rem;
}

.promo-premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
    filter: brightness(1.1);
}

.promo-premium-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    font-weight: 600;
}

.promo-footer-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.promo-footer-item i {
    width: 14px;
    color: var(--primary-light);
}

.view-count-pill {
    color: #ff4d4d;
    font-weight: 700;
}

/* Redes / Monte o seu pedido (Custom styling for sliders below) */
.monte-pedido-card { 
    background: #ffffff;
    border-radius: 1.5rem; 
    border: 1px solid #f1f5f9;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.promo-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.promo-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.promo-card.active {
    border-color: var(--primary);
    background: rgba(88, 101, 242, 0.03);
}

.promo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(88, 101, 242, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.promo-details {
    flex-grow: 1;
}

.promo-title {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.promo-price-row {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.promo-badge {
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.promo-btn {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.promo-card.active .promo-btn {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.checkout-form .input-wrap {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: border-color 0.2s;
}

.checkout-form .input-wrap:focus-within {
    border-color: var(--primary);
    background: #ffffff;
}

.checkout-form .input-wrap i {
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.checkout-form .input-wrap input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    font-family: inherit;
}

.checkout-form .input-wrap input::placeholder {
    color: #94a3b8;
}

/* Shake Animation for validation */
.shake {
    animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}

.shake-input {
    border-color: #ef4444 !important;
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* SEARCH PROFILE TWEAKS */
.search-input-group input {
    color: #ffffff !important;
}
.search-input-group .btn:hover {
    background: #7c3aed !important;
    transform: translateY(-1px);
}
.feather-spin {
    animation: feather-spin 1.2s infinite linear;
}
@keyframes feather-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}

/* =========================================
   SOCIAL PROOF NOTIFICATIONS (FOMO)
========================================= */

#social-proof-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9999;
    pointer-events: none;
}

.social-notification {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary);
    max-width: 320px;
    margin-top: 1rem;
    pointer-events: auto;
    
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.social-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1rem;
}

.social-content {
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.social-content strong {
    color: var(--primary);
}

.social-time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    #social-proof-container {
        left: 1rem;
        bottom: 1rem;
    }
    .social-notification {
        max-width: none;
        width: 100%;
    }
}

/* =========================================
   STEP-BY-STEP SELECTION UI
========================================= */
.step-title-premium {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}



.custom-order-section {
    padding: 6rem 0;
    background: #ffffff; /* Sincronizado com o resto do site */
    position: relative;
    overflow: hidden;
}

.custom-order-section h2 {
    color: #ffffff !important;
    margin-bottom: 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: white;
    border: none;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 150px;
    
    /* 3D Realistic Depth - Premium style */
    transform: translateY(-8px);
    box-shadow: 0 10px 0 #e2e8f0, 0 20px 40px rgba(0,0,0,0.06);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
    color: #1e293b;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 0 #cbd5e1, 0 30px 50px rgba(0,0,0,0.1);
}

.service-card:active, .service-card.active {
    transform: translateY(2px);
    box-shadow: 0 0px 0 transparent, 0 5px 15px rgba(0,0,0,0.05) !important;
}

/* Service Button Gradients - Clean & High Contrast */
/* Instagram Theme: Realistic 3D Gradient */
[data-platform="instagram"] .service-card.serv-seguidores,
[data-platform="instagram"] .service-card.serv-curtidas {
    background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%) !important;
    color: white !important;
    border: none;
    box-shadow: 0 10px 0 #9f1a54, 0 20px 40px rgba(221, 36, 118, 0.3);
}

[data-platform="instagram"] .service-card.serv-seguidores:hover,
[data-platform="instagram"] .service-card.serv-curtidas:hover {
    box-shadow: 0 12px 0 #831843, 0 30px 50px rgba(221, 36, 118, 0.4);
}

[data-platform="tiktok"] .service-card.serv-seguidores,
[data-platform="tiktok"] .service-card.serv-curtidas,
[data-platform="tiktok"] .service-card.serv-views {
    background: #000 !important;
    border: 2px solid #00f2ea !important;
    color: white !important;
    box-shadow: 0 10px 0 #008c87, 0 20px 40px rgba(0, 242, 234, 0.2);
}

[data-platform="tiktok"] .service-card:hover {
    box-shadow: 0 12px 0 #00706c, 0 30px 50px rgba(0, 242, 234, 0.3);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card .service-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    font-style: italic;
    margin-top: -2px;
}

.service-card .s-icon { display: none; } /* Using emojis in text now */

/* =========================================
   PREMIUM DARK/NEON PACKAGE CARDS
========================================= */

/* Base Layout for all cards */
.package-card {
    position: relative;
    background: #000;
    border-radius: 2rem;
    padding: 2.5rem 1.5rem 2rem;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent; /* Neon border set by JS/platform */
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    overflow: visible;
}

/* Platform-specific Neon Borders */
[data-platform="instagram"] .package-card { border-color: #d6249f; box-shadow: 0 0 20px rgba(214, 36, 159, 0.15), 0 20px 50px rgba(0,0,0,0.5); }
[data-platform="tiktok"] .package-card { border-color: #00f2fe; box-shadow: 0 0 20px rgba(0, 242, 254, 0.15), 0 20px 50px rgba(0,0,0,0.5); }

/* Hero Package Specific (Gold) */
.package-card.hero {
    border-color: #f9ce34 !important;
    border-width: 4px;
    box-shadow: 0 0 40px rgba(249, 206, 52, 0.3), 0 30px 60px rgba(0,0,0,0.6) !important;
    transform: scale(1.02);
}

.package-card:hover {
    transform: translateY(-10px) scale(1.03);
    z-index: 10;
}

/* Badge: OFERTA RELÂMPAGO */
.package-lightning-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f9ce34, #ee9617);
    color: #000;
    padding: 0.5rem 1.75rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(249, 206, 52, 0.4);
    white-space: nowrap;
    z-index: 5;
}

/* Card Header Info */
.package-top-info { margin-bottom: 1.5rem; }
.insta-logo-3d, .tiktok-logo-3d {
    width: 60px;
.social-time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    #social-proof-container {
        left: 1rem;
        bottom: 1rem;
    }
    .social-notification {
        max-width: none;
        width: 100%;
    }
}

/* =========================================
   STEP-BY-STEP SELECTION UI
========================================= */
.step-title-premium {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}



.custom-order-section {
    padding: 6rem 0;
    background: #ffffff; /* Sincronizado com o resto do site */
    position: relative;
    overflow: hidden;
}

.custom-order-section h2 {
    color: #ffffff !important;
    margin-bottom: 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: white;
    border: none;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 150px;
    
    /* 3D Realistic Depth - Premium style */
    transform: translateY(-8px);
    box-shadow: 0 10px 0 #e2e8f0, 0 20px 40px rgba(0,0,0,0.06);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
    color: #1e293b;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 0 #cbd5e1, 0 30px 50px rgba(0,0,0,0.1);
}

.service-card:active, .service-card.active {
    transform: translateY(2px);
    box-shadow: 0 0px 0 transparent, 0 5px 15px rgba(0,0,0,0.05) !important;
}

/* Service Button Gradients - Clean & High Contrast */
/* Instagram Theme: Realistic 3D Gradient */
[data-platform="instagram"] .service-card.serv-seguidores,
[data-platform="instagram"] .service-card.serv-curtidas {
    background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%) !important;
    color: white !important;
    border: none;
    box-shadow: 0 10px 0 #9f1a54, 0 20px 40px rgba(221, 36, 118, 0.3);
}

[data-platform="instagram"] .service-card.serv-seguidores:hover,
[data-platform="instagram"] .service-card.serv-curtidas:hover {
    box-shadow: 0 12px 0 #831843, 0 30px 50px rgba(221, 36, 118, 0.4);
}

[data-platform="tiktok"] .service-card.serv-seguidores,
[data-platform="tiktok"] .service-card.serv-curtidas,
[data-platform="tiktok"] .service-card.serv-views {
    background: #000 !important;
    border: 2px solid #00f2ea !important;
    color: white !important;
    box-shadow: 0 10px 0 #008c87, 0 20px 40px rgba(0, 242, 234, 0.2);
}

[data-platform="tiktok"] .service-card:hover {
    box-shadow: 0 12px 0 #00706c, 0 30px 50px rgba(0, 242, 234, 0.3);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card .service-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    font-style: italic;
    margin-top: -2px;
}

.service-card .s-icon { display: none; } /* Using emojis in text now */

/* =========================================
   PREMIUM DARK/NEON PACKAGE CARDS
========================================= */

/* Base Layout for all cards */
.package-card {
    position: relative;
    background: #000;
    border-radius: 2rem;
    padding: 2.5rem 1.5rem 2rem;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent; /* Neon border set by JS/platform */
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    overflow: visible;
}

/* Platform-specific Neon Borders */
[data-platform="instagram"] .package-card { border-color: #d6249f; box-shadow: 0 0 20px rgba(214, 36, 159, 0.15), 0 20px 50px rgba(0,0,0,0.5); }
[data-platform="tiktok"] .package-card { border-color: #00f2fe; box-shadow: 0 0 20px rgba(0, 242, 254, 0.15), 0 20px 50px rgba(0,0,0,0.5); }

/* Hero Package Specific (Gold) */
.package-card.hero {
    border-color: #f9ce34 !important;
    border-width: 4px;
    box-shadow: 0 0 40px rgba(249, 206, 52, 0.3), 0 30px 60px rgba(0,0,0,0.6) !important;
    transform: scale(1.02);
}

.package-card:hover {
    transform: translateY(-10px) scale(1.03);
    z-index: 10;
}

/* Badge: OFERTA RELÂMPAGO */
.package-lightning-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f9ce34, #ee9617);
    color: #000;
    padding: 0.5rem 1.75rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(249, 206, 52, 0.4);
    white-space: nowrap;
    z-index: 5;
}

/* Card Header Info */
.package-top-info { margin-bottom: 1.5rem; }
.insta-logo-3d, .tiktok-logo-3d {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 
        inset 0 0 15px rgba(255,255,255,0.05),
        0 10px 20px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.package-card:hover .insta-logo-3d, 
.package-card:hover .tiktok-logo-3d {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.1);
}

.insta-logo-3d i { 
    color: #fff;
    width: 34px; 
    height: 34px; 
    filter: drop-shadow(0 0 10px rgba(214, 36, 159, 0.8));
}

.tiktok-logo-3d svg { 
    width: 34px; 
    height: 34px; 
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.8));
}

/* Typography Impact */
.package-qty { 
    font-size: 3rem; 
    font-weight: 950; 
    line-height: 0.9; 
    margin-bottom: 0.5rem; 
    letter-spacing: -2px;
}

.hero .package-qty {
    font-size: 5.5rem;
}

.package-qty span { 
    font-size: 1.1rem; 
    font-weight: 800; 
    color: #94a3b8; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.hero .package-qty span {
    font-size: 1.5rem;
}

.package-subtitle { 
    color: #64748b; 
    font-size: 1rem; 
    font-weight: 600; 
    margin-top: 0.25rem;
}

.hero .package-subtitle {
    font-size: 1.4rem;
    color: #94a3b8;
}

/* Views Counter (FOMO) */
.package-views-fomo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.package-views-fomo i { width: 14px; height: 14px; }

/* Pricing Box */
.package-price-box { margin-bottom: 1.75rem; }
.price-row-old { color: #94a3b8; text-decoration: line-through; font-size: 0.95rem; margin-bottom: 0.15rem; }
.package-current-price { font-size: 3.5rem; font-weight: 950; letter-spacing: -2px; }
.package-current-price span { font-size: 1.5rem; font-weight: 800; }
.price-row-excl { color: #10b981; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; }

/* Features */
.package-features {
    flex-grow: 1; /* Pushes button to bottom */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 600;
}
.feature-item i { width: 16px; height: 16px; color: #f9ce34; flex-shrink: 0; }

/* Button CTA Yellow */
.btn-package {
    width: 100%;
    background: linear-gradient(90deg, #f9ce34, #ee9617);
    color: #000;
    font-size: 1.15rem;
    font-weight: 900;
    padding: 1.15rem;
    border-radius: 1rem;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(249, 206, 52, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto; /* Aligns buttons at the bottom */
}
.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 206, 52, 0.4);
    filter: brightness(1.1);
}

/* Footer Sales Count */
.package-footer-sales {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 700;
    margin-top: 1rem;
}
.package-footer-sales i { width: 14px; height: 14px; }

/* List of Extras */
.package-others-container {
    margin-top: 5rem;
    text-align: center;
    background: #0a0a0a;
    padding: 3rem 2rem;
    border-radius: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.package-others-title { color: white; font-size: 1.5rem; font-weight: 900; margin-bottom: 2rem; }
.others-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.other-item-btn {
    background: #111;
    color: #94a3b8;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #333;
    font-weight: 700;
    transition: all 0.2s;
    cursor: pointer;
}
.other-item-btn:hover { border-color: #f9ce34; color: white; background: #1a1a1a; }

/* Grid Layout Fixes */
.package-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.package-grid .package-card {
    flex: 1 1 260px; /* Symmetrical resizing */
    max-width: 300px;
    display: flex;
    flex-direction: column;
    min-height: 600px; /* Ensure equal height */
}

.package-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.hero .package-lightning-badge {
    background: linear-gradient(90deg, #f9ce34, #ee9617);
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(249, 206, 52, 0.4);
}

/* =========================================
   DESIGN FIEL – CÓPIA EXATA DO ANEXO
========================================= */

.package-card-fiel {
    position: relative;
    background: #0d0d0d;
    border-radius: 30px;
    padding: 3rem 1.75rem 2rem;
    margin: 0 auto 2.5rem;
    border: 2px solid #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 480px;
    overflow: visible;
    color: white;
}

[data-platform="tiktok"] .package-card-fiel {
    border-color: #00f2ea;
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.2);
}

.package-card-fiel.hero {
    border-color: #f9ce34;
    box-shadow: 0 0 40px rgba(249, 206, 52, 0.3);
}

.package-card-fiel:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 45px rgba(0, 255, 136, 0.35);
}

[data-platform="tiktok"] .package-card-fiel:hover {
    box-shadow: 0 0 45px rgba(0, 242, 234, 0.35);
}

.package-card-fiel.hero:hover {
    box-shadow: 0 0 55px rgba(249, 206, 52, 0.45);
}

/* Badge topo */
.package-badge-fiel {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f9ce34, #ee9617);
    color: #000;
    padding: 0.55rem 2rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(249,206,52,0.4);
}

/* Logo box */
.logo-box-fiel {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.logo-box-fiel.insta-bg {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.logo-box-fiel.tiktok-bg {
    background: #111;
    border: 2px solid rgba(0,242,234,0.3);
}

.logo-box-fiel i,
.logo-box-fiel svg {
    width: 48px;
    height: 48px;
    color: white;
}

/* Título quantidade */
.qty-title-fiel {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 0.5rem;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: capitalize;
}

/* Subtítulo */
.subtitle-fiel {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* Views pill */
.views-pill-fiel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    padding: 0.4rem 1.1rem;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239,68,68,0.2);
}

.views-pill-fiel i { width: 14px; height: 14px; }

/* Preço principal */
.price-main-fiel {
    font-size: 4rem;
    font-weight: 950;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 0.4rem;
}

/* Linha de preço antigo */
.old-price-line-fiel {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.old-price-line-fiel span:first-child {
    text-decoration: line-through;
    color: #f59e0b;
}

.old-price-line-fiel span:nth-child(2) {
    color: #10b981;
    font-weight: 800;
}

/* Botão COMPRAR AGORA */
.btn-buy-fiel {
    display: block;
    width: 100%;
    background: #f9ce34;
    color: #000000;
    padding: 1.2rem;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(249, 206, 52, 0.45);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.btn-buy-fiel:hover {
    transform: scale(1.03);
    filter: brightness(1.08);
    box-shadow: 0 12px 30px rgba(249, 206, 52, 0.55);
}

/* Rodapé vendas */
.sales-row-fiel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #64748b;
}

.sales-row-fiel i { width: 15px; height: 15px; }

/* Card content wrapper */
.card-content-fiel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Grid dos pacotes principais */
#package-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1rem 0 2rem;
}

#package-grid .package-card-fiel {
    flex: 1 1 260px;
    max-width: 280px;
}

/* Hero card centralizado e maior */
#package-hero .package-card-fiel {
    max-width: 480px;
    margin: 2rem auto;
    padding-top: 4rem;
}

@media (max-width: 768px) {
    #package-grid .package-card-fiel {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* =========================================
   CARD PREMIUM - CHECKOUT DIRETO
========================================= */
.card-input-wrapper {
    width: 100%;
    display: none !important; /* ESCONDIDO POR PADRÃO */
    opacity: 0;
    visibility: hidden;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.card-input-wrapper.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.card-input-container {
    background: rgba(40, 40, 40, 0.9) !important;
    border: 2px solid #f9ce34 !important; /* Borda dourada no campo */
    border-radius: 12px;
    padding: 5px 15px;
}

.card-input-field {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 10px 0 !important;
    text-align: center !important;
}

.card-btn-buy {
    width: 100% !important;
    background: linear-gradient(180deg, #f9ce34 0%, #ee9617 100%) !important;
    color: #000000 !important;
    font-weight: 900 !important;
    font-size: 1.3rem !important;
    padding: 1.25rem !important;
    border-radius: 16px !important;
    border: none !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 0 #b47d0b, 0 10px 20px rgba(0,0,0,0.3) !important;
    display: block !important;
    transform: translateY(-4px) !important;
    transition: all 0.1s ease !important;
}

.card-btn-buy:hover {
    filter: brightness(1.1);
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 0 #b47d0b, 0 8px 15px rgba(0,0,0,0.2) !important;
}

.card-btn-buy:active {
    transform: translateY(2px) !important;
    box-shadow: 0 0px 0 #b47d0b, 0 2px 5px rgba(0,0,0,0.1) !important;
}

/* Styles moved to top */
