/* Global Styles */
:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --primary-color: #00f3ff;
    /* Neon Cyan */
    --secondary-color: #7000ff;
    /* Neon Purple */
    --accent-color: #ff0055;
    /* Neon Red/Pink for alerts */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    opacity: 0.2;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px) translateZ(-200px);
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatingOrb 10s ease-in-out infinite alternate;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -50px;
    left: -50px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes floatingOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

/* Typography & Utilities */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cyber-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.badge {
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

.sub-headline {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
}

.cta-button.big-btn {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 243, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
    }
}

.slogan-small {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.7;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
}

.content-box h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.highlight-box {
    background: rgba(112, 0, 255, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 1rem;
    margin-top: 2rem;
    font-style: italic;
}

/* Method Section */
.method-section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #bbb;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.icon-box {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.features-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(0, 243, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: #b0b0b0;
}

/* Cost Section */
.cost-section {
    padding: 5rem 0;
    text-align: center;
}

.warning-box {
    border-color: var(--accent-color);
}

.warning-box h2 {
    color: var(--accent-color);
}

.quote {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: #fff;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0 8rem;
}

.offer-card {
    text-align: center;
    border: 2px solid var(--glass-border);
}

.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    z-index: -1;
    border-radius: 18px;
    /* Slightly larger than card */
    filter: blur(20px);
    opacity: 0.5;
}

.offer-card h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.offer-card>p {
    margin-bottom: 2rem;
}

.guarantee-box {
    margin-top: 3rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .guarantee-box {
        flex-direction: row;
        text-align: left;
    }
}

.badge-guarantee {
    background: #fff;
    color: #000;
    font-weight: 900;
    padding: 1rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transform: rotate(-5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.guarantee-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: #aaa;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #000;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid #111;
}

/* Animations Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Payment & Security Section */
.payment-security-container {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pay-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pay-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.pix-badge {
    background: rgba(50, 188, 173, 0.1);
    /* Standard Pix Greenish tint */
    border-color: #32bcad;
    color: #32bcad;
    font-weight: 700;
}

.pix-badge svg {
    fill: currentColor;
    width: 12px;
    height: 12px;
}

.security-badges {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.sec-item {
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Update: Offer/Closing Section Styles */

.offer-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.sub-offer {
    color: #bbb;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Price Box */
.price-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.condition-tag {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: bold;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.1rem;
}

.new-price {
    font-size: 1.2rem;
    color: #fff;
}

.big-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff88;
    /* Green for profit/success/money */
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    font-family: var(--font-heading);
    margin-left: 5px;
}

.payment-method-tag {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    font-size: 0.8rem;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: bold;
}

/* PIX Advantages */
.pix-advantages {
    margin: 2rem 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 8px;
}

.pix-advantages h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.advantages-list li::before {
    content: '►';
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Urgency Box */
.urgency-box {
    border: 1px dashed var(--accent-color);
    background: rgba(255, 0, 85, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #ffcccc;
}

/* How It Works Steps */
.how-it-works {
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.how-it-works h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 600px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-num {
    background: var(--glass-border);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-item p {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.3;
}

/* Security Footer */
/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #0a0a0a;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    text-align: center;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #fff;
}

.modal-step h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-step p {
    color: #bbb;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Form Styles */
.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--primary-color);
}

.secure-text {
    margin-top: 1rem;
    font-size: 0.8rem !important;
    opacity: 0.7;
}

/* Loader */
.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 243, 255, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hidden Class */
.hidden {
    display: none;
}

/* QR Code Step */
.expire-text {
    color: var(--accent-color) !important;
    font-weight: bold;
}

.qr-container {
    background: #fff;
    padding: 1rem;
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.qr-image {
    width: 200px;
    height: 200px;
    display: block;
}

.copy-paste-box {
    text-align: left;
    margin-bottom: 2rem;
}

.copy-paste-box label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #aaa;
}

.copy-input-group {
    display: flex;
    gap: 0.5rem;
}

.copy-input-group input {
    flex: 1;
    background: #151515;
    border: 1px solid #333;
    padding: 0.5rem;
    color: #fff;
    border-radius: 4px;
    font-size: 0.8rem;
}

.copy-btn {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #8e2de2;
}

.verify-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 0.9rem;
    animation: pulseText 2s infinite;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 1s infinite;
}