/* =====================================================
   LANDING PAGE - ÁLBUM FIGURINHAS COPA 2026
   ===================================================== */

:root {
    /* Cores do Brasil */
    --primary-green: #009c3b;
    --primary-yellow: #ffdf00;
    --primary-blue: #002776;

    /* Variações */
    --green-light: #2ebb63;
    --green-dark: #006425;
    --yellow-dark: #d4ba00;

    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, var(--green-dark) 0%, var(--primary-green) 50%, var(--primary-blue) 100%);
    --gradient-gold: linear-gradient(135deg, var(--primary-yellow) 0%, #ffc107 100%);
    --gradient-green: linear-gradient(135deg, var(--green-light) 0%, var(--primary-green) 100%);
    --gradient-premium: linear-gradient(135deg, var(--primary-blue) 0%, #001a4d 100%);

    /* Textos & Fundos */
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-light: #ffffff;
    --text-gold: var(--primary-yellow);
    --bg-dark: #0a0a14;
    --bg-section: #f0fdf4;
    /* Fundo levemente esverdeado */
    --bg-card: #ffffff;

    /* Sombras Temáticas */
    --shadow-sm: 0 2px 8px rgba(0, 156, 59, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 156, 59, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 39, 118, 0.2);
    --shadow-gold: 0 8px 30px rgba(255, 223, 0, 0.4);
    --shadow-green: 0 8px 30px rgba(0, 156, 59, 0.4);

    /* Outros */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition-normal: 0.3s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: #050510;
    color: var(--text-primary);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(0, 156, 59, 0.15) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    overflow-x: hidden;
}

/* Premium Button Shine Effect */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s;
    transform: skewX(-20deg);
}

.btn:hover::after {
    left: 100%;
    transition: 0.7s;
}

.btn-cta-final {
    background: linear-gradient(45deg, #FFC107, #FFD700, #FFA000);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    letter-spacing: -0.04em;
}

.section-tag {
    letter-spacing: 0.1em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */
}

.gradient-text-light {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.gold {
    color: var(--text-gold);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: #F4F3F8;
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0, 156, 59, 0.1);
    /* Subtle green border */
    box-shadow: 0 4px 20px rgba(255, 237, 0, 0.3);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease, padding 0.3s ease;
}

.header.hide {
    transform: translateY(-100%);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--primary-blue);
    /* Blue text on yellow bg */
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-cta {
    background: var(--gradient-green);
    /* Green button on yellow bg */
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 156, 59, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 156, 59, 0.4);
    color: white;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #746d0f;
    /* Blue hamburger menu */
    border-radius: 4px;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at center, #002e14 0%, #001a0a 100%);
    /* Deep dark green */
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-title {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.5);
    backdrop-filter: blur(5px);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 151, 57, 0.1) 0%, transparent 50%);
}

.hero-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    color: var(--text-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: var(--text-gold);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-subtitle strong {
    color: var(--text-gold);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-gold);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-showcase {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.album-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    filter: blur(40px);
}

.album-main {
    position: relative;
    z-index: 5;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.sticker {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.sticker-inner {
    font-size: 1.8rem;
}

.sticker-1 {
    top: 10%;
    right: -5%;
}

.sticker-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 0.5s;
}

.sticker-3 {
    bottom: -5%;
    right: 20%;
    animation-delay: 1s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.scroll-arrow {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin: 10px auto 0;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 18px;
        opacity: 0.3;
    }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.icon {
    width: 1.2em;
    height: 1.2em;
    stroke-width: 2;
    /* Adjust for stroke icons */
    fill: none;
    stroke: currentColor;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 2px;
    /* Visual alignment */
}

.icon-fill {
    fill: currentColor;
    stroke: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--gradient-green);
    color: var(--text-light);
    box-shadow: var(--shadow-green);
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    border-color: var(--text-gold);
    color: var(--text-gold);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--text-primary);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-cta-final {
    background: var(--gradient-gold);
    color: var(--text-primary);
    padding: 20px 48px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
}

.btn-cta-final:hover {
    transform: scale(1.05);
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--text-light);
}

.section-tag {
    display: inline-block;
    background: rgba(0, 156, 59, 0.15);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 156, 59, 0.2);
}

.section-header.light .section-tag {
    background: rgba(255, 223, 0, 0.2);
    color: var(--primary-yellow);
    border-color: rgba(255, 223, 0, 0.3);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ABOUT */
.about {
    padding: 100px 0;
    background: var(--bg-section);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 156, 59, 0.15);
}

.about-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: rgba(0, 156, 59, 0.1);
    border-radius: var(--radius-md);
    border: 2px solid rgba(0, 156, 59, 0.2);
    color: var(--primary-green);
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.about-nostalgia {
    background: var(--gradient-premium);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    color: var(--text-light);
    border: 1px solid rgba(255, 223, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 39, 118, 0.4);
}

.nostalgia-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.about-nostalgia p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about-nostalgia strong {
    color: var(--text-gold);
}

/* MODELS */
.models {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, #e8f4f8 100%);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.model-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-normal);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.model-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-green);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.model-badge.premium {
    background: var(--gradient-gold);
    color: var(--text-primary);
}

