/* ===== CSS RESET & VARIABLES ===== */
:root {
    --bg-dark: #000000;
    --primary-red: #FF0000;
    --red-glow: rgba(255, 0, 0, 0.4);
    --text-white: #FFFFFF;
    --gray-text: #b3b3b3;
    --dark-surface: #111111;
    --border-radius: 8px;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at top center, rgba(40, 0, 0, 0.5) 0%, var(--bg-dark) 60%);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Classes */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-red);
    font-weight: 900;
}

/* Typography Case Rule (Title Case equivalent) */
h1, h2, h3, h4, .cta-button, .alert-box p {
    text-transform: capitalize;
}

/* Force uppercase if strictly needed, but prompt said "Iniciais em Maiúsculo (Title Case)" */
.cta-button {
    text-transform: uppercase; /* The prompt asked "QUERO ACESSAR O MÉTODO" in all caps */
}


/* ===== HERO SECTION ===== */
.hero {
    padding: 50px 0 30px;
    text-align: center;
}

.hero-preheadline {
    color: var(--text-white);
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.hero-headline {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-white);
    font-weight: 400;
}

.alert-box {
    border: 1px solid var(--primary-red);
    background-color: rgba(255, 0, 0, 0.1);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    display: inline-block;
    max-width: 800px;
    box-shadow: 0 0 15px var(--red-glow);
}

.alert-box p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}


/* ===== VSL SECTION ===== */
.vsl-section {
    padding: 20px 0 50px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    /* Aspect ratio hack for iframe */
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
}

/* This is a placeholder style for the video cover */
.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s;
}

.video-overlay i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--primary-red));
    animation: pulse 1.5s infinite;
}

.video-overlay p {
    font-size: 1.2rem;
    text-align: center;
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Redline Animation */
.redline-container {
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
    height: 60px;
}

.redline-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px var(--primary-red));
}

.redline-path {
    fill: none;
    stroke: var(--primary-red);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: heartbeat 2.5s linear infinite;
}

@keyframes heartbeat {
    0% { stroke-dashoffset: 1000; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1000; }
}


/* ===== HIDDEN CONTENT (DELAY) ===== */
.hidden-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in;
    height: 0;
    overflow: hidden;
}

.hidden-content.show {
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
}


/* ===== ARGUMENTATION SECTION ===== */
.argumentation {
    padding: 60px 0;
}

.argumentation h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.transition-text {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 800px;
    margin: 40px auto 0;
    font-weight: 400;
}

.transition-text strong {
    color: var(--text-white);
}


/* ===== CARDS (MÉTODO) SECTION ===== */
.method-section {
    padding: 40px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.15);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.6);
    box-shadow: 0 0 25px var(--red-glow);
}

.card-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    opacity: 0.3;
    margin-bottom: -10px;
}

.card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.card p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.card-centered-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.card-special {
    width: 100%;
    max-width: 440px; /* Aligns visually with the grid above */
}
/* ===== RESULTS SECTION ===== */
.results-section {
    padding: 60px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.result-img {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-red);
    box-shadow: 0 0 15px var(--red-glow);
    transition: transform 0.3s;
}

.result-img:hover {
    transform: scale(1.05);
}

/* ===== BÔNUS SECTION ===== */
.bonus-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0000 100%);
}

.section-title {
    color: var(--primary-red);
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-shadow: 0 0 10px var(--red-glow);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.bonus-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary-red);
    border-left: 1px solid rgba(255, 0, 0, 0.1);
    border-right: 1px solid rgba(255, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    padding: 35px 20px;
    border-radius: var(--border-radius);
}

.bonus-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.bonus-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bonus-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.bonus-special {
    max-width: 600px;
    border: 1px solid var(--primary-red);
    box-shadow: 0 0 15px var(--red-glow);
}


/* ===== CHECKOUT SECTON ===== */
.checkout-section {
    padding: 60px 0 80px;
}

.price-box {
    border: 2px solid var(--primary-red);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px var(--red-glow);
    background-color: rgba(20, 0, 0, 0.4);
    position: relative;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff0000, #b30000);
    color: #fff;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    letter-spacing: 1px;
}

