:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --accent-cyan: #06b6d4;
    --accent-cyan-glow: rgba(6, 182, 212, 0.6);
    --accent-pink: #ec4899;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-cyan {
    color: var(--accent-cyan);
}

.text-pink {
    color: var(--accent-pink);
}

.text-center {
    text-align: center;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--accent-cyan-glow);
    }

    50% {
        box-shadow: 0 0 20px var(--accent-cyan-glow);
    }

    100% {
        box-shadow: 0 0 5px var(--accent-cyan-glow);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}




.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* Focus on face/upper body */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.7) 0%,
            rgba(15, 23, 42, 0.85) 50%,
            var(--bg-dark) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    /* Fallback */
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-subtitle .font-bold {
    font-weight: 700;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--accent-cyan);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--accent-cyan-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px var(--accent-cyan-glow);
}

.pulse-glow {
    animation: glow 3s infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Villains Section */
.villains-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.villains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.villain-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.villain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-pink);
}

.villain-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.villain-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.villain-card:hover .villain-img {
    transform: scale(1.1);
}

.villain-content {
    padding: 2rem;
}

.villain-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.villain-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    overflow: hidden;
    /* For floating elements */
    background: radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-headline {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.solution-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.solution-list {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
}

.check-icon {
    color: var(--accent-cyan);
    margin-right: 10px;
    font-weight: bold;
}

.solution-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.report-mockup {
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.2));
}

@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .solution-list li {
        justify-content: center;
        text-align: left;
    }
}

/* Social Proof Section */
.social-proof-section {
    padding: 6rem 0;
    background-color: var(--bg-card);
    /* Slightly lighter dark */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-dark);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.avatar-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 2px solid var(--accent-pink);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Solution Details Grid */
.solution-grid-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.icon-box {
    margin-bottom: 1.5rem;
}

.detail-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.detail-text {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.mb-12 {
    margin-bottom: 3rem;
}



/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-bottom: none;
}

.faq-question {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    /* Remove default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
    color: var(--accent-pink);
}

.faq-answer {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin-top: -0.5rem;
}

.faq-answer strong {
    color: var(--accent-pink);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-card));
}

.price-box {
    background: var(--bg-dark);
    border: 2px solid var(--accent-cyan);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
    position: relative;
    overflow: hidden;
}

.price-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price-values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.price-installments {
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.btn-large {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    /* A bit larger */
}

.guarantee-box {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(236, 72, 153, 0.1);
    /* Pink tint */
    border-radius: 8px;
    border-left: 4px solid var(--accent-pink);
    text-align: left;
}

.warning-text {
    font-size: 0.9rem;
    color: #fca5a5;
    /* Light red/pink */
    line-height: 1.5;
}

.warning-text strong {
    color: var(--accent-pink);
}

.security-icons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.95);
    border-top: 1px solid var(--accent-cyan);
    padding: 1rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

.sticky-price {
    font-size: 1.2rem;
    color: var(--accent-cyan);
    font-weight: 700;
}

.sticky-btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

@media (max-width: 768px) {
    .sticky-title {
        display: none;
        /* Hide title on mobile to save space */
    }

    .sticky-price {
        font-size: 1.1rem;
    }

    .sticky-btn {
        padding: 0.7rem 1.5rem;
    }
}

.closing-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.closing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.closing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.closing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            var(--bg-dark) 0%,
            /* Blend with previous section */
            rgba(15, 23, 42, 0.7) 30%,
            rgba(15, 23, 42, 0.9) 100%);
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.closing-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .closing-title {
        font-size: 2rem;
    }

    .closing-section {
        height: 500px;
    }
}

/* Footer & Sticky Bar Safety Space */
footer {
    padding: 3rem 0 8rem 0;
    /* Extra bottom padding for sticky bar */
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-dark);
}

footer p {
    opacity: 0.7;
}