/* ── GLOBAL STYLE DESIGN SYSTEM ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #050911;
    --bg-deep: #020408;
    --bg-card: #0b1220;
    --bg-card-hover: #121c2f;
    --green: #00ff87;
    --green-hover: #00e676;
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.2);
    --white: #ffffff;
    --muted: #8e9bb0;
    --border-color: rgba(255, 255, 255, 0.05);
    --font-display: 'Bebas Neue', sans-serif;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --grad-green: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
    --grad-gold: linear-gradient(135deg, #ffea00 0%, #ff8800 100%);
    --grad-dark: linear-gradient(180deg, #0b1220 0%, #050911 100%);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.02em;
}

p {
    font-family: var(--font-body);
    color: var(--muted);
    font-size: 15px;
}

a {
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.g-text {
    background: var(--grad-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.div-line {
    width: 100%;
    height: 1px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    margin: 60px 0;
}

.sec-pad {
    padding: 80px 0;
}

.sec-head {
    margin-bottom: 48px;
}

.sec-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.sec-title {
    font-size: clamp(32px, 5vw, 44px);
    line-height: 1.2;
    margin-bottom: 12px;
}

.sec-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── BUTTONS ── */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00ff87 0%, #00b0ff 100%);
    color: #02050b;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 255, 135, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 255, 135, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.3);
}

.cta-btn:active {
    transform: translateY(0);
}

/* ── ANNOUNCEMENT TICKER ── */
.top-announcement {
    background-color: var(--bg-deep);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

/* ── MAIN NAVBAR ── */
.main-header {
    background-color: rgba(5, 9, 17, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-emoji {
    font-size: 24px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-menu a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-cta {
    background-color: var(--green);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 255, 135, 0.2);
}

.nav-cta:hover {
    background-color: var(--green-hover);
    transform: translateY(-1px);
}

/* ── HERO SECTION ── */
.hero {
    position: relative;
    padding: 100px 0 60px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/background_hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px) brightness(0.5);
    z-index: 0;
    transform: scale(1.05);
}

.hero-bg-glow, .hero-grid {
    position: relative;
    z-index: 2;
}

.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-official {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(0, 255, 135, 0.08);
    border: 1px solid rgba(0, 255, 135, 0.2);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--green);
    border-radius: 50%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 500px;
}

/* Benefits Mini List */
.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin-bottom: 40px;
}