.price-from {
    color: var(--gray-text);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.price-from s {
    color: #666;
}

.price-to {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.payment-method {
    color: #00e676; /* Green for PIX */
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-angle-offset {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-percent {
    syntax: "<percentage>";
    initial-value: 20%;
    inherits: false;
}

@property --gradient-shine {
    syntax: "<color>";
    initial-value: #ff4d4d;
    inherits: false;
}

.cta-button {
    /* Ajuste para vermelho (Hot Button) */
    --gradient-angle: 0deg;
    --gradient-angle-offset: 0deg;
    --gradient-percent: 20%;
    --gradient-shine: #ff4d4d;
    --shadow-size: 2px;
    
    position: relative;
    overflow: hidden;
    border-radius: 9999px;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 500;
    color: #ffffff !important;
    text-transform: uppercase;
    text-decoration: none;
    
    /* Vermelho Vivo: Fundo 100% vermelho */
    background: linear-gradient(#ff0000, #ff0000) padding-box, 
                conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)), transparent 0%, #ff4d4d 5%, var(--gradient-shine) 15%, #ff4d4d 30%, transparent 40%, transparent 100%) border-box;
    border: 2px solid transparent;
    box-shadow: inset 0 0 0 1px #ff0000;
    outline: none;
    transition: --gradient-angle-offset 800ms cubic-bezier(0.25, 1, 0.5, 1), 
                --gradient-percent 800ms cubic-bezier(0.25, 1, 0.5, 1), 
                --gradient-shine 800ms cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s;
    cursor: pointer;
    isolation: isolate;
    outline-offset: 4px;
    z-index: 0;
    animation: border-spin 2.5s linear infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@keyframes border-spin {
    to { --gradient-angle: 360deg; }
}

.cta-button:active {
    transform: translateY(1px);
}

.cta-button::before {
    content: '';
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    --size: calc(100% - 6px);
    --position: 2px;
    --space: 4px;
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle at var(--position) var(--position), white 0.5px, transparent 0) padding-box;
    background-size: var(--space) var(--space);
    background-repeat: space;
    mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg), black, transparent 10% 90%, black);
    -webkit-mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg), black, transparent 10% 90%, black);
    border-radius: inherit;
    opacity: 0.4;
}

.cta-button::after {
    content: '';
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(-50deg, transparent, #ff0000, transparent);
    mask-image: radial-gradient(circle at bottom, transparent 40%, black);
    -webkit-mask-image: radial-gradient(circle at bottom, transparent 40%, black);
    opacity: 0.6;
    animation: shimmer 4s linear infinite;
}

.cta-button span {
    position: relative;
    z-index: 2;
    display: inline-block;
}

.cta-button span::before {
    content: '';
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0 -1ex 2rem 4px #ff0000;
    opacity: 0;
    border-radius: inherit;
    transition: opacity 800ms cubic-bezier(0.25, 1, 0.5, 1);
    animation: breathe 4.5s linear infinite;
}

@keyframes shimmer {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.20); }
}


/* ===== FOOTER ===== */
footer {
    padding: 30px 0 100px;
    border-top: 1px solid #222;
    background: #050505;
}

footer p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.7rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}


/* ===== FLOATING INSTAGRAM ===== */
.float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.5);
    z-index: 100;
    transition: transform 0.3s;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
}


/* ===== SOCIAL PROOF MODAL ===== */
.social-proof-modal {
    position: fixed;
    bottom: 20px;
    left: -350px; /* Hidden initially */
    background: var(--dark-surface);
    border: 1px solid #333;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 100;
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Neon accent */
    border-left: 4px solid var(--primary-red);
}

.social-proof-modal.active {
    left: 20px;
}


.sp-text {
    font-size: 0.85rem;
}

.sp-text strong {
    color: var(--text-white);
    font-size: 0.95rem;
}

.sp-action {
    color: var(--gray-text);
}

.sp-time {
    color: #666;
    font-size: 0.75rem;
    margin-top: 2px;
}


/* ===== FRUSTRATION LIST ===== */
.frustration-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    padding: 30px;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: var(--border-radius);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.frustration-list li {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.frustration-list li:last-child {
    margin-bottom: 0;
}

.frustration-list li i {
    color: var(--primary-red);
    font-size: 1.3rem;
    min-width: 20px;
}

/* ===== MENTOR SECTION ===== */
.mentor-section {
    padding: 60px 0;
}

.mentor-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.15);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: left;
}

.mentor-content {
    flex: 1;
}

