:root {
    --primary: #c5a059; /* Metallic Gold */
    --primary-gradient: linear-gradient(135deg, #c5a059 0%, #f1d38e 50%, #b38b47 100%);
    --secondary: #000000; /* Pure Black */
    --accent: #ffffff; /* White */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    scroll-behavior: smooth;
}

/* Custom Cursor */
#custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    box-shadow: 0 0 20px var(--primary);
}

/* Progress Bar */
#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.05);
}

#progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    box-shadow: 0 0 10px var(--primary);
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    position: relative;
    cursor: none; /* Hide default for custom cursor */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/pinstripe-dark.png');
    opacity: 0.1;
    pointer-events: none;
    z-index: 9999;
}

h1 {
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gold-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
}

#main-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

/* Hero Section */
#hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.95)), 
                url('https://images.unsplash.com/photo-1516589174184-e6646f658867?q=80&w=1587&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary);
    font-size: 1.5rem;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #0a0a0a, transparent);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px; /* Increased to fit the single line subtitle */
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

#hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -2px;
}

#hero .subtitle {
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 3rem;
    font-weight: 400;
    white-space: normal; /* Fix for mobile so it doesn't break horizontal scroll */
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
}

.premium-white-text {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.4),
                 0 0 20px rgba(197, 160, 89, 0.2),
                 0 0 30px rgba(197, 160, 89, 0.1);
    font-weight: 900;
}

.premium-list li {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(197, 160, 89, 0.3);
}

.hero-image-asset-large {
    max-width: 500px;
    width: 100%;
    filter: drop-shadow(0 0 40px rgba(197, 160, 89, 0.4));
    animation: floatLarge 8s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-10deg);
}

@keyframes floatLarge {
    0% { transform: perspective(1000px) rotateY(-10deg) translateY(0px) rotate(0deg); }
    50% { transform: perspective(1000px) rotateY(-10deg) translateY(-30px) rotate(5deg); }
    100% { transform: perspective(1000px) rotateY(-10deg) translateY(0px) rotate(0deg); }
}

.img-glow {
    filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.6));
    animation: float 4s ease-in-out infinite;
}

.hero-image-asset {
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.5));
    animation: float 6s ease-in-out infinite;
}

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

.cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-gradient);
    color: #000;
    font-weight: 800;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border: 2px solid var(--primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary);
}

.secure-checkout {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    padding-left: 25px;
}

/* Social Proof */
#social-proof {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.stats {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 0;
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 3rem;
    color: var(--primary);
    font-weight: 800;
}

/* Problem Section */
#problem {
    padding: 120px 0;
    background: #050505;
}

#problem h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #fff;
}

.problem-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary);
    z-index: -1;
}

/* Quotes Section */
.quote-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.quote-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border-top: 2px solid var(--primary);
    display: flex;
    align-items: center;
    min-height: 180px;
    transition: var(--transition);
}

.quote-card:hover {
    transform: translateY(-10px);
    background: #181818;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.quote-card p {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .quote-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .quote-grid {
        grid-template-columns: 1fr;
    }
    .quote-card {
        min-height: auto;
        padding: 2rem;
    }
}

/* Section Common Titles */
.section-title {
    margin-bottom: 4rem;
    max-width: 800px;
}

.section-title h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-top: 1rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Learning Section */
#learning {
    padding: 120px 0;
    background: var(--bg-dark);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.module-card {
    padding: 3.5rem 2.5rem;
    background: #111;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 4px;
}

.module-card:hover {
    border-bottom: 3px solid var(--primary);
    background: #181818;
}

.module-card h3 {
    color: #fff;
}

.module-card p {
    color: var(--text-muted);
}

