/* CSS Reset & Variables */
:root {
    --black: #050505;
    --dark-bg: #0a0a0c;
    --dark-surface: #121110;
    --gold-light: #f5d78c;
    --gold: #cca852;
    --gold-dark: #917531;
    --earth: #3e2723;
    --text-primary: #ededed;
    --text-muted: #a19d94;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Lora', serif;
}

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

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

body {
    background-color: var(--black);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.glow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(204, 168, 82, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

h1,
h2,
h3,
h4,
.hero-headline {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    font-weight: 700;
}

.gold-text {
    color: var(--gold);
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.logo {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(204, 168, 82, 0.2);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--black);
    padding: 1.2rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(204, 168, 82, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    border: 1px solid var(--gold-light);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(204, 168, 82, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #fff1c4, var(--gold));
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    width: 100%;
    max-width: 400px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background:
        radial-gradient(circle at 70% 50%, rgba(62, 39, 35, 0.3) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23cca852' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    position: relative;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    color: var(--gold);
    border: 1px solid rgba(204, 168, 82, 0.4);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: rgba(204, 168, 82, 0.1);
}

.hero-headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-size: 1.1rem;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.urgency-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.8;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.cover-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 90%;
    background: var(--gold);
    filter: blur(100px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
    animation: pulse-glow 4s infinite alternate;
}

.book-cover {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 2px 0 10px rgba(204, 168, 82, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.book-cover:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    animation: bounce 2s infinite;
    z-index: 10;
}

/* Sections Common */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

/* Grid Layouts */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Pain Section */
.pain-section {
    background: linear-gradient(to bottom, var(--black), var(--dark-bg));
}

.mystical-sphere {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    position: relative;
    /* Imagem integral sem cortes */
    background: url('img/download.png') center/contain no-repeat;
}

/* Luz amarela redonda apenas atrás da imagem */
.mystical-sphere::before {
    content: '';
    position: absolute;
    top: 21%;
    bottom: 21%;
    left: 21%;
    right: 21%;
    border-radius: 50%;
    box-shadow: 0 0 120px 40px rgba(204, 168, 82, 0.6);
    z-index: -1;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.feature-list i {
    color: var(--gold);
}

.conclusion-text {
    font-style: italic;
    color: var(--gold-light);
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
}

/* Promise Section */
.promise-section {
    background-color: var(--dark-bg);
}

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

.card {
    background: var(--dark-surface);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(204, 168, 82, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(204, 168, 82, 0.3);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(204, 168, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

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

/* About Section */
.about-section {
    background: linear-gradient(to top, var(--black), var(--dark-bg));
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, rgba(18, 17, 16, 0) 0%, rgba(18, 17, 16, 1) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border-bottom: 1px solid rgba(204, 168, 82, 0.2);
}

.quote-icon {
    color: var(--gold);
    opacity: 0.3;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-content strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: block;
}

.author-name {
    font-family: var(--font-heading);
    color: var(--gold);
    font-style: italic;
    margin-top: 2rem !important;
}

/* Offer Section */
.offer-section {
    background: var(--black);
    position: relative;
    padding-bottom: 8rem;
}

.offer-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(30, 22, 10, 1) 0%, rgba(10, 10, 10, 1) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(204, 168, 82, 0.3);
    box-shadow: 0 0 50px rgba(204, 168, 82, 0.05);
}

.offer-title {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.offer-description {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.price-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.old-price {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.old-price span {
    text-decoration: line-through;
    color: #ff6b6b;
}

.current-price {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin: 0.5rem 0;
    text-shadow: 0 0 20px rgba(204, 168, 82, 0.3);
}

.price-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.timer {
    margin-bottom: 2rem;
}

.timer-text {
    color: #ff6b6b;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.timer-text::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.guarantee-text {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guarantee-text i {
    color: #4cd137;
    width: 18px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 25px rgba(204, 168, 82, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.floating-cta span {
    background: var(--black);
    color: var(--gold);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.floating-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(204, 168, 82, 0.6);
}

.floating-cta.hidden {
    pointer-events: none;
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-inline: auto;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-in"] {
    transform: scale(0.95);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

.visible[data-animate] {
    opacity: 1;
    transform: translate(0) scale(1);
}

@keyframes pulse-glow {
    0% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.pulse-animation {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 168, 82, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(204, 168, 82, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(204, 168, 82, 0);
    }
}

/* Responsive */
@media (max-width: 991px) {

    .hero-content,
    .grid-2-col {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-subheadline {
        margin: 0 auto 2.5rem;
    }

    .feature-list li {
        text-align: left;
    }

    .mystical-sphere {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .hero {
        padding-top: 6rem;
    }

    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        justify-content: center;
    }
}