:root {
    /* Colors - Mysterious Blue & Gold/Yellow */
    --color-bg-dark: #050a15;
    --color-bg-medium: #0d162a;
    --color-bg-light: #162445;
    --color-primary: #f2c94c;
    /* Gold/Yellow */
    --color-primary-hover: #ffdb6e;
    --color-text-main: #f0f4f8;
    --color-text-muted: #a0aec0;

    --glass-bg: rgba(22, 36, 69, 0.4);
    --glass-border: rgba(242, 201, 76, 0.2);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Base glowing background effect */
body::before {
    content: '';
    position: fixed;
    top: -10vw;
    right: -10vw;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(242, 201, 76, 0.05) 0%, rgba(5, 10, 21, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20vw;
    left: -10vw;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(22, 36, 69, 0.5) 0%, rgba(5, 10, 21, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), #d4af37);
    color: var(--color-bg-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(242, 201, 76, 0.3);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 201, 76, 0.5);
    background: linear-gradient(135deg, var(--color-primary-hover), #f2c94c);
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--space-lg);
}

/* Typography utilities */
.text-gradient {
    background: linear-gradient(to right, #fff, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

.mt-md {
    margin-top: calc(var(--space-md) - 10px);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .section {
        padding: var(--space-lg) 0;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(5, 10, 21, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero>.container {
    margin: auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(242, 201, 76, 0.1);
    border: 1px solid rgba(242, 201, 76, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px;
}

.img-wrapper img {
    border-radius: 12px;
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(242, 201, 76, 0.2) 0%, transparent 70%);
    z-index: 1;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(242, 201, 76, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 4px 25px rgba(242, 201, 76, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(242, 201, 76, 0.3);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* About Section */
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.about-card {
    text-align: center;
    transition: transform var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 201, 76, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.about-card p {
    color: var(--color-text-muted);
}

/* Audience Section */
.audience-content {
    background: linear-gradient(135deg, rgba(22, 36, 69, 0.6), rgba(5, 10, 21, 0.8));
    display: flex;
    justify-content: center;
}

.audience-text {
    max-width: 800px;
}

.audience-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
    text-align: center;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    color: var(--color-text-main);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Differentials Section */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
}

.diff-card {
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.diff-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 201, 76, 0.5);
}

.diff-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(242, 201, 76, 0.15);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
    z-index: 0;
}

.diff-card h3,
.diff-card p {
    position: relative;
    z-index: 1;
}

.diff-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.diff-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Guarantee Section */
.guarantee {
    position: relative;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(242, 201, 76, 0.05), transparent);
    pointer-events: none;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-title h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.5rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-right {
    flex: 1;
}

.guarantee-right p {
    color: var(--color-text-main);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }

    .guarantee-left {
        flex-direction: column;
    }
}

/* Pricing Section */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 40px rgba(242, 201, 76, 0.15);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: 'MAIS VENDIDO';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--color-bg-dark);
    color: var(--color-primary);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    border: 1px solid var(--color-primary);
}

.pricing-header h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.pricing-header p {
    color: var(--color-text-muted);
}

.pricing-price {
    margin: var(--space-lg) 0 var(--space-sm);
    color: #fff;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.amount {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.pricing-note {
    color: #ffdb6e;
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
    font-weight: bold;
}

.btn-large {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
}

.secure-checkout {
    margin-top: var(--space-md);
    color: var(--color-text-muted);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-lg);
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-text-muted);
}

/* Footer Section */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #03060c;
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-contact h4,
.footer-links h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.footer-contact p,
.footer-links a {
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--space-md);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}