.mentor-content p {
    color: var(--gray-text);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.mentor-image {
    width: 250px;
}

.mentor-photo {
    width: 100%;
    max-width: 300px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 20px var(--red-glow);
    object-fit: cover;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    padding: 40px 0 60px;
}

.guarantee-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.guarantee-number {
    font-size: 8rem;
    font-weight: 900;
    color: #cca43b; /* Gold */
    text-shadow: 0 0 20px rgba(204, 164, 59, 0.5);
    line-height: 1;
}

.guarantee-text h2 {
    color: #cca43b;
    text-shadow: 0 0 10px rgba(204, 164, 59, 0.3);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 40px 0 80px;
    border-top: 1px solid #222;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: #ffffff;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    background-color: #20b858;
}

/* ===== GSAP STACKING CARDS ===== */
.stack-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 10px auto;
}

.cards-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 70vh;
    max-height: 700px;
    perspective: 1000px;
    margin: 0 auto;
}

.stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    overflow: hidden;
    transform-origin: top center;
    will-change: transform; 
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
    background: #111;
}

.stack-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.stack-card__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    z-index: 1;
    will-change: opacity;
    pointer-events: none;
}

.stack-card__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 40%, transparent 100%);
    pointer-events: none; 
}

.stack-card__text-wrapper {
    max-width: 90%;
    pointer-events: auto;
}

.stack-card__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.stack-card__subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 0;
    line-height: 1.4;
}

.stack-card__number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* ===== ANIMATION CLASSES ===== */
.animate-hidden {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* GSAP MOBILE OVERRIDES */
    .stack-section {
        min-height: 400px;
        margin: 10px auto;
    }
    .cards-wrapper {
        height: 60vh;
    }
    .stack-card__content {
        padding: 2rem 1.5rem;
    }
    .stack-card__text-wrapper {
        max-width: 100%;
    }
    .stack-card__title {
        font-size: 1.6rem;
    }
    .stack-card__subtitle {
        font-size: 1rem;
    }
    .stack-card__number {
        font-size: 3rem;
        top: 15px;
        right: 20px;
    }
    
    .hero {
        padding: 40px 0 20px;
    }
    
    .hero-preheadline {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-headline {
        font-size: 1.8rem !important; /* override inline */
        line-height: 1.25;
    }
    
    .hero-subheadline {
        font-size: 1.05rem;
        line-height: 1.5;
    }
    
    .vsl-section {
        padding: 10px 0 30px;
    }
    
    /* Better Glassmorphism & Layout for mobile cards */
    .card, .bonus-card {
        padding: 25px 20px;
        background: rgba(15, 15, 15, 0.75);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 0, 0, 0.2);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bonus-grid, .results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .price-to {
        font-size: 2.2rem;
    }
    
    .cta-button {
        font-size: 1.25rem;
        padding: 18px 25px;
        width: 100%;
        max-width: 360px;
        line-height: 1.3;
        border-radius: 50px;
    }

    .float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .social-proof-modal {
        bottom: 15px;
        z-index: 1000;
        background: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .social-proof-modal.active {
        left: 10px;
        right: 10px;
        border-radius: 10px;
    }
    
    .frustration-list {
        padding: 25px 15px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
    
    .frustration-list li {
        font-size: 1.05rem;
    }
    
    .mentor-container {
        flex-direction: column;
        text-align: left;
        padding: 30px 20px;
    }
    
    .mentor-image {
        margin: 0 auto 20px;
    }
    
    .mentor-content .section-title {
        text-align: left !important;
        font-size: 1.8rem;
    }
    
    .guarantee-flex {
        flex-direction: column;
        gap: 20px;
    }
    
    .guarantee-text h2, .guarantee-text p {
        text-align: center !important;
    }
}

/* ===== HORIZONTAL CAROUSEL SECTION ===== */
.horizontal-wrapper {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
    margin-top: 40px;
}

.scroll-track {
    display: flex;
    padding-left: 10vw;
    gap: 2.5rem;
    will-change: transform;
}

.item-card {
    min-width: 350px;
    height: 500px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s;
}

.item-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--red-glow);
}

.item-card .result-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .horizontal-wrapper {
        height: 75vh;
        margin-top: 20px;
    }
    .item-card {
        min-width: 80vw;
        height: 450px;
    }
    .scroll-track {
        gap: 1.5rem;
        padding-left: 5vw;
    }
}

