:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    /* Ocultar scrollbar mas manter funcionalidade */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE e Edge */
}

/* Ocultar scrollbar no Chrome, Safari e Opera */
body::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE e Edge */
}

html::-webkit-scrollbar {
    display: none;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    height: 220px;
    /* Aumentado para caber as imagens maiores */
    z-index: 5;
    transform: scale(1.1);
    /* Um leve zoom extra no container todo */
}

.combo-img {
    height: 190px;
    /* Aumentado de 120px para 190px (zoom in) */
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    position: relative;
}

/* Efeito de sobreposição estilosa */
.combo-img:first-child {
    transform: rotate(-5deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.combo-visual:hover .combo-img:first-child {
    transform: rotate(-10deg) translateX(-5px) scale(1.05);
}

.combo-visual:hover .combo-img:last-child {
    transform: rotate(10deg) translateX(5px) scale(1.05);
}

border-radius: 4px;
box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

/* --- LEANER CHECKOUT VISUALS --- */
.payment-area .form-group {
    margin-bottom: 0.8rem !important;
    /* Tighter spacing */
}

.checkout-section {
    margin-bottom: 1.5rem !important;
    /* Reduce section gap */
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-form input,
.checkout-form select {
    padding: 10px 10px 10px 42px !important;
    /* Slightly more compact inputs */
    font-size: 0.95rem;
}

.method-selector.top-toggle {
    margin: 1rem 0 1.5rem !important;
    /* Reduce top/bottom margin */
}

.top-toggle .method-btn {
    padding: 12px !important;
    /* Slimmer buttons */
}

/* --- REFINED STICKY CTA --- */
.sticky-cta-bar {
    justify-content: center !important;
    /* Force center */
    padding: 10px 0 !important;
    overflow: hidden;
    /* Crop logo */
}

.sticky-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    /* Size of watermark */
    pointer-events: none;
    /* Click through */
    z-index: 0;
    opacity: 0.08;
    /* Very subtle opacity as requested (opaque/phantom) */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-logo-bg img {
    width: 100%;
    filter: grayscale(100%) brightness(200%);
    /* Make it whiteish ghost */
}

.sticky-cta-bar .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

/* --- LEANER CHECKOUT VISUALS --- */
.payment-area .form-group {
    margin-bottom: 0.8rem !important;
    /* Tighter spacing */
}

.checkout-section {
    margin-bottom: 1.5rem !important;
    /* Reduce section gap */
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-form input,
.checkout-form select {
    padding: 10px 10px 10px 42px !important;
    /* Slightly more compact inputs */
    font-size: 0.95rem;
}

.method-selector.top-toggle {
    margin: 1rem 0 1.5rem !important;
    /* Reduce top/bottom margin */
}

.top-toggle .method-btn {
    padding: 12px !important;
    /* Slimmer buttons */
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

/* --- LEANER CHECKOUT VISUALS --- */
.payment-area .form-group {
    margin-bottom: 0.8rem !important;
    /* Tighter spacing */
}

.checkout-section {
    margin-bottom: 1.5rem !important;
    /* Reduce section gap */
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-form input,
.checkout-form select {
    padding: 10px 10px 10px 42px !important;
    /* Slightly more compact inputs */
    font-size: 0.95rem;
}

.method-selector.top-toggle {
    margin: 1rem 0 1.5rem !important;
    /* Reduce top/bottom margin */
}

.top-toggle .method-btn {
    padding: 12px !important;
    /* Slimmer buttons */
}

/* --- REFINED STICKY CTA --- */
.sticky-cta-bar {
    justify-content: center !important;
    /* Force center */
    padding: 10px 0 !important;
    overflow: hidden;
    /* Crop logo */
}

.sticky-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    /* Size of watermark */
    pointer-events: none;
    /* Click through */
    z-index: 0;
    opacity: 0.08;
    /* Very subtle opacity as requested (opaque/phantom) */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-logo-bg img {
    width: 100%;
    filter: grayscale(100%) brightness(200%);
    /* Make it whiteish ghost */
}

.sticky-cta-bar .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

/* --- LEANER CHECKOUT VISUALS --- */
.payment-area .form-group {
    margin-bottom: 0.8rem !important;
    /* Tighter spacing */
}

.checkout-section {
    margin-bottom: 1.5rem !important;
    /* Reduce section gap */
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-form input,
.checkout-form select {
    padding: 10px 10px 10px 42px !important;
    /* Slightly more compact inputs */
    font-size: 0.95rem;
}

.method-selector.top-toggle {
    margin: 1rem 0 1.5rem !important;
    /* Reduce top/bottom margin */
}

.top-toggle .method-btn {
    padding: 12px !important;
    /* Slimmer buttons */
}

/* --- STICKY RIGHT LOGO FIX --- */
.sticky-right-logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 45px;
    /* Tamanho legal */
    width: auto;
    opacity: 1;
    /* Fully visible */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Mobile Adjustment for Logo */
@media (max-width: 768px) {
    .sticky-right-logo {
        height: 35px;
        right: 10px;
    }

    .sticky-cta-bar .btn {
        min-width: unset !important;
        padding: 0.6rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: auto;
    }
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

/* --- LEANER CHECKOUT VISUALS --- */
.payment-area .form-group {
    margin-bottom: 0.8rem !important;
    /* Tighter spacing */
}

.checkout-section {
    margin-bottom: 1.5rem !important;
    /* Reduce section gap */
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-form input,
.checkout-form select {
    padding: 10px 10px 10px 42px !important;
    /* Slightly more compact inputs */
    font-size: 0.95rem;
}

.method-selector.top-toggle {
    margin: 1rem 0 1.5rem !important;
    /* Reduce top/bottom margin */
}

.top-toggle .method-btn {
    padding: 12px !important;
    /* Slimmer buttons */
}

/* --- REFINED STICKY CTA --- */
.sticky-cta-bar {
    justify-content: center !important;
    /* Force center */
    padding: 10px 0 !important;
    overflow: hidden;
    /* Crop logo */
}

.sticky-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    /* Size of watermark */
    pointer-events: none;
    /* Click through */
    z-index: 0;
    opacity: 0.08;
    /* Very subtle opacity as requested (opaque/phantom) */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-logo-bg img {
    width: 100%;
    filter: grayscale(100%) brightness(200%);
    /* Make it whiteish ghost */
}

.sticky-cta-bar .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

/* --- LEANER CHECKOUT VISUALS --- */
.payment-area .form-group {
    margin-bottom: 0.8rem !important;
    /* Tighter spacing */
}

.checkout-section {
    margin-bottom: 1.5rem !important;
    /* Reduce section gap */
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-form input,
.checkout-form select {
    padding: 10px 10px 10px 42px !important;
    /* Slightly more compact inputs */
    font-size: 0.95rem;
}

.method-selector.top-toggle {
    margin: 1rem 0 1.5rem !important;
    /* Reduce top/bottom margin */
}

.top-toggle .method-btn {
    padding: 12px !important;
    /* Slimmer buttons */
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

/* --- LEANER CHECKOUT VISUALS --- */
.payment-area .form-group {
    margin-bottom: 0.8rem !important;
    /* Tighter spacing */
}

.checkout-section {
    margin-bottom: 1.5rem !important;
    /* Reduce section gap */
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-form input,
.checkout-form select {
    padding: 10px 10px 10px 42px !important;
    /* Slightly more compact inputs */
    font-size: 0.95rem;
}

.method-selector.top-toggle {
    margin: 1rem 0 1.5rem !important;
    /* Reduce top/bottom margin */
}

.top-toggle .method-btn {
    padding: 12px !important;
    /* Slimmer buttons */
}

/* --- REFINED STICKY CTA --- */
.sticky-cta-bar {
    justify-content: center !important;
    /* Force center */
    padding: 10px 0 !important;
    overflow: hidden;
    /* Crop logo */
}

.sticky-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    /* Size of watermark */
    pointer-events: none;
    /* Click through */
    z-index: 0;
    opacity: 0.08;
    /* Very subtle opacity as requested (opaque/phantom) */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-logo-bg img {
    width: 100%;
    filter: grayscale(100%) brightness(200%);
    /* Make it whiteish ghost */
}

.sticky-cta-bar .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

:root {
    /* Color Palette - Premium Black & Gold */
    --color-primary: #000000;
    /* Pure Black */
    --color-primary-dark: #050505;

    --color-secondary: #D4AF37;
    /* Metallic Gold */
    --color-secondary-hover: #FFD700;
    /* Bright Gold for interaction */
    --color-accent: #C5A028;
    /* Darker Gold */

    --color-accent-red: #cc0000;
    /* Alert/Urgency Red */

    --color-text-main: #ffffff;
    /* White text for black background */
    --color-text-light: #a0a0a0;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG */
    --color-bg-card: #151515;
    /* Card Backgrounds */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        width: 100vw;
        position: relative;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #000;
    border: 2px solid #fff;
    /* White border for maximum sharpness */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* High visibility white border */
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Social Proof Bar */
.social-proof-bar {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
}

.alumni-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.alumni-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alumni-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    /* Gold border to make them pop */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-left: -12px;
    background: #222;
    object-fit: cover;
}

.alumni-avatars img:first-child {
    margin-left: 0;
}

.alumni-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.alumni-text span {
    color: var(--color-secondary);
    font-weight: 800;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: #000;
    min-height: -50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    zoom: -30%;
    background-image: url('optimized_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.logo-transparent,
.pulsing-logo-check {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-transparent:hover {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: var(--color-bg-dark);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: rotate(-3deg);
    border: 4px solid var(--color-bg-card);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    /* Lowered min-width to 250px so it fits small mobile screens without overflow */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-secondary);
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #000, #151515);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    overflow: visible;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    /* Subi um pouco para não bater no título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #fff;
}

.price-card.featured {
    border: 2px solid var(--color-secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
    padding-top: 5rem;
    /* Aumentado para o badge ter respiro total do título */
    /* Extra space for the badge */
}

.price-title {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: var(--color-text-main);
    font-weight: 500;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-gold);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Pricing Grid - Horizontal Scroll on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto !important;
        /* Força o scroll horizontal sem travar o vertical */
        overflow-y: visible;
        gap: 1rem;
        scroll-snap-type: x mandatory;

        /* Melhorias para toque: Permite scroll vertical (pan-y) mesmo sobre os cards */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;

        padding-bottom: 2rem;
        /* Mais espaço para scrollbar */
        margin-top: 2rem;

        /* Ensure scrolling is smooth */
        scroll-behavior: smooth;

        /* Garante largura total */
        width: 100%;
        max-width: 100vw;
        padding-left: 1rem;
        /* Espaço inicial */
        padding-right: 1rem;
        /* Espaço final */
    }

    .price-card {
        flex: 0 0 90%;
        /* Aumentado para ver melhor o próximo card */
        max-width: 350px;
        scroll-snap-align: center;
        height: auto !important;
        margin-right: 15px;
        /* Espaço extra explícito */
    }

    .price-card.featured {
        transform: scale(1);
    }

    /* Custom Scrollbar for Pricing Grid - More Visible */
    .pricing-grid::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0 10px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-secondary-hover);
    }

    /* Ensure pricing wrapper doesn't block scroll */
    .pricing-wrapper {
        overflow: visible;
        overflow-x: auto !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure pricing section allows horizontal overflow */
    .pricing {
        overflow-x: visible !important;
    }

    /* Mobile scroll hint - only visible on mobile */
    .mobile-scroll-hint {
        display: block !important;
        animation: fadeInPulse 2s ease-in-out infinite;
    }

    @keyframes fadeInPulse {

        0%,
        100% {
            opacity: 0.7;
        }

        50% {
            opacity: 1;
        }
    }


    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Mask/Fade Effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    /* FORCE NO WRAP */
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
    /* Adjusted speed for 1600px */
    padding: 10px 0;
    pointer-events: none;
}

.testimonial-card-original {
    margin-right: 20px !important;
    /* Force override just in case */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly one set width using JS calculated variable */
        /* Fallback to -1600px just in case JS fails initially */
        transform: translateX(var(--scroll-amount, -1600px));
    }
}

/* Original Testimonial Style Restoration - Dark Premium Theme */
.testimonial-section-original {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0;
}

.testimonial-card-original {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-card-original:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    background: #151515;
}

.testimonial-card-original p {
    color: #eee;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-original strong {
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

/* Sticky CTA Bar - Centered & High Visibility */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid #D4AF37;
    /* Gold Border */
    padding: 12px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -5px 20px rgba(212, 175, 55, 0.15);
    /* Golden Glow Up */
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sticky-info {
    display: none !important;
    /* Center button by removing other elements */
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    /* Increased margin to avoid overlap */
    position: relative;
    height: 140px;
    z-index: 5;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}









.popup-header {
    text-align: left !important;
    margin-bottom: 2rem;
}

.popup-header h3 {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.popup-header p {
    color: #444444;
    /* Darker grey */
    font-size: 1rem;
    line-height: 1.4;
}

/* Horizontal Optimization Classes */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric for better fit */
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

/* Form Groups Left Aligned */
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input,
#card-installments {
    width: 100%;
    padding: 14px 15px 14px 50px !important;
    /* Increased padding */
    background: #f9f9f9 !important;
    border: 2px solid #efefef !important;
    /* Thicker light border */
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-size: 1rem !important;
    color: #000 !important;
    transition: all 0.2s ease;
}

/* Validation States */
.input-with-icon input.is-valid,
#card-installments.is-valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f1 !important;
}

.input-with-icon input.is-invalid,
#card-installments.is-invalid {
    border-color: #d32f2f !important;
    background-color: #fdf2f2 !important;
}

/* Card Number specific layout for External Scan Button */
.card-number-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-number-wrapper .input-with-icon {
    flex: 1;
}

#card-number {
    padding-right: 15px !important;
    /* Reset padding for number field */
}

#card-installments {
    padding: 12px 15px !important;
    appearance: none;
    -webkit-appearance: none;
    background: #fdfdfd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 18px !important;
}

.input-with-icon input:focus,
#card-installments:focus {
    border-color: #000 !important;
    background: #fff !important;
    outline: none;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    color: #555;
    /* Higher contrast icon */
    font-size: 1rem;
    pointer-events: none;
}

/* External Scan Button */
.btn-scan {
    background: #f1f1f1;
    border: 1.5px solid #eee;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-scan:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Payment Method Cards */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 2px solid #efefef;
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.payment-method-card.active {
    border-color: #000;
    background: #fdfdfd;
}

.method-info {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-info i {
    color: #D4AF37;
}

.method-badge {
    background: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Summary Refinement */
.checkout-summary-compact {
    background: #f8f8f8;
    padding: 1.2rem;
    border-radius: 14px;
    margin-bottom: 2rem;
    border: 1.5px solid #efefef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

/* Buttons and Actions */
.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #D4AF37;
    /* Visible Gold Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #dddddd;
    color: #444;
}

.btn-outline:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.secure-text {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: #444444;
    /* Higher contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

/* Checkout Refinement: Natural Authority & Avatar Stack */
.authority-badge-v2 {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

.authority-badge-v2 i {
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-social-proof-stack {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.avatar-stack img,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

.checkout-social-proof-stack p {
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 700;
    margin: 0;
}

/* Waiting Payment: Pulsing Logo */
.logo-pulse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pulsing-logo-check {
    height: 180px;
    /* Bem maior agora */
    animation: pulseLogo 2s infinite ease-in-out;
    mix-blend-mode: multiply;
    filter: brightness(0.9) contrast(1.2);
    /* Remove o branco e deixa o galo como uma 'sombra' no fundo escuro */
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

@media (max-width: 480px) {
    .authority-badge-v2 {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
}

.secure-text i {
    color: #2e7d32;
    /* Stronger green */
    font-size: 1rem;
}



.qr-code-wrapper img {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: var(--color-secondary);
    /* Changed to gold for impact */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
    /* Black plus on gold */
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

.checkout-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-guarantee-mini i {
    font-size: 1.2rem;
    color: #2e7d32;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 480px) {
    .form-row.grid-2 {
        gap: 8px;
    }

    .form-row.grid-2 input {
        font-size: 0.9rem !important;
        padding-left: 10px !important;
    }

    .form-row.grid-2 label {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .product-grid-dual {
        gap: 0.8rem;
    }

    .product-col {
        padding: 0.8rem;
    }

    .product-col h3 {
        font-size: 0.9rem;
    }

    .product-visual-mini {
        height: 250px;
    }

    .product-img-dual {
        max-height: 220px;
    }
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-logo-main {
    max-height: 50px;
    filter: brightness(1.5) contrast(1.2);
    /* Ensure visibility on dark */
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 3rem);
    align-items: center;
}

@media (max-width: 768px) {
    .guarantee-grid {
        gap: 1.5rem;
    }
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Fix vertical stretching */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
}



@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}



/* --- Professional Footer (Transparency Fix) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-info span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--color-secondary);
    width: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.trust-badges img {
    height: 38px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: none;
    opacity: 1;
}

/* Global Logo Transparency/Shadow Fix */
.logo-transparent,
.logo-footer,
.logo img {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.header .logo img {
    filter: brightness(1.5) contrast(1.2);
    /* Garantir visibilidade no header escuro */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.vsl-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-info span,
    .trust-badges {
        justify-content: center;
    }
}

/* --- Checkout Guarantee Seal --- */
.checkout-guarantee {
    margin: 2.5rem 0 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.guarantee-badge-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-badge-checkout i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guarantee-text-checkout {
    display: flex;
    flex-direction: column;
}

.guarantee-text-checkout .days {
    font-weight: 900;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.guarantee-text-checkout .satisfaction {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* 320px Special Responsiveness */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .product-grid-dual {
        gap: 0.3rem !important;
    }

    .product-col {
        padding: 0.5rem 0.3rem !important;
    }

    .product-info-dual h3 {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border: 2px solid #FCF6BA !important;
        /* Visual Pop */
        box-shadow: 0 0 15px rgba(252, 246, 186, 0.3) !important;
    }

    .pricing-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .price-card {
        min-width: 85vw !important;
    }
}

/* Comparison Showcase V2 - Editorial Style */
.comparison-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Reduced from 6rem */
    margin-top: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced from 4rem */
}

.comparison-item-v2.reverse {
    flex-direction: row-reverse;
}

.comp-text {
    flex: 1;
}

.comp-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.comp-tag.color-red {
    background: rgba(204, 0, 0, 0.1);
    color: #ff4444;
}

.comp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.comp-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.comp-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #eee;
}

.comp-check-list i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.comp-visual-v2 {
    flex: 1.2;
}

.img-wrapper,
.img-wrapper-split {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.img-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.img-labels {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.label-amador,
.label-elite {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-amador {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.label-elite {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Fix for baked-in AI text in v3 image */
.transformacao-realista-v3 .img-labels {
    bottom: 5%;
    left: 0;
    right: 0;
    padding: 0 5%;
}

.transformacao-realista-v3 .label-amador,
.transformacao-realista-v3 .label-elite {
    background: #000 !important;
    /* Solid black to cover "SICK/HEALTHY" */
    color: #fff !important;
    padding: 12px 25px;
    font-size: 0.95rem;
    border: 2px solid var(--color-secondary);
    min-width: 180px;
    text-align: center;
}

.transformacao-realista-v3 .label-elite {
    background: var(--color-secondary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .transformacao-realista-v3 .img-labels {
        bottom: 2%;
        flex-direction: row;
        gap: 5px;
        padding: 0 2%;
    }

    .transformacao-realista-v3 .label-amador,
    .transformacao-realista-v3 .label-elite {
        min-width: auto;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* Split Image Styles - Circular Focus */
.img-wrapper-split {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.split-side {
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /* Perfect circle */
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}



/* Galo 1 - Esquerda (Antes) */
.img-wrapper-split>div:first-child img {
    transform: scale(1.0);
    object-position: center 45%;

}

/* Galo 2 - Direita (Depois) */
.img-wrapper-split>div:last-child img {
    transform: scale(1.0);
    object-position: -20% 20%;
    filter: brightness(1.1);
}

.img-wrapper-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}






.border-elite {
    border-left: 3px solid var(--color-secondary);
}

.split-label {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.split-label.danger {
    background: #cc0000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-label.success {
    background: #2a9d8f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive V2 Cleanup */
@media (max-width: 992px) {
    .comparison-grid-v2 {
        gap: 4rem;
    }

    .comparison-item-v2,
    .comparison-item-v2.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .comp-text {
        text-align: center;
    }

    .comp-check-list {
        align-items: center;
        text-align: left;
    }

    .img-wrapper-split {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .img-wrapper-split {
        height: auto;
        /* Allow height to adjust */
        gap: 0.5rem;
        /* Much closer gap */
        padding: 1rem 0;
    }

    .split-side {
        width: 135px;
        /* Smaller circles to fit side-by-side */
        height: 135px;
        border-width: 3px;
        /* Slightly thinner border */
    }

    .comp-text h3 {
        font-size: 1.7rem;
    }

    .label-amador,
    .label-elite {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    /* Mobile Hero Adjustment to "Zoom Out" */
    .hero {
        min-height: 55vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Logo Refinement */
.logo-footer {
    height: 100px;
    /* Bem imponente no final */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* =========================================
   PREMIUM CHECKOUT MODAL (Glassmorphism)
   ========================================= */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    /* Start from top to avoid cut-off */
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Enable scroll within modal wrapper */
    padding: 3rem 0;
    /* Vertical breathing room */
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly lighter dark overlay */
}

.checkout-container {
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    width: 90%;
    max-width: 480px;
    padding: 2rem;
    margin: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
}

.checkout-modal.active .checkout-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-header p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Product Summary */
.checkout-product-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack to avoid horizontal crowding */
    align-items: center;
    text-align: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.2rem;
}

.p-info {
    flex: 1;
}

.p-info span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.p-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.p-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* Forms & Inputs - FIXED CARET POSITION */
.checkout-step {
    transition: opacity 0.3s ease;
}

.checkout-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    margin-left: 2px;
}

.two-col {
    display: flex;
    gap: 15px;
}

.two-col>div {
    flex: 1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
    pointer-events: none;
}

.btn-scan-card {
    position: absolute;
    right: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-scan-card:hover {
    background: var(--color-secondary);
    color: #000;
    transform: scale(1.1);
}

.input-wrapper:has(.btn-scan-card) input {
    padding-right: 50px !important;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 14px 44px;
    /* Left padding space for icon */
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder {
    color: #444;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-group input:focus+i,
.input-wrapper:focus-within i {
    color: var(--color-secondary);
}

/* Step Switching Buttons */
.btn-next-step,
.btn-pay-now {
    width: 100%;
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-next-step:hover,
.btn-pay-now:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-back-step {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.btn-back-step:hover {
    color: #fff;
}

/* Method Selector Redesign */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #777;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.method-btn.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.method-btn i {
    font-size: 1.1rem;
}

.method-btn.active i.fa-pix {
    color: #32BCAD;
    /* Brand color for Pix */
}

/* Price summary Redesign */
.price-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    color: #888;
    font-size: 0.9rem;
}

.price-row strong {
    color: #fff;
    font-size: 1.2rem;
}

.custom-select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.secure-badges-mini {
    margin-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Pix Result Area */
.hidden {
    display: none !important;
}

.checkout-container .qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.checkout-container .qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.copy-paste-area {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.copy-paste-area textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    color: #ccc;
    font-size: 0.8rem;
    resize: none;
}

.copy-paste-area button {
    background: var(--color-secondary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.waiting-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Confetti styles removed */

/* =========================================
   SECURE LOADING OVERLAY
   ========================================= */
.secure-loading {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secure-loading.active {
    display: flex;
}

.secure-content {
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.lock-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    animation: pulseLock 1.5s infinite alternate;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.secure-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.secure-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.secure-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.secure-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    border-radius: 10px;
    animation: loadSecure 2.5s ease-in-out forwards;
}

@keyframes loadSecure {
    0% {
        width: 0%;
    }

    40% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 1.2rem;
}

.secure-badges i {
    opacity: 0.7;
}

.secure-badges span {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* --- Improved Pix UI --- */
#pix-result {
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

/* Pulsing QR Code Area */
.qr-container {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.qr-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Premium Bumps (Refined Compact Version) */
.order-bump-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    /* Reduced padding */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
}

.order-bump-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.order-bump-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
    animation: bounce 3s infinite;
}

.order-bump-title {
    font-size: 0.95rem !important;
    margin-bottom: 2px;
}

.order-bump-description {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px;
}

.order-bump-price {
    font-size: 0.95rem !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


.pix-instructions {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-paste-area {
    width: 100%;
    margin-bottom: 2rem;
}

#pix-copy-paste {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#btn-copy-pix {
    background: var(--color-secondary);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

#btn-copy-pix i {
    font-size: 1.5rem;
}

#btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#btn-copy-pix:active {
    transform: scale(0.95);
}

#btn-copy-pix.copied {
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Radar Animation for Waiting State */
.waiting-payment {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.radar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--color-secondary);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    animation: radarPulse 2s infinite;
    opacity: 0;
}

.radar-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.radar-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes radarPulse {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.waiting-payment p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.waiting-payment small {
    color: #888;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Transparency Trick --- */
.logo-transparent {
    filter: invert(1) brightness(200%);
    /* Force white on black */
}

.logo-footer {
    filter: invert(1);
    opacity: 0.8;
    height: 150px;
}

/* --- Order Bump Component --- */
#order-bump-area {
    margin: 1.5rem 0;
}

.order-bump-container {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px dashed var(--color-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.order-bump-container:hover {
    background: rgba(212, 175, 55, 0.1);
}

.order-bump-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-bump-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-secondary);
}

.order-bump-content {
    flex: 1;
}

.order-bump-tag {
    background: var(--color-accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.order-bump-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.order-bump-description {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

.order-bump-price {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        width: 95%;
    }

    .order-bump-container {
        padding: 0.4rem;
    }

    .order-bump-title {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMART VALIDATION STYLES
======================================== */

/* Input States */
.form-group input.valid {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Messages */
.field-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shake Animation for Errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.error-shake {
    animation: shake 0.5s;
}

/* ========================================
   iOS RESPONSIVENESS FIXES
======================================== */

/* Fix Testimonial Carousel for iOS */
.testimonial-carousel {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

.testimonial-track {
    will-change: auto !important;
    /* Remove will-change that causes iOS issues */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix Guarantee Image */
.guarantee-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fix Ebook Cover Proportions */
.combo-visual img,
.price-card img {
    width: auto !important;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
    margin: 10px auto;
}

/* Compact Product Cards on Mobile */
@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem !important;
        max-height: none;
        overflow-y: visible;
    }

    .price-card.featured {
        padding-top: 3rem !important;
        /* Even more space on mobile */
    }

    .price-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount {
        font-size: 2.2rem !important;
        margin: 0.8rem 0 !important;
    }

    .price-features {
        margin: 1rem 0 !important;
    }

    .price-features li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }

    .combo-visual,
    .price-card>img {
        margin: 0.5rem auto !important;
    }
}

/* Eliminate Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container,
.pricing-wrapper,
.pricing-grid,
.comparison-grid-v2,
.features-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS-only styles */
    .testimonial-track {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .price-card {
        -webkit-overflow-scrolling: touch;
    }

    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevent zoom on focus */
    }
}

/* Compact Comparison Section on Mobile */
@media (max-width: 768px) {
    .comparison-item-v2 {
        padding: 1.5rem 0 !important;
    }

    .comp-text {
        padding: 0 1rem;
    }

    .comp-text h3 {
        font-size: 1.3rem !important;
    }

    .comp-text p {
        font-size: 0.9rem !important;
    }

    .comp-check-list li {
        font-size: 0.85rem !important;
    }

    .img-wrapper,
    .img-wrapper-split {
        padding: 1rem 0 !important;
    }

    .split-side {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Fix Sticky CTA on iOS */
.sticky-cta-bar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   PREMIUM CHECKOUT OVERHAUL (GLASSMORPHISM)
   ======================================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    visibility: visible;
    opacity: 1;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-container {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-header p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Visual Card Mockup Styles */
.card-visual-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    width: 100%;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.586 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.card-visual.flipped {
    transform: rotateY(180deg);
}

.card-visual-front,
.card-visual-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-visual-front {
    z-index: 2;
}

.card-visual-back {
    transform: rotateY(180deg);
    padding: 0;
    justify-content: flex-start;
}

.card-visual-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-visual-brand {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-visual-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-visual-info {
    display: flex;
    justify-content: space-between;
}

.info-group label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.info-group div {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-visual-strip {
    width: 100%;
    height: 45px;
    background: #111;
    margin-top: 1.5rem;
}

.card-visual-cvv-box {
    margin: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
    text-align: right;
}

.card-visual-cvv-box label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.card-visual-cvv-box div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Method Tabs Redesign */
.method-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.method-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: #666;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn.active {
    color: #000;
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Premium Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 12px 12px 45px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

/* Smart Validation Colors */
.checkout-form input.is-valid {
    border-color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.05) !important;
}

.checkout-form input.is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

/* Error State */
.input-wrapper.error i {
    color: #ef4444;
}

/* Compact Form Rows */
.form-row-compact {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-row-compact>.form-group {
    flex: 1;
    margin-bottom: 0;
}

/* External Scan Button */
.btn-scan-card-outer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-scan-card-outer:hover {
    background: var(--color-secondary);
    color: #000;
}

.checkout-form input.invalid {
    border-color: #ef4444 !important;
}

/* Premium Button */
.btn-pay-now {
    width: 100%;
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #FFD700 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-pay-now:active {
    transform: scale(0.98);
}

/* Loading States */
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.checkout-total-display {
    font-size: 1.8rem;
    color: var(--color-secondary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-container {
        padding: 1.5rem;
        border-radius: 0;
        max-height: 100%;
        width: 100%;
    }

    .card-visual-number {
        font-size: 1.1rem;
    }

    .checkout-header h3 {
        font-size: 1.5rem;
    }
}

/* Sticky CTA Bar Base Styles */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-logo-wrapper {
    display: flex;
    align-items: center;
}

.sticky-logo {
    height: 100px;
    /* Bem imponente no desktop */
    transition: transform 0.3s ease;
}

.sticky-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        padding: 0 15px;
    }

    .sticky-logo {
        height: 70px !important;
        /* Ainda maior no mobile */
    }
}

.checkout-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Logo Animation */
.checkout-logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    opacity: 1;
    /* Inicia opaco */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.4s ease;
    /* Transição de saída suave */
}

.checkout-logo-overlay.active {
    display: flex;
}

.animate-logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    opacity: 0;
    will-change: transform, opacity;
}

.animate-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Animations Trigger */
.checkout-logo-overlay.active .animate-logo-container {
    animation:
        logoSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoPulse 1s ease-in-out 0.8s infinite alternate;
}

.checkout-logo-overlay.run-left .animate-logo-container {
    animation: logoRunLeft 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes logoSlideIn {
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

@keyframes logoRunLeft {
    to {
        transform: translateX(-110vw);
        opacity: 0;
    }
}

/* Centered Social Icons in Checkout */
.checkout-footer-social {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.checkout-footer-social p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links-checkout {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links-checkout .social-icon i {
    font-size: 1.8rem;
    /* Larger icons */
    transition: transform 0.3s ease;
}

.social-links-checkout .social-icon:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

/* Floating Toast Testimonials */
.float-toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    /* Above Checkout Modal (usually 9999) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideInOut 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast-content h4 {
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.toast-content h4 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 5px;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.2;
}

.toast-stars {
    color: #FFD700;
    font-size: 0.6rem;
    margin-top: 4px;
}

@keyframes toastSlideInOut {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

/* --- LEANER CHECKOUT VISUALS --- */
.payment-area .form-group {
    margin-bottom: 0.8rem !important;
    /* Tighter spacing */
}

.checkout-section {
    margin-bottom: 1.5rem !important;
    /* Reduce section gap */
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-form input,
.checkout-form select {
    padding: 10px 10px 10px 42px !important;
    /* Slightly more compact inputs */
    font-size: 0.95rem;
}

.method-selector.top-toggle {
    margin: 1rem 0 1.5rem !important;
    /* Reduce top/bottom margin */
}

.top-toggle .method-btn {
    padding: 12px !important;
    /* Slimmer buttons */
}

/* --- STICKY RIGHT LOGO FIX --- */
.sticky-right-logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 45px;
    /* Tamanho legal */
    width: auto;
    opacity: 1;
    /* Fully visible */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Mobile Adjustment for Logo */
@media (max-width: 768px) {
    .sticky-right-logo {
        height: 35px;
        right: 10px;
    }

    .sticky-cta-bar .btn {
        min-width: unset !important;
        padding: 0.6rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: auto;
    }
}

/* --- FORCE SUPER BIG STICKY LOGO (RETRY) --- */
.sticky-right-logo {
    height: 110px !important;
    width: auto !important;
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

.sticky-cta-bar .container {
    overflow: visible !important;
}

.sticky-cta-bar {
    overflow: visible !important;
}

@media (max-width: 768px) {
    .sticky-right-logo {
        height: 75px !important;
        right: 5px !important;
    }
}





/* --- PREMIUM 3D COVERS: PRE-RENDERED --- */
.price-card img {
    transition: transform 0.3s ease;
    border-radius: 8px;
    /* Smooth corners for the PNGs */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    /* Basic shadow for depth */
}

.price-card img:hover {
    transform: translateY(-5px) scale(1.02);
    /* Simple float effect */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.combo-visual img {
    width: 95px !important;
    border-radius: 4px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

/* Guarantee Section - Horizontal Layout */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.guarantee-img:hover {
    transform: scale(1.05);
}

.guarantee-content {
    text-align: left;
}

.guarantee-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary), #FFD700);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.guarantee-badge-icon i {
    font-size: 2rem;
    color: #000;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 350px;
    }

    .guarantee-content h2 {
        font-size: 2rem;
    }
}