/* ==========================================================================
   CSS Variables & Base Setup
   ========================================================================== */
:root {
    /* Colors */
    --primary: #9333ea;
    /* Purple */
    --primary-light: #a855f7;
    --primary-dark: #7e22ce;

    --secondary: #f97316;
    /* Orange */
    --secondary-light: #fb923c;
    --secondary-dark: #ea580c;

    --accent: #ec4899;
    /* Pink */
    --success: #22c55e;
    /* Green */

    --text-main: #1f2937;
    --text-muted: #4b5563;
    --text-light: #f3f4f6;

    --bg-main: #ffffff;
    --bg-alt: #f9fafb;
    --bg-dark: #111827;

    /* Typography */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing & Layout */
    --container-padding: 1.5rem;
    --section-spacing: 4rem;
    --border-radius: 1.5rem;
    --border-radius-sm: 0.75rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Highlights */
.highlight-yellow {
    color: #fbbf24;
}

.highlight-primary {
    color: var(--primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    /* Pill shape */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
}

@media (min-width: 768px) {
    .cta-button {
        width: auto;
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(249, 115, 22, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--bg-main);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.hero h1,
.hero p {
    color: white;
}

.hero .headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero .subheadline {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero .headline {
    order: 1;
}

.hero .subheadline {
    order: 2;
}

.hero-carousel-wrapper {
    order: 3;
    margin: 2rem 0;
    width: 100%;
    overflow: hidden;
}

.cta-hero {
    order: 4;
}

.hero-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scrollbar-width: thin;
}

.hero-carousel::-webkit-scrollbar {
    height: 6px;
}

.hero-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

.hero-carousel .hero-image {
    scroll-snap-align: center;
    flex: 0 0 85%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
    background: #e5e7eb;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-main);
}

.benefits-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-title {
    color: #1f2937;
    font-size: 2.25rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.highlight-pill {
    display: inline-block;
    background-color: #ffedd5;
    color: #f97316;
    padding: 0.1rem 1rem;
    border-radius: 12px;
    transform: rotate(-3deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.title-underline {
    width: 200px;
    height: 8px;
    background: linear-gradient(to right, #fcd34d, #f97316);
    border-radius: 4px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--bg-alt);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
}

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

/* ==========================================================================
   Steps Section
   ========================================================================== */
.steps {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-alt);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -4rem auto 1rem;
    border: 4px solid var(--bg-alt);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-main);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: #d1d5db;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
    display: block;
}

.gallery-item.reels-style {
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.reels-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: max-content;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
}

.profile-name {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.verified {
    color: white;
    background: #0095f6;
    border-radius: 50%;
    font-size: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin-left: 4px;
}

.reels-footer {
    display: flex;
    justify-content: center;
}

.reels-btn {
    background: var(--secondary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    transition: transform 0.3s ease;
}

.gallery-item.reels-style:hover .reels-btn {
    transform: scale(1.05);
}

/* Story Additions */
.story-container {
    position: relative;
    padding: 0 !important;
    border: none !important;
}

.story-images {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: inherit;
    overflow: hidden;
}

.story-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-img.active {
    opacity: 1;
}

.story-ui {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.5) 100%);
    border-radius: inherit;
}

.story-bars {
    display: flex;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.story-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    overflow: hidden;
}

.story-progress {
    height: 100%;
    width: 0%;
    background: white;
    transition: width 0.05s linear;
}

.story-progress.filled {
    width: 100%;
    transition: none;
}

.spacer {
    flex-grow: 1;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item span {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Bonus Section
   ========================================================================== */
.bonus {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to bottom, #ff715b, #ff513f);
    /* Orange/Red gradient */
}

.bonus-main-title {
    color: white !important;
    line-height: 1.5;
}

.bonus-highlight-pill {
    display: inline-block;
    background-color: #fde047;
    color: #1e3a8a;
    padding: 0.25rem 1.5rem;
    border-radius: 12px;
    transform: rotate(-2deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.bonus-card {
    background: white;
    border: 6px solid #fde047;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.top-badge {
    position: absolute;
    top: -24px;
    right: -10px;
    background: var(--success);
    color: white;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
    z-index: 2;
}

.bonus-card img {
    border-radius: 12px;
    margin-bottom: 1.5rem;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #f3f4f6;
}

.bonus-title-theme {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.dino-theme .bonus-title-theme {
    color: #f97316;
}

.castelo-theme .bonus-title-theme {
    color: #ec4899;
}

.espacial-theme .bonus-title-theme {
    color: #3b82f6;
}

.bonus-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.bonus-price-box {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bonus-price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.25rem;
    font-weight: 700;
}

.bonus-price-today {
    color: var(--success);
    font-weight: 800;
    font-size: 1.25rem;
}

.bonus-price-free {
    width: 100%;
    color: var(--success);
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.testimonial-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-light);
}

.testimonial-card .stars {
    color: #fbbf24;
    /* Yellow */
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    flex-grow: 1;
}

.testimonial-card .author {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-inline: auto;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--bg-alt);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    border: 2px solid var(--secondary);
    transform: scale(1);
    background: linear-gradient(to bottom, #fff, #fff7ed);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--primary-dark);
}

.price-container {
    text-align: center;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.125rem;
}

.new-price {
    font-size: 1.5rem;
    color: var(--text-main);
}

.new-price strong {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.highlight-price .new-price strong {
    color: var(--success);
}

.bonus-badge {
    text-align: center;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.features li.negative {
    color: var(--text-muted);
    opacity: 0.7;
}

.buy-button {
    display: block;
    text-align: center;
    padding: 1.25rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.buy-button.secondary {
    background: var(--bg-alt);
    color: var(--text-main);
    border: 1px solid #d1d5db;
}

.buy-button.secondary:hover {
    background: #e5e7eb;
}

.buy-button.pulse {
    background: var(--success);
    color: white;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    max-width: 800px;
    margin-inline: auto;
    border: 2px dashed #22c55e;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15);
}

@media (min-width: 768px) {
    .guarantee {
        flex-direction: row;
        text-align: left;
    }
}

.guarantee-img {
    width: 130px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.guarantee-content h4 {
    margin-bottom: 0.5rem;
    color: #166534;
    font-size: 1.5rem;
    font-weight: 800;
}

.guarantee-content p {
    color: #15803d;
    font-size: 1.05rem;
    line-height: 1.5;
}

.guarantee-content strong {
    display: block;
    margin-top: 0.5rem;
    font-weight: 800;
    color: #16a34a;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-alt);
}

.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    background: white;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    /* Arbitrary large number */
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.accordion-header .icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.site-footer p {
    opacity: 0.6;
    font-size: 0.875rem;
}

/* ==========================================================================
   Premium Card Redesign
   ========================================================================== */
.pricing-card.premium-redesign {
    background: white;
    border: 5px solid transparent;
    border-radius: 20px;
    background-image: linear-gradient(white, white), linear-gradient(to bottom, #f97316, #ec4899);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 3rem 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.premium-top-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #fcd34d;
    color: #111827;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.premium-title-pill {
    background: #fff7ed;
    color: #ea580c;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    padding: 0.75rem;
    border-radius: 12px;
}

.premium-redesign .price-container {
    margin: 0;
}

.premium-redesign .old-price {
    color: #9ca3af;
    font-weight: 600;
}

.premium-redesign .new-price {
    color: #111827;
    font-weight: 800;
}

.premium-acervo {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    padding: 1.5rem;
}

.acervo-header,
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.green-check {
    background: var(--success);
    color: white;
}

.blue-check {
    background: #dbeafe;
    color: #3b82f6;
}

.acervo-title,
.feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.acervo-title strong,
.feature-text strong {
    color: #111827;
    font-size: 1.1rem;
}

.acervo-title span {
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-text span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.acervo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.acervo-pill {
    background: white;
    border: 1px solid #d1fae5;
    color: var(--success);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.premium-features-list {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.premium-features-list .feature-item {
    margin-bottom: 0;
}

.premium-bonus-section {
    border: 2px dashed #fbbf24;
    border-radius: 16px;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    background: #fffbeb;
}

.bonus-title {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fffbeb;
    color: #ea580c;
    font-weight: 800;
    padding: 0 1rem;
    white-space: nowrap;
}

.bonus-gratis-badge {
    position: absolute;
    top: -12px;
    right: 12px;
    background: var(--success);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bonus-item {
    background: white;
    border: 1px solid #fef3c7;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #4b5563;
}

.bonus-old-price {
    text-decoration: line-through;
    color: #9ca3af;
}

.premium-btn {
    background: var(--success);
    color: white;
    border-radius: 16px;
    padding: 1.25rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Fixed Mobile CTA
   ========================================================================== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: white;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 50;
    display: block;
    /* Visible by default on mobile */
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.fixed-cta.visible {
    transform: translateY(0);
}

.fixed-cta .cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .fixed-cta {
        display: none;
        /* Hide on desktop */
    }
}

/* ==========================================================================
   Media Queries (Tablet and Desktop)
   ========================================================================== */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-carousel .hero-image {
        flex: 0 0 45%;
    }

    .hero .headline {
        font-size: 4rem;
    }

    .hero .subheadline {
        font-size: 1.5rem;
    }

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

    .benefits-grid .full-width {
        grid-column: span 2;
    }

    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
    }

    .pricing-card.premium {
        transform: scale(1.05);
        z-index: 10;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid .full-width {
        grid-column: span 4;
        max-width: 600px;
        margin: 0 auto;
    }
}

.local-currency-msg {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted, #666);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ==========================================================================
   Awareness Section
   ========================================================================== */
.awareness {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, #fdf4ff, #fae8ff);
    border-top: 2px dashed var(--primary-light);
    border-bottom: 2px dashed var(--primary-light);
}

.awareness-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-light);
}

.awareness-title {
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.awareness-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.awareness-highlight {
    font-size: 1.25rem !important;
    color: var(--accent) !important;
    font-weight: 700;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .awareness-content {
        padding: 2rem 1.5rem;
    }
    .awareness-title {
        font-size: 2rem;
    }
}