:root {
    --bg-dark: #0a0a0f;
    --bg-card: #15151e;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-gold: #c5a059;
    --accent-gold-hover: #d4b06a;
    --accent-red: #8a3333;
    /* For warnings/danger */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-cinzel: 'Cinzel', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: #fff;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Typography Basics */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 15px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, #d4b06a, #c5a059);
    color: #000;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
    transform: translateY(-2px);
}

/* Navigation Top */
.top-nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.back-link {
    background-color: var(--accent-gold);
    color: #000;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-link:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    color: #000;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content .subtitle {
    display: block;
    font-family: var(--font-cinzel);
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 700;
    /* Bold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    /* Shadow */
}

.hero-content h1 {
    font-family: var(--font-cinzel);
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-content .tagline {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--bg-dark);
}

.section-light {
    background-color: var(--bg-card);
}

.section-gold {
    background: linear-gradient(135deg, #1a1a24, #0a0a0f);
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    text-align: center;
}

/* Context Section */
.highlight-text {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 300;
    margin: 20px 0;
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
}

.col-text p {
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    /* Increased size */
}

/* Discover Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.alert-box {
    text-align: center;
    background: rgba(138, 51, 51, 0.15);
    border: 1px solid var(--accent-red);
    padding: 20px;
    border-radius: 8px;
    color: #ffcccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Platform Section */
.section-intro {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.content-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 40px auto 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.danger-list {
    list-style: none;
    margin: 30px 0;
}

.danger-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.danger-list li i {
    color: var(--accent-red);
    margin-right: 15px;
    font-size: 1.2rem;
}

.impact-statement {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Reflection Section */
#reflection h2 {
    font-family: var(--font-cinzel);
    color: var(--accent-gold);
}

#reflection p {
    font-size: 1.5rem;
    /* Increased size */
    max-width: 900px;
    margin: 1.5rem auto;
}

.vigil-box {
    margin-top: 40px;
    font-size: 2rem;
    font-family: var(--font-cinzel);
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.card-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-header .price {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: bold;
    text-transform: uppercase;
}

.card-body {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Support Section */
.support-content {
    text-align: center;
}

.support-content p {
    font-size: 1.4rem;
    /* Increased size */
    max-width: 900px;
    margin: 0 auto;
}

.pix-box {
    background: #fff;
    color: #000;
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pix-box i {
    color: #32bcad;
    /* Brand color of PIX approx */
    font-size: 1.5rem;
}

.contact-area {
    margin-top: 40px;
}

.link-contact {
    color: var(--accent-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-contact:hover {
    color: var(--accent-gold-hover);
    gap: 12px;
}

/* Footer */
footer {
    background: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

.footer-back-link {
    background-color: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.footer-back-link:hover {
    background-color: var(--accent-gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pix-box {
        flex-direction: column;
        border-radius: 12px;
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}