/* Pricing Card */
#pricing {
    padding: 120px 0;
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: #0a0a0a;
    padding: 5rem 3rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.pricing-tag {
    display: inline-block;
    background: var(--primary-gradient);
    color: #000;
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.price-box {
    margin-bottom: 3.5rem;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.new-price {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    line-height: 1;
}

.new-price span {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
}

.benefits-pricing {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
    max-width: 500px;
    margin: 2rem auto 3.5rem auto;
}

.benefits-pricing p {
    font-size: 1rem;
    color: var(--text-muted);
}





/* Bonus Section */
#bonuses {
    padding: 120px 0;
    background: #000;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.bonus-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.highlight-bonus {
    border: 1px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.bonus-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #000;
    padding: 0.3rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 800;
}

.bonus-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.bonus-card .value {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: line-through;
    opacity: 0.6;
}

/* Expert Section */
#expert {
    padding: 120px 0;
    background: #050505;
}

.expert-image {
    position: relative;
}

.img-bw {
    width: 100%;
    filter: grayscale(1) contrast(1.1);
    border-radius: 2px;
}

.expert-text .signature {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-top: 2rem;
    font-style: italic;
}

/* FAQ Section */
#faq {
    padding: 120px 0;
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 2rem 0;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: var(--text-muted);
}

.faq-answer p {
    padding-bottom: 2rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.icon {
    transition: transform 0.3s ease;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.payment-methods img {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* Final Call Section */
#final-call {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: #000;
    overflow: hidden;
}

.final-call-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.final-call-content {
    flex: 1.2;
    min-width: 320px;
    text-align: left;
}

.final-call-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #000;
}

.final-call-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 600;
    opacity: 0.9;
    max-width: 500px;
    color: #000;
}

.final-call-content p span {
    text-decoration: underline;
}

.final-call-btn {
    background: #000 !important;
    color: #fff !important;
    padding: 1.5rem 3.5rem !important;
    font-size: 1.1rem !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.final-call-image {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: visible; /* To allow the frame shadow to show */
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1); /* Slower, smoother transition */
    display: flex;
}

.carousel-slide {
    position: relative;
    top: 0;
    bottom: 0;
    width: 100%;
    flex-shrink: 0;
    padding: 20px; /* Space for the frame and shadow */
    display: flex;
    justify-content: center;
}

/* Seamless Marquee */
.scrolling-text-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    margin-top: -10px; /* Pull it closer to photos */
    margin-bottom: 20px;
    display: flex;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-content span {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.7);
    padding: 0 10px;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-100%); /* Adjusted due to indicators/text below */
    z-index: 20;
    pointer-events: none;
}

.carousel-button {
    position: absolute;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-button:hover {
    background: var(--primary);
    color: #000;
}

.carousel-button--left { left: -25px; }
.carousel-button--right { right: -25px; }

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.current-indicator {
    background: #000;
    transform: scale(1.4);
}

.image-perspective {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.jackson-img {
    width: auto;
    max-width: 100%;
    max-height: 400px; /* Prevents overflow */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
    display: block;
}

.image-perspective:hover .jackson-img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 30px;
    z-index: -1;
}

@media (max-width: 768px) {
    .final-call-content {
        text-align: left;
        min-width: 0 !important;
        width: 100%;
    }
    .final-call-image {
        min-width: 0 !important;
        width: 100%;
    }
    .carousel-container {
        margin-left: 0 !important;
    }
    .final-call-content p {
        font-size: 1.05rem;
        max-width: 260px; /* Força o texto a quebrar a linha cedo, ficando estreito e bonito */
        line-height: 1.4;
        margin-right: auto;
    }
    .final-call-wrapper {
        gap: 2rem;
        align-items: flex-start;
    }
    .final-call-btn {
        width: auto !important; /* Remove os 100% */
        padding: 1rem 1.5rem !important; /* Botão mais curto e ajustado */
        font-size: 0.85rem !important;
        box-sizing: border-box;
        text-align: center;
        display: inline-block !important; /* Alinha à esquerda acompanhando o texto */
        margin-left: 0;
    }
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid #eee;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    width: 95%;
    max-width: 500px;
    padding: 3rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Form Styles */
.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 1rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    border-radius: 2px;
    transition: var(--transition);
}

.checkout-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.hidden {
    display: none !important;
}

.payment-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.payment-option svg {
    color: var(--text-muted);
    transition: var(--transition);
}

.payment-option span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.payment-option.active {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--primary);
}