.model-premium {
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(255, 223, 0, 0.2);
}

.model-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

.model-image {
    padding: 40px;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.model-image img {
    max-height: 280px;
    object-fit: contain;
    margin: 0 auto;
    transition: transform var(--transition-normal);
}

.model-card:hover .model-image img {
    transform: scale(1.05);
}

.model-content {
    padding: 30px;
}

.model-title {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.model-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.model-features {
    margin-bottom: 24px;
}

.model-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.check {
    color: var(--primary-green);
    font-weight: bold;
}

.check.gold {
    color: var(--primary-gold);
}

.model-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 20px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
}

.price-value {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
}

.price-cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.model-premium .price-currency,
.model-premium .price-value,
.model-premium .price-cents {
    color: #b8860b;
}

/* PACKAGES */
.packages {
    padding: 100px 0;
    background: var(--gradient-premium);
    position: relative;
    overflow: hidden;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.package-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.package-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-green);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
}

.package-ribbon.gold {
    background: var(--gradient-gold);
    color: var(--text-primary);
}

.package-popular {
    border-color: var(--primary-green);
    box-shadow: 0 0 30px rgba(0, 151, 57, 0.2);
}

.package-best {
    border-color: var(--primary-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.package-header {
    padding: 30px;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.package-header img {
    max-height: 120px;
    object-fit: contain;
    margin: 0 auto;
}

.package-qty {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    box-shadow: var(--shadow-gold);
}

.package-content {
    padding: 40px 30px 30px;
    text-align: center;
    color: var(--text-light);
}

.package-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.package-items {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.package-price {
    margin-bottom: 8px;
}

.price-old {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-right: 10px;
}

.price-current {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-gold);
}

.package-unit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    display: block;
}

.package-save {
    background: rgba(0, 151, 57, 0.2);
    color: #4ade80;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.package-save.highlight {
    background: rgba(255, 215, 0, 0.2);
    color: var(--text-gold);
}

.packages-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.info-icon {
    font-size: 1.3rem;
}

/* URGENCY */
.urgency {
    padding: 100px 0;
    background: var(--bg-section);
}

.urgency-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.urgency-tag {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.urgency-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.urgency-content h2 .highlight {
    color: #dc2626;
}

.urgency-reasons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reason {
    display: flex;
    gap: 16px;
    align-items: start;
}

.reason-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0, 156, 59, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(0, 156, 59, 0.3);
}

.reason-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.reason-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.urgency-counter {
    position: sticky;
    top: 120px;
}

.counter-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.counter-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.stock-bar {
    height: 12px;
    background: #fee2e2;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 12px;
}

.stock-fill {
    height: 100%;
    width: var(--stock);
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: var(--radius-full);
    animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.stock-text {
    font-size: 0.95rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.countdown {
    margin-bottom: 24px;
}

.countdown p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.countdown-item {
    background: var(--gradient-premium);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    min-width: 65px;
}

.countdown-value {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-gold);
}

.countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.countdown-separator {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #e8f4f8 0%, var(--bg-section) 100%);
    overflow: hidden;
}

.testimonials-slider {
    margin-bottom: 60px;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 380px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.8rem;
    color: #718096;
}

.verified {
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
}

.trust-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* GUARANTEE */
.guarantee {
    padding: 100px 0;
    background: var(--bg-card);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.guarantee-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--bg-section);
    transition: all var(--transition-normal);
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--primary-green);
}

.guarantee-icon svg {
    width: 100%;
    height: 100%;
}

.guarantee-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.guarantee-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.payment-methods {
    text-align: center;
}

.payment-methods p {
    color: #718096;
    margin-bottom: 16px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 60px;
    height: 40px;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.payment-icon svg {
    width: 32px;
    height: 32px;
}

/* FINAL CTA */
.final-cta {
    padding: 120px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(0, 151, 57, 0.1) 0%, transparent 50%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.final-cta-content>p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
}

.final-cta-products {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.mini-product {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mini-product.premium {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.1);
}

.mini-name {
    font-size: 0.95rem;
}

.mini-price {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-gold);
}

.final-trust {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 24px;
}

/* FOOTER */
.footer {
    background: #020205;
    /* Blacker background */
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-gold);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: rgb(255, 255, 255);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 0.8rem !important;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .album-showcase {
        max-width: 350px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .models-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .urgency-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .urgency-counter {
        position: static;
    }

    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .btn-lg {
        width: 100%;
        /* Full width buttons on mobile */
        justify-content: center;
        padding: 20px;
        /* Larger touch area */
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-nostalgia {
        padding: 30px;
    }

    .packages-info {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .trust-badges {
        gap: 30px;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .final-cta-products {
        flex-direction: column;
        align-items: center;
    }

    .mini-product {
        width: 100%;
        max-width: 280px;
    }

    .btn-cta-final {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 24px;
    }

    .sticker {
        width: 45px;
        height: 45px;
    }

    .sticker-inner {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .countdown-item {
        padding: 10px 14px;
        min-width: 55px;
    }

    .countdown-value {
        font-size: 1.4rem;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }
}