:root {
    --bg-main: #0a0a0a;
    --bg-section: #121212;
    --bg-card: #181818;
    --bg-card-hover: #222222;
    --text-light: #f5f5f5;
    --text-muted: #a3a3a3;
    --gold: #c5a146;
    --gold-light: #e6c56a;
    --gold-glow: rgba(197, 161, 70, 0.25);
    --red-accent: #e53935;
    --red-glow: rgba(229, 57, 53, 0.4);
    --green-accent: #4caf50;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: var(--font-heading);
    font-weight: 600;
}

mark {
    background: none;
    color: var(--gold);
    font-style: italic;
    font-weight: bold;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.gold {
    color: var(--gold);
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--gold-glow);
    text-align: center;
}

.btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 161, 70, 0.4);
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 500px;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.98)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    z-index: -1;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 161, 70, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-badge-top i {
    font-size: 1.2rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero .subheadline {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Grid Cards (Who is it for) */
.audience-section {
    position: relative;
    background-image: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.95)), url('assets/bg_audience_texture.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 161, 70, 0.2);
    background: var(--bg-card-hover);
}

.card i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.card p {
    font-size: 1rem;
    font-weight: 500;
}

/* Pillars Section */
.pillars {
    background: var(--bg-section);
}

.pillar-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Method Intro Box */
.method-intro-box {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(197, 161, 70, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.method-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.method-intro-main {
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 2rem;
}

.gold-highlight {
    color: var(--gold);
    font-weight: 700;
}

.method-intro-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 161, 70, 0.3), transparent);
    margin: 0 auto 2rem;
    width: 60%;
}

.method-intro-sub {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.method-intro-question {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(197, 161, 70, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.method-intro-question i {
    font-size: 2.5rem;
    color: var(--gold);
}

.method-intro-question div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.method-intro-question p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.method-intro-question span {
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
}

@media (max-width: 768px) {
    .method-intro-box {
        padding: 2rem 1.5rem;
    }

    .method-intro-main {
        font-size: 1.3rem;
    }

    .method-intro-question {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .method-intro-question div {
        text-align: center;
    }
}

.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pillar-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border-left: 4px solid var(--gold);
    position: relative;
}

.pillar-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.pillar-item h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pillar-item ul {
    list-style: none;
    margin: 1.5rem 0;
}

.pillar-item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.pillar-item ul li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pillar-item h4 {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.pillar-result {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: var(--gold);
}

/* Modules / Steps */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid rgba(197, 161, 70, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
}

.module-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(197, 161, 70, 0.05);
    font-weight: 700;
    line-height: 1;
}

.module-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.module-card .desc {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.check-list {
    list-style: none;
    position: relative;
    z-index: 2;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.check-list li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--gold);
    font-size: 1.2rem;
}

.target-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(197, 161, 70, 0.05);
    border-radius: 8px;
    font-size: 0.95rem;
}

.target-icon {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* Bonus */
.bonus-section {
    background: var(--bg-section);
    padding: 6rem 0;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--red-accent);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 20px var(--red-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .bonus-content {
        grid-template-columns: 1fr;
    }
}

.bonus-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* Guarantee & Deliverables */
.guarantee-box {
    text-align: center;
    margin-bottom: 4rem;
}

.guarantee-box i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.deliverables-grid li {
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Author */
.author-section {
    background: var(--bg-section);
}

.author-card {
    background: var(--bg-card);
    border: 1px solid rgba(197, 161, 70, 0.3);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(135deg, rgba(197, 161, 70, 0.05) 0%, transparent 100%);
}

.author-bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .author-bio {
        flex-direction: row;
        align-items: flex-start;
    }
}

.author-img {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    object-fit: cover;
}

.author-text-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.author-bio h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.author-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.highlight-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 2px;
}

.author-story {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.author-quote {
    position: relative;
    text-align: center;
    padding: 2.5rem 2rem;
    border-top: 1px dashed rgba(197, 161, 70, 0.3);
    border-bottom: 1px dashed rgba(197, 161, 70, 0.3);
}

.author-quote i {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    padding: 0 1rem;
    color: var(--gold);
    font-size: 2.2rem;
}

.author-quote p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
    font-style: italic;
}

@media (max-width: 768px) {
    .author-card {
        padding: 2rem 1.5rem;
    }
}

/* FAQ / Objections */
.faq-box {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.faq-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: var(--font-body);
}

.faq-box p,
.faq-box ul {
    color: var(--text-muted);
}

.faq-box ul {
    margin: 1rem 0;
    list-style: none;
}

.faq-box ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-box ul li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* VS Section */
.vs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .vs-container {
        display: flex;
        flex-direction: column;
    }
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--bg-main);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold);
    z-index: 10;
}