.payment-option.active span, .payment-option.active svg {
    color: var(--primary);
}

/* Pix Info Card */
.pix-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--primary);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.pix-header {
    text-align: center;
    margin-bottom: 1rem;
}

.pix-header strong {
    display: block;
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pix-key-wrapper {
    display: flex;
    background: #000;
    padding: 0.8rem;
    border-radius: 2px;
    justify-content: space-between;
    align-items: center;
}

#pix-key {
    font-family: monospace;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 1px;
}

.copy-pix {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 0.3rem 0.8rem;
    font-size: 0.6rem;
    font-weight: 900;
    cursor: pointer;
    border-radius: 2px;
}

.pix-value {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.pix-value strong {
    color: var(--primary);
    font-size: 1.4rem;
}

/* Card Form Specifics */
.card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    #main-header .container {
        justify-content: center;
    }
    
    #main-header .btn-secondary {
        display: none;
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding-top: 100px;
    }

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

    .hero-text-area h1 {
        font-size: clamp(2.5rem, 15vw, 4rem) !important;
        line-height: 1;
    }

    .hero-text-area .subtitle {
        text-align: center;
        white-space: normal;
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }

    .hero-text-area .cta-group {
        justify-content: center;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-image-area {
        justify-content: center;
        margin-top: 1rem;
    }

    .hero-image-asset-large {
        max-width: 200px;
        transform: rotate(0) !important;
    }

    .stats {
        flex-direction: column;
        gap: 2.5rem;
        padding: 3rem 1.5rem;
        margin-top: -40px;
        margin-bottom: 60px;
    }

    .stat-item strong {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .premium-white-text {
        font-size: 1.8rem !important;
    }

    .pricing-card {
        padding: 3rem 1.5rem;
    }

    .new-price {
        font-size: 3.5rem;
    }

    .benefits-pricing {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .modal-content {
        padding: 2.5rem 1.5rem;
        width: 92%;
    }

    .card-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .carousel-track-container {
        height: auto;
    }

    .jackson-img {
        max-height: 300px;
        transform: perspective(1000px) rotateY(0) rotateX(0) !important;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }

    .carousel-button--left { left: 0; }
    .carousel-button--right { right: 0; }
}

@media (max-width: 480px) {
    .hero-text-area h1 {
        font-size: 2.5rem !important;
    }
    
    .new-price {
        font-size: 2.8rem;
    }
}

/* Background Glow Elements */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.5;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    background: var(--primary);
    opacity: 0.15;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-1 { width: 600px; height: 600px; top: -10%; left: -10%; background: var(--primary); }
.orb-2 { width: 500px; height: 500px; bottom: 10%; right: -5%; background: #96702d; animation-delay: -5s; }
.orb-3 { width: 400px; height: 400px; top: 40%; left: 30%; background: #f1d38e; animation-delay: -10s; }

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.1); }
}

/* Glassmorphism Updates */
.quote-card, .module-card, .bonus-card, .pricing-card, .modal-content {
    background: rgba(17, 17, 17, 0.7) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(197, 160, 89, 0.4);
    z-index: 1000;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.wa-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 
                0 0 35px rgba(197, 160, 89, 0.8);
}

.wa-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff3b30;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulseBadge 2s infinite;
}

/* Section Dividers */
.section-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: transparent;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.section-divider .shape-fill {
    fill: #050505;
}

.section-divider.flip {
    transform: rotate(180deg);
}

/* Testimonials Bento Grid */
.testimonial-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
    margin-top: 4rem;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.bento-lg {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(17, 17, 17, 0.9) 100%);
}

.testimonial-author {
    margin-top: auto;
}

/* Stats Logic */
.stats {
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin: -80px auto 100px auto;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(15px);
}




/* Hero Layout Refined */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text-area {
    flex: 1.2;
    text-align: left;
}

