:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-red: #ff2a2a;
    --accent-red-dim: rgba(255, 42, 42, 0.15);
    --border-color: #222222;
    --font-heading: 'Fraunces', serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-mono);
    line-height: 1.6;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

/* Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Details */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.1;
}

::selection {
    background: var(--accent-red);
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 60px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
    padding: 6px 12px;
    margin-bottom: 32px;
    font-weight: 700;
}

.headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 32px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.headline span {
    color: var(--accent-red);
    font-style: italic;
    font-weight: 700;
}

.sub-headline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #a0a0a0;
    font-family: var(--font-mono);
    max-width: 90%;
    margin-bottom: 40px;
}

/* Letter Section */
.letter-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(255, 42, 42, 0.03) 0%, transparent 70%);
}

.letter-content {
    font-size: 1.125rem;
}

.letter-content p {
    margin-bottom: 24px;
}

.highlight-red {
    color: var(--accent-red);
    font-weight: 700;
}

.statement-box {
    border-left: 4px solid var(--accent-red);
    padding: 24px 32px;
    margin: 48px 0;
    background: var(--accent-red-dim);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    font-style: italic;
}

.statement-box p {
    margin: 0;
}

.price-tag {
    background: #ffffff;
    color: #000000;
    padding: 2px 8px;
    font-weight: 700;
}

/* CTA */
.cta-container {
    margin: 80px 0;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-red);
    color: #ffffff;
    padding: 24px 48px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(255, 42, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(255, 42, 42, 0.4);
    background-color: #ff1111;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-arrow {
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(8px);
}

.scarcity-text {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 120px;
    border-top: 1px solid var(--border-color);
}

.faq-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    background: #0a0a0a;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #444;
}

.faq-question {
    padding: 24px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::after {
    content: '+';
    color: var(--accent-red);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    color: #a0a0a0;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

/* Footer */
.site-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: #555;
}

/* Responsive */
@media (max-width: 600px) {
    .cta-button {
        padding: 20px 24px;
        font-size: 1.25rem;
        flex-direction: column;
        gap: 8px;
    }

    .cta-arrow {
        margin-left: 0;
        transform: rotate(90deg);
    }

    .cta-button:hover .cta-arrow {
        transform: rotate(90deg) translateX(8px);
    }
}

/* --- NOVO ESTILO PARA OFERTA E BANNER --- */

/* Top Banner */
.top-banner {
    background-color: var(--accent-red);
    color: #ffffff;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    margin-top: 16px;
    font-size: 1.2rem;
    padding: 20px 40px;
}

.offer-card {
    background-color: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 48px;
    margin: 60px auto 0;
    max-width: 720px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 42, 42, 0.1);
    position: relative;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff1111, var(--accent-red), #ff5555);
}

.offer-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #333;
}

.offer-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.offer-subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.offer-body p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 16px;
    line-height: 1.5;
}

.offer-pricing {
    text-align: center;
    margin: 40px 0;
}

.old-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 8px;
}

.new-price {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.new-price span {
    font-size: 2rem;
    color: #aaa;
}

.payment-method {
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.guarantee-box {
    display: flex;
    gap: 16px;
    background: #151515;
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
    align-items: flex-start;
}

.guarantee-icon {
    color: var(--accent-red);
    flex-shrink: 0;
}

.guarantee-text {
    font-size: 0.85rem;
    color: #bbb;
}

.guarantee-text strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.guarantee-text p {
    margin-bottom: 0;
}

.pulse-btn {
    animation: pulseRed 2s infinite;
    width: 100%;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 42, 42, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 42, 42, 0);
    }
}

.content-image-wrapper {
    margin: 48px 0;
    text-align: center;
}

.content-image.radius-medium {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #222;
}

.content-image.size-sm {
    max-width: 33.333%;
}

/* --- BIOPGRAPHY SECTION --- */
.bio-section {
    padding: 100px 0;
    background-color: #030303;
    border-top: 1px dashed var(--border-color);
    position: relative;
    overflow: hidden;
}

.bio-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 42, 42, 0.05) 0%, transparent 70%);
    top: 50%;
    left: -300px;
    transform: translateY(-50%);
    border-radius: 50%;
    pointer-events: none;
}

.bio-container {
    max-width: 960px;
    margin: 0 auto;
}

.bio-small-title {
    grid-area: small-title;
    font-size: 0.85rem;
    color: var(--accent-red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: var(--font-mono);
    font-weight: 700;
    align-self: end;
}

.bio-title {
    grid-area: main-title;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    align-self: start;
}

.bio-content {
    font-size: 1.125rem;
    color: #b0b0b0;
}

.bio-content p {
    margin-bottom: 24px;
    line-height: 1.6;
}

.bio-content p:first-of-type {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #fff;
    font-style: italic;
    margin-bottom: 32px;
}

.bio-statement {
    margin-top: 48px;
    font-size: 1.25rem;
}

@media (max-width: 600px) {
    .offer-card {
        padding: 32px 24px;
    }

    .top-banner {
        font-size: 0.75rem;
        padding: 10px 16px;
    }

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

    .guarantee-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bio-header-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "small-title"
            "image"
            "main-title";
        gap: 24px;
        margin-bottom: 32px;
        align-items: center;
        text-align: center;
    }

    .bio-image-wrapper {
        margin: 0 auto;
        max-width: 160px;
        border-radius: 50%;
    }

    .bio-title {
        font-size: 1.8rem;
    }

    .bio-small-title {
        font-size: 0.70rem;
        margin-bottom: 0px;
    }
}

.bio-header-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-areas:
        "image small-title"
        "image main-title";
    gap: 16px 48px;
    align-items: center;
    margin-bottom: 48px;
}

.bio-image-wrapper {
    grid-area: image;
    position: relative;
    border-radius: 40px;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    aspect-ratio: 1 / 1;
}

.bio-image-wrapper::after {
    display: none;
}

.bio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: none;
    transition: none;
}