.hb-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hb-icon {
    font-size: 24px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.hb-text {
    display: flex;
    flex-direction: column;
}

.hb-text strong {
    font-size: 15px;
    color: var(--white);
}

.hb-text span {
    font-size: 13px;
    color: var(--muted);
}

.hero-cta {
    font-size: 18px;
    padding: 20px 48px;
    margin-bottom: 24px;
}

.hero-trust {
    display: flex;
    gap: 18px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
}

/* Hero Collage Graphic */
.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.12) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.gold-badge-oficial {
    position: absolute;
    top: 0;
    right: 20px;
    background: radial-gradient(circle, #ffea00 0%, #e65c00 100%);
    color: #000;
    border-radius: 50%;
    width: 88px;
    height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(255, 136, 0, 0.3);
    font-family: var(--font-head);
    transform: rotate(10deg);
}

.gold-badge-oficial .stars {
    font-size: 8px;
    margin-bottom: 2px;
}

.gold-badge-oficial strong {
    font-size: 18px;
    line-height: 1;
}

.gold-badge-oficial span {
    font-size: 8px;
    font-weight: 700;
}

.mockup-stack {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-album {
    max-width: 520px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Flying items in Collage */
.flying-card {
    position: absolute;
    background-color: rgba(11, 18, 32, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 14px;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    font-size: 12px;
    font-weight: 700;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fc-1 {
    top: 50px;
    left: -40px;
    transform: rotate(-12deg);
    animation: floatCard1 5s ease-in-out infinite alternate;
}

.fc-2 {
    top: 180px;
    right: -40px;
    transform: rotate(15deg);
    animation: floatCard2 6s ease-in-out infinite alternate;
}

.fc-3 {
    bottom: 40px;
    left: -30px;
    transform: rotate(-8deg);
    animation: floatCard3 7s ease-in-out infinite alternate;
}

@keyframes floatCard1 {
    0% { transform: translateY(0px) rotate(-12deg); }
    100% { transform: translateY(-12px) rotate(-9deg); }
}

@keyframes floatCard2 {
    0% { transform: translateY(0px) rotate(15deg); }
    100% { transform: translateY(-15px) rotate(11deg); }
}

@keyframes floatCard3 {
    0% { transform: translateY(0px) rotate(-8deg); }
    100% { transform: translateY(-10px) rotate(-5deg); }
}

.flying-pack {
    position: absolute;
    background: linear-gradient(135deg, #0b1220 0%, #152033 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    width: 85px;
    height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    z-index: 2;
    text-align: center;
}

.pack-blue {
    top: 80px;
    right: -30px;
    border-top: 4px solid #00b0ff;
    transform: rotate(8deg);
    animation: floatPack1 6s ease-in-out infinite alternate;
}

.pack-red {
    bottom: 80px;
    left: -40px;
    border-top: 4px solid #ff1744;
    transform: rotate(-15deg);
    animation: floatPack2 5.5s ease-in-out infinite alternate;
}

@keyframes floatPack1 {
    0% { transform: translateY(0px) rotate(8deg); }
    100% { transform: translateY(-14px) rotate(11deg); }
}

@keyframes floatPack2 {
    0% { transform: translateY(0px) rotate(-15deg); }
    100% { transform: translateY(-12px) rotate(-12deg); }
}


/* ── WHAT YOU GET ── */
.items-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.item-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.item-card:hover {
    background-color: var(--bg-card-hover);
    border-color: rgba(0, 255, 135, 0.2);
    transform: translateY(-4px);
}

.card-image-wrap {
    height: 120px;
    margin-bottom: 18px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.flex-center {
    align-items: center !important;
}

.card-img-thumb {
    max-height: 100%;
    width: auto;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
}

.alt-thumb {
    transform: rotate(-5deg);
}

/* Mini Sticker thumbnails inside cards */
.sticker-thumb-group {
    display: flex;
    position: relative;
    width: 100px;
    height: 80px;
}

.st-thumb {
    width: 44px;
    height: 58px;
    background-color: #121c2f;
    border: 1px solid var(--gold);
    border-radius: 4px;
    position: absolute;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.st-1 {
    left: 0;
    transform: rotate(-10deg);
    z-index: 1;
}

.st-2 {
    left: 28px;
    z-index: 3;
    top: -5px;
    border-color: var(--green);
}

.st-3 {
    right: 0;
    transform: rotate(10deg);
    z-index: 2;
}

.card-svg-icon {
    width: 56px;
    height: 56px;
    stroke: var(--gold);
}

.card-svg-icon.c-green {
    stroke: var(--green);
}

.item-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.item-card p {
    font-size: 13px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.item-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
    margin: 0 auto;
}

.badge-gold {
    background-color: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

.badge-green {
    background-color: rgba(0, 255, 135, 0.08);
    border: 1px solid rgba(0, 255, 135, 0.2);
    color: var(--green);
}


/* ── WHY IT'S PERFECT FOR YOU ── */
.perfect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

.check-icon {
    width: 22px;
    height: 22px;
    background-color: var(--green);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.perfect-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trophy-base-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.2) 0%, rgba(0,0,0,0) 70%);
    bottom: -40px;
    z-index: 1;
}

.trophy-img {
    max-width: 220px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: floatTrophy 6s ease-in-out infinite;
}

@keyframes floatTrophy {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.perfect-right {
    display: flex;
    justify-content: flex-end;
}

.goal-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 340px;
}

.goal-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.goal-card p {
    font-size: 13px;
    margin-bottom: 16px;
}

.goal-image-wrap {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.goal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ── STEPS SECTION ── */
.steps-container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.step-icon-circle {
    width: 72px;
    height: 72px;
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
}

.step-bubble {
    width: 22px;
    height: 22px;
    background-color: var(--green);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -2px;
    right: -2px;
}

.step-card h5 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    max-width: 130px;
    color: var(--white);
}

.step-arrow {
    font-size: 20px;
    color: var(--border-color);
    transition: color 0.6s ease, text-shadow 0.6s ease;
}

.step-arrow.active {
    color: var(--green);
    text-shadow: 0 0 10px var(--green);
}

.steps-bullet-card {
    background-color: var(--bg-card);
    border: 2px dashed rgba(0, 255, 135, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 350px;
}

.bullet-bolt-circle {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 255, 135, 0.1);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.2);
}

.steps-bullet-card p {
    font-size: 13px;
    color: var(--muted);
}


/* ── TESTIMONIALS SECTION ── */
.testimonials-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.testimonials-slider-container {
    overflow: hidden;
    flex-grow: 1;
}

.testimonials-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.testi-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    flex: 1 0 calc(33.333% - 14px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testi-card .stars {
    color: var(--gold);
    font-size: 14px;
}

.testi-text {
    font-size: 14px;
    color: var(--white);
    font-style: italic;
    flex-grow: 1;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    object-fit: cover;
}

.av-1 { background: var(--grad-green); }
.av-2 { background: var(--grad-gold); }
.av-3 { background: linear-gradient(135deg, #00b0ff 0%, #00e5ff 100%); }

.testi-user strong {
    font-size: 14px;
    display: block;
    color: var(--white);
}

.testi-user span {
    font-size: 12px;
    color: var(--muted);
}

.carousel-nav {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.carousel-nav:hover {
    background-color: var(--bg-card-hover);
    color: var(--green);
}


/* ── OFFER & FAQ SECTION ── */
.offer-faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr;
    gap: 36px;
    align-items: center;
}

.checkout-offer-card {
    background-color: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 36px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.05);
}

.offer-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-gold);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 136, 0, 0.3);
}

.price-box {
    margin-bottom: 24px;
}

.old-price {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.new-price {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 0 15px rgba(0, 255, 135, 0.2);
}

.sub-price {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.checkout-offer-card .cta-btn {
    margin-bottom: 20px;
}

.full-width {
    width: 100%;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pay-badge {
    font-size: 11px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--muted);
}

/* Guarantee Column */
.guarantee-seal-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.seal-img {
    max-width: 130px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 15px rgba(255, 215, 0, 0.15));
}

.guarantee-seal-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 8px;
}

.guarantee-seal-col p {
    font-size: 12px;
    max-width: 180px;
}

/* Accordion FAQ */
.faq-accordion-col {
    display: flex;
    flex-direction: column;
}

.faq-head-title {
    font-size: 28px;
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q:hover {
    color: var(--green);
}

.faq-icon {
    font-size: 16px;
    color: var(--muted);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-a p {
    padding: 0 20px 18px 20px;
    font-size: 13px;
    color: var(--muted);
}


.main-footer-wrapper {
    position: relative;
    background-image: url('img/banner_inferior.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid var(--border-color);
}

.footer-cta-sec {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.footer-field-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 255, 135, 0.1) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.footer-cta-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.fc-left-decor {
    display: flex;
    justify-content: flex-start;
}

.footer-ball-img {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 255, 135, 0.1));
}

.fc-right-decor {
    display: flex;
    justify-content: flex-end;
}

.footer-trophy-img {
    max-width: 130px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(255, 215, 0, 0.1));
}

.fc-center-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.fc-center-content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 28px;
}


/* ── BOTTOM FOOTER ── */
.bottom-footer {
    background-color: transparent;
    padding: 40px 0;
}

.bottom-footer p {
    font-size: 13px;
    margin-bottom: 8px;
}

.bottom-footer .small-text {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--white);
}


/* ── RESPONSIVE DESIGN (MEDIA QUERIES) ── */
@media (max-width: 1024px) {
    .items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .offer-faq-grid {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .guarantee-seal-col {
        grid-row: 2;
        grid-column: 1 / span 2;
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* simple hidden links on mobile for cleaner nav */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-benefits {
        justify-content: center;
        max-width: 440px;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-graphic {
        margin-top: 40px;
    }
    
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .perfect-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .checklist li {
        justify-content: center;
    }
    
    .steps-container-flex {
        flex-direction: column;
    }
    
    .steps-flow {
        flex-direction: column;
        gap: 24px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .testi-card {
        flex: 1 0 100%;
    }
    
    .offer-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-seal-col {
        grid-row: unset;
        grid-column: unset;
        flex-direction: column;
    }
    
    .footer-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .fc-left-decor, .fc-right-decor {
        display: none;
    }
    
    .ball-track-wrapper {
        display: none;
    }
}

@media (max-width: 480px) {
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .nav-cta.cta-bar {
        min-width: unset;
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .hero-title {
        font-size: 38px;
    }
}

/* ── BALL TRACK & ROLLING ANIMATION ── */
.ball-track-wrapper {
    flex-grow: 1;
    margin: 0 -50px 0 30px;
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.ball-track-line {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 0 6px rgba(0, 255, 135, 0.1);
}

.rolling-ball {
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
    z-index: 5;
}

@keyframes rollAcross {
    0% {
        left: 0%;
        transform: rotate(0deg);
    }
    92% {
        left: calc(100% - 25px);
        transform: rotate(1440deg);
    }
    100% {
        left: calc(100% - 25px);
        transform: rotate(1440deg) scale(1.1);
    }
}

/* Wide CTA Bar */
.nav-cta.cta-bar {
    min-width: 220px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, #00ff87 0%, #00b0ff 100%);
    box-shadow: 0 0 20px rgba(0, 255, 135, 0.3);
    position: relative;
    z-index: 10;
    transition: all 0.2s ease-in-out;
}

/* Collision wiggling animation triggered by JS after 3 seconds */
.nav-cta.cta-bar.hit {
    animation: hitWiggle 0.4s ease-in-out;
    box-shadow: 0 0 35px var(--green);
}

@keyframes hitWiggle {
    0% { transform: scale(1); }
    20% { transform: scale(1.08) rotate(2deg); }
    40% { transform: scale(1.08) rotate(-2deg); }
    60% { transform: scale(1.04) rotate(1deg); }
    80% { transform: scale(1.02) rotate(-1deg); }
    100% { transform: scale(1) rotate(0); }
}

/* Celebration Stickers Confetti */
.celebration-sticker {
    position: fixed;
    bottom: -150px;
    width: 75px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    z-index: 9999;
    pointer-events: none;
    animation: fruitNinjaToss 2.8s forwards;
}

@keyframes fruitNinjaToss {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
        animation-timing-function: ease-out;
    }
    50% {
        transform: translate(calc(var(--drift) * 0.5), -115vh) rotate(calc(var(--rot) * 0.5));
        opacity: 1;
        animation-timing-function: ease-in;
    }
    100% {
        transform: translate(var(--drift), 20vh) rotate(var(--rot));
        opacity: 0;
    }
}

/* ── SHINING CTA BUTTON FOR CHECKOUT & FOOTER ── */
.cta-btn.cta-shine {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00ff87, #00cc6a);
    color: #000;
    font-family: var(--font-head);
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 700;
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    box-shadow: 0 0 30px rgba(0, 255, 135, 0.4), 0 8px 20px rgba(0, 0, 0, 0.4);
    animation: cta-pulse 2.2s ease-in-out infinite;
    border: none;
    cursor: pointer;
}

.cta-btn.cta-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite ease-in-out;
}

.cta-btn.cta-shine:hover {
    transform: translateY(-4px) scale(1.05);
    animation: none; /* stop pulse on hover */
    box-shadow: 0 0 50px rgba(0, 255, 135, 0.7), 0 12px 30px rgba(0, 0, 0, 0.6);
}

@keyframes shine {
    0% {
        left: -60%;
    }
    15% {
        left: 130%;
    }
    100% {
        left: 130%;
    }
}

@keyframes cta-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(0, 255, 135, 0.3), 0 8px 20px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 45px rgba(0, 255, 135, 0.6), 0 12px 30px rgba(0, 0, 0, 0.5);
    }
}

/* ── URGENCY COUNTDOWN STYLES ── */
.top-announcement {
    background-color: var(--bg-deep);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    text-align: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 101;
}

.top-announcement .announcement-text {
    font-family: var(--font-body);
    font-weight: 500;
}

.top-announcement .announcement-text strong {
    color: var(--gold);
}

.announcement-timer {
    font-family: var(--font-head);
    font-size: 16px;
    color: var(--green);
    background-color: rgba(0, 255, 135, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 135, 0.2);
    font-weight: 700;
    letter-spacing: 0.05em;
    min-width: 50px;
}

/* Hero Urgency Box */
.hero-urgency-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(11, 18, 32, 0.6);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 12px;
    margin-top: 10px;
    margin-bottom: 24px;
    max-width: fit-content;
}

.urgency-fire {
    font-size: 18px;
    animation: firePulse 1.2s infinite alternate;
}

@keyframes firePulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px #ff4500); }
    100% { transform: scale(1.15); filter: drop-shadow(0 0 8px #ff8c00); }
}

.urgency-text {
    font-size: 13px;
    color: var(--muted);
}

.urgency-text strong {
    color: var(--white);
}

.urgency-timer {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    background-color: rgba(0, 255, 135, 0.1);
    border: 1px solid rgba(0, 255, 135, 0.3);
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

/* Checkout Timer Container */
.checkout-timer-container {
    background-color: rgba(2, 4, 8, 0.5);
    border: 1px dashed rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: center;
}

.checkout-timer-title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.checkout-timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.time-val {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 255, 135, 0.3);
}

.time-label {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 2px;
}

.time-separator {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.6;
    transform: translateY(-4px);
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

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

/* Delayed transitions for grid or flex elements */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