.hero-text-area .subtitle {
    text-align: left;
    margin-bottom: 2.5rem;
}

.hero-text-area .cta-group {
    justify-content: flex-start;
}

.hero-image-area {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

.hero-image-asset-large {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(197, 160, 89, 0.3));
    transform: rotate(-10deg);
}

/* Responsive System */

/* Laptop / Small Desktop */
@media (max-width: 1200px) {
    .container { padding: 0 4rem; }
    .hero-content-wrapper { gap: 2rem; }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-text-area .subtitle {
        text-align: center;
    }

    .hero-text-area .cta-group {
        justify-content: center;
    }

    .hero-image-area {
        justify-content: center;
    }

    .hero-image-asset-large {
        max-width: 300px;
    }

    .module-grid, #target .grid, .grid {
        grid-template-columns: 1fr;
    }
    
    .bento-lg {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    #main-header .container {
        justify-content: center;
    }
    
    #main-header .btn-secondary {
        display: none; /* Hide button on mobile header to avoid clutter */
    }

    .hero-image-asset-large {
        max-width: 250px;
    }

    section {
        padding: 80px 0 !important;
    }

    .section-title h2, .final-call-content h2 {
        font-size: 2.2rem !important;
        line-height: 1.1;
        word-wrap: break-word;
        hyphens: auto;
    }

    .quote-card {
        padding: 2rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    #hero {
        background-attachment: scroll !important;
    }

    body::before {
        background-attachment: scroll !important;
    }
    
    .pricing-card {
        padding: 3rem 1.5rem;
    }

    /* Adaptação de botões */
    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 1.2rem 1rem;
        font-size: 0.9rem;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    /* Reduzindo tamanho da fonte principal e padding lateral */
    #hero h1 {
        font-size: 2.5rem;
    }
    #hero .subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .premium-list li {
        font-size: 1.1rem;
    }
    
    /* Refinando grids para garantir coluna única e sem overflow */
    .grid, .module-grid, .quote-grid, .ebooks-grid, .stats {
        flex-direction: column;
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .stats {
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    /* Carousel Adjustments */
    .carousel-image {
        height: 250px;
    }
}

/* Disable Custom Cursor on Touch Devices */
@media (hover: none) and (pointer: coarse) {
    #custom-cursor {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/* Final Call Adjustments */
@media (max-width: 992px) {
    .final-call-wrapper {
        flex-direction: column;
        text-align: left;
    }
    .final-call-content {
        padding-right: 0;
        margin-bottom: 4rem;
        text-align: left;
    }
}


@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 59, 48, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

/* Reveal Animations */
.module-card, 
.bonus-card, 
.expert-text, 
.expert-image, 
.stat-item, 
.pricing-card, 
.faq-item, 
.quote-card, 
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.module-card.active, 
.bonus-card.active, 
.expert-text.active, 
.expert-image.active, 
.stat-item.active, 
.pricing-card.active, 
.faq-item.active, 
.quote-card.active, 
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.quote-card:nth-child(2) { transition-delay: 0.1s; }
.quote-card:nth-child(3) { transition-delay: 0.2s; }
.quote-card:nth-child(4) { transition-delay: 0.3s; }
.quote-card:nth-child(5) { transition-delay: 0.1s; }
.quote-card:nth-child(6) { transition-delay: 0.2s; }
.quote-card:nth-child(7) { transition-delay: 0.3s; }
.quote-card:nth-child(8) { transition-delay: 0.4s; }

.module-card:nth-child(2) { transition-delay: 0.1s; }
.module-card:nth-child(3) { transition-delay: 0.2s; }
.module-card:nth-child(4) { transition-delay: 0.3s; }

/* Ebook Store Section */
#loja-ebooks {
    padding: 100px 0;
    background: #000;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ebook-card {
    background: var(--bg-card);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.ebook-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
    border-color: var(--primary);
}

.ebook-cover {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary);
}

.ebook-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ebook-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ebook-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.ebook-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}

.ebook-price span {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 400;
}