/* ===== GLASSMORPHISM CHECKOUT CARD ===== */
.glass-checkout-card {
    position: relative;
    border-radius: 1rem;
    padding: 1.5rem;
    width: 21rem;
    max-width: 100%;
    margin: 0 auto;
    background-color: hsla(0, 30%, 8%, 1); 
    background-image: 
        radial-gradient(at 88% 40%, hsla(0, 60%, 15%, 1) 0px, transparent 85%), 
        radial-gradient(at 49% 30%, hsla(0, 40%, 10%, 1) 0px, transparent 85%), 
        radial-gradient(at 14% 26%, hsla(0, 50%, 12%, 1) 0px, transparent 85%), 
        radial-gradient(at 0% 64%, hsla(0, 100%, 30%, 1) 0px, transparent 85%), 
        radial-gradient(at 41% 94%, hsla(0, 100%, 40%, 1) 0px, transparent 85%), 
        radial-gradient(at 100% 99%, hsla(0, 100%, 25%, 1) 0px, transparent 85%);
    box-shadow: 0px -16px 24px 0px rgba(255, 50, 50, 0.15) inset;
    text-align: left;
    margin-bottom: 30px;
}

.border-animation-container {
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: -10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-image: linear-gradient(0deg, hsl(0, 100%, 90%) -50%, hsl(0, 70%, 30%) 100%);
    border-radius: 1rem;
}

.rotating-border {
    content: '';
    pointer-events: none;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: left;
    width: 200%;
    height: 10rem;
    background-image: linear-gradient(0deg, hsla(0, 100%, 90%, 0) 0%, hsl(0, 100%, 50%) 40%, hsl(0, 100%, 70%) 60%, hsla(0, 100%, 30%, 0) 100%);
    animation: rotate 8s linear infinite;
}

.glass-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.glass-icon-box {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 50, 50, 0.2);
    background: linear-gradient(to bottom right, rgba(255, 0, 0, 0.2), rgba(150, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.glass-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
}

.glass-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 100, 100, 0.9);
    font-weight: 800;
}

.glass-price-box { margin-bottom: 1.5rem; display: flex; flex-direction: column; }
.glass-price { display: flex; align-items: baseline; }
.glass-currency { font-size: 0.8rem; font-weight: 500; color: rgba(255, 150, 150, 0.6); margin-right: 0.25rem; }
.glass-amount { font-size: 2.5rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.glass-desc { font-size: 0.75rem; color: rgba(255, 200, 200, 0.5); margin-top: 0.25rem; }

.glass-features { list-style: none; padding: 0; margin: 0 0 2rem 0; }
.glass-features li { display: flex; align-items: flex-start; font-size: 0.875rem; color: rgba(255, 230, 230, 0.9); margin-bottom: 0.75rem; }
.glass-features .tick { width: 1rem; height: 1rem; border-radius: 50%; background-color: #ff3333; display: flex; align-items: center; justify-content: center; margin-top: 0.125rem; margin-right: 0.75rem; flex-shrink: 0; }

@keyframes rotate-gradient { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes borderBeamRotation { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes shinery { 0%, 100% { left: -20%; opacity: 0; } 20% { opacity: 1; } 48% { left: 140%; opacity: 1; } 51% { opacity: 0; } }
@keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Aura Button - Red Theme */
.aura-button {
    --speed: 4s;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    clip-path: inset(0 round 20px);
    width: 100%;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #ff1a1a;
    border-radius: 20px;
    text-decoration: none;
}

.aura-button:hover {
    --speed: 2.2s;
    transform: scale(1.02);
    box-shadow: 0 10px 30px -5px rgba(255, 50, 50, 0.4);
}

.shimmer-onda {
    content: '';
    background: linear-gradient(10deg, #ff9999 12.81%, rgba(255, 150, 150, 0.00) 66.66%);
    mix-blend-mode: overlay;
    width: 90px;
    height: 150%;
    position: absolute;
    top: -25%; 
    transform: translateX(-50%) skew(-25deg);
    pointer-events: none;
    animation: shinery 6s infinite ease-in-out;
    z-index: 4;
}

.fundo-white {
    position: absolute;
    left: 5px;
    width: 0%;
    height: calc(100% - 10px);
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 6;
    opacity: 0;
}

.aura-button:hover .fundo-white {
    width: calc(100% - 10px);
    opacity: 1;
}

.wrapper-icones {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #aa0000 0%, #550000 100%);
    border-radius: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.aura-button:hover .wrapper-icones {
    left: calc(100% - 44px);
}

.texto-principal, .texto-hover {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    color: #ffd6d6;
    font-size: 0.875rem;
    font-weight: 700;
}

.texto-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateX(25px);
    opacity: 0;
    color: #aa0000;
}

.aura-button:hover .texto-principal {
    opacity: 0;
    transform: translateX(-40px);
}

.aura-button:hover .texto-hover {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(-12px);
}

.aura-button:hover .hide-on-hover { display: none !important; }
.aura-button:hover .show-on-hover { display: block !important; }