@media (max-width: 768px) {
    .vs-badge {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        transform: none;
        margin: -1rem auto;
        order: 2;
    }

    .vs-card.negative {
        order: 1;
    }

    .vs-card.positive {
        order: 3;
    }
}

.vs-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
}

.vs-card.negative {
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.vs-card.positive {
    border: 1px solid rgba(197, 161, 70, 0.3);
}

.vs-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vs-card.negative .vs-title i {
    color: var(--red-accent);
}

.vs-card.positive .vs-title i {
    color: var(--gold);
}

.vs-list {
    list-style: none;
}

.vs-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
}

.vs-card.negative .vs-list i {
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.vs-card.positive .vs-list i {
    color: var(--gold);
    margin-top: 0.2rem;
}

/* Pricing */
.pricing-section {
    text-align: center;
    padding: 6rem 0;
    background: radial-gradient(circle at center, var(--bg-card) 0%, var(--bg-main) 100%);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto 3rem;
    background: var(--bg-section);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(197, 161, 70, 0.1);
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price-installment {
    font-size: 1.2rem;
}

.price-main {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--gold);
    line-height: 1;
    margin: 0.5rem 0;
}

.price-cash {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .bonus-card {
        padding: 2rem 1.5rem;
    }
}

/* Testimonials Carousel */
.testimonials-carousel-section {
    background: var(--bg-main);
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0 3rem;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll-carousel 30s linear infinite;
    gap: 20px;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-slide {
    flex-shrink: 0;
    width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #fff;
}

.carousel-slide img {
    width: 100%;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 6 - 20px * 6));
    }
}

/* Responsiveness for carousel */
@media (max-width: 768px) {
    .carousel-slide {
        width: 300px;
    }

    @keyframes scroll-carousel {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-300px * 6 - 20px * 6));
        }
    }
}

/* Premium Guarantee Card */
.guarantee-premium-card {
    background: linear-gradient(145deg, var(--bg-card), #1a1a1a);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto 5rem;
    box-shadow: 0 15px 40px rgba(197, 161, 70, 0.1);
}

.guarantee-premium-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--gold), transparent, transparent, var(--gold));
    z-index: -1;
    opacity: 0.3;
}

.guarantee-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: #000;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px var(--gold-glow);
}

.guarantee-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .guarantee-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .guarantee-premium-card {
        padding: 2.5rem 1.5rem;
    }

    .guarantee-steps-list li {
        justify-content: center;
    }
}

.guarantee-icon-container {
    flex-shrink: 0;
}

.guarantee-icon-container i {
    font-size: 6rem;
    color: var(--gold);
    filter: drop-shadow(0 0 20px var(--gold-glow));
}

.guarantee-text-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.guarantee-steps-list {
    list-style: none;
    margin-bottom: 2rem;
}

.guarantee-steps-list li {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.guarantee-steps-list li i {
    color: var(--green-accent);
    font-size: 1.2rem;
}

.guarantee-no-bureaucracy {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    padding: 1rem 1.5rem;
    background: rgba(197, 161, 70, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    display: inline-block;
}

.deliverables-header {
    margin-bottom: 3rem;
    text-align: center;
}

.deliverables-header h3 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.deliverables-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    width: 250px;
    margin: 0 auto;
}

/* Secure Badges */
.buy-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-badge-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

@media (max-width: 576px) {
    .buy-trust-badges {
        gap: 0.8rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-badge-item {
        font-size: 0.8rem;
    }

    .trust-badge-item i {
        font-size: 1rem;
    }
}