﻿:root {
    --bg-color: #030303;
    --card-bg: #0a0a0a;
    --primary: #00ff41;
    --primary-dim: rgba(0, 255, 65, 0.1);
    --primary-glow: rgba(0, 255, 65, 0.3);
    --secondary: #9400D3;
    --text-color: #e0e0e0;
    --text-muted: #666;
    --border-color: #1a1a1a;
    --error-color: #ff3333;
    --gradient-1: linear-gradient(135deg, #00ff41 0%, #00cc33 100%);
    --gradient-2: linear-gradient(135deg, #9400D3 0%, #00ff41 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    overflow: hidden;
    position: relative;
}

/* Background Effects */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(148, 0, 211, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 255, 65, 0.01) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.main-container {
    display: flex;
    width: 100%;
    height: 100%;
}

/* ========== LOGIN SECTION ========== */
.login-container {
    width: 420px;
    min-width: 420px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    border-right: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.login-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.form-card {
    padding: 40px;
    width: 100%;
    max-width: 340px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-40px);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

#solicitar-login-card {
    display: none;
}

.icon-container {
    width: 320px;
    height: 320px;
    background: transparent;
    border: 0;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    box-shadow: none;
    animation: none;
    transform: none;
    transition: none;
}

@media (max-width: 480px) {
    .icon-container {
        width: 220px;
        height: 220px;
        transform: translateY(-90px);
        border-radius: 24px;
    }

    .icon-container img,
    .icon-container .brand-logo {
        width: 95%;
        height: 95%;
        transform: translateX(-18px);
        transform-origin: center center;
    }
}

.terminal-icon {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 10px var(--primary);
}

.icon-container img,
.icon-container .brand-logo {
    width: 98%;
    height: 98%;
    object-fit: contain;
    display: block;
    transform: translateX(-18px);
    transform-origin: center center;
    margin: 0 auto;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 65, 0.15), inset 0 0 20px rgba(0, 255, 65, 0.05);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 65, 0.25), inset 0 0 30px rgba(0, 255, 65, 0.1);
    }
}

h1 {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
    text-align: center;
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

h2.form-title {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    margin-bottom: 32px;
    letter-spacing: 3px;
    font-family: 'JetBrains Mono', monospace;
}

.form-group {
    margin-bottom: 20px;
}

.input-status {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 0.5px;
    min-height: 14px;
}

.input-status.is-ok {
    color: var(--primary);
}

.input-status.is-error {
    color: var(--error-color);
}

label {
    display: block;
    color: var(--primary);
    font-size: 10px;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    opacity: 0.8;
}

input {
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Inter', sans-serif;
}

input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.15);
    background-color: rgba(10, 10, 10, 0.95);
}

input::placeholder {
    color: #3a3a3a;
}

input:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-color);
    -webkit-box-shadow: 0 0 0 1000px #0a0a0a inset;
    transition: background-color 9999s ease-in-out 0s;
}

button {
    width: 100%;
    background: var(--gradient-1);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    box-shadow: 0 4px 20px rgba(0, 255, 65, 0.3);
    font-family: 'JetBrains Mono', monospace;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 65, 0.4);
}

button:active {
    transform: translateY(0);
}

.solicitar-login-btn {
    background: var(--gradient-2);
    box-shadow: 0 4px 20px rgba(148, 0, 211, 0.3);
}

.solicitar-login-btn:hover {
    box-shadow: 0 6px 30px rgba(148, 0, 211, 0.4);
}

.voltar-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    box-shadow: none;
    margin-top: 16px;
}

.voltar-btn:hover {
    background: var(--primary-dim);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
}

.error-msg {
    background-color: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    color: #ff5555;
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.footer-info {
    margin-top: 32px;
    text-align: center;
    font-size: 10px;
    color: #2a2a2a;
    font-family: 'JetBrains Mono', monospace;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.plano-btn {
    flex: 1;
    padding: 14px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace;
}

.plano-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
    transform: none;
}

.plano-basico {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: #fff;
    border: 1px solid #444;
}

.plano-basico:hover {
    background: linear-gradient(135deg, #444 0%, #333 100%);
    border-color: #555;
}

.plano-pro {
    background: var(--gradient-2);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(148, 0, 211, 0.3);
}

.plano-pro:hover {
    box-shadow: 0 6px 25px rgba(148, 0, 211, 0.4);
}

/* ========== NEWS/LANDING SECTION ========== */
.news-section {
    flex-grow: 1;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(135deg, #030303 0%, #0a0a0a 50%, #050505 100%);
}

.news-section::-webkit-scrollbar {
    width: 6px;
}

.news-section::-webkit-scrollbar-track {
    background: #0a0a0a;
}

.news-section::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.news-section::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.news-content,
.plan-content {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.plan-content {
    display: none;
    padding: 60px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 60px;
    position: relative;
    text-align: center;
}

.hero-section.no-badge {
    padding-top: 200px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 32px;
    font-family: 'JetBrains Mono', monospace;
    animation: fadeInUp 0.8s ease;
}

.persona-toggle {
    display: inline-flex;
    gap: 12px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 0, 0, 0.35);
    margin-bottom: 28px;
}

.persona-btn {
    border: 1px solid transparent;
    background: rgba(0, 255, 65, 0.12);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    box-shadow: none;
    margin-top: 0;
}

.persona-btn.is-active {
    background: rgba(0, 255, 65, 0.25);
    border-color: rgba(0, 255, 65, 0.5);
    color: #000;
}

.persona-btn.persona-btn-alt {
    background: rgba(148, 0, 211, 0.15);
    color: #d7b3ff;
}

.persona-btn.persona-btn-alt.is-active {
    background: rgba(148, 0, 211, 0.35);
    border-color: rgba(148, 0, 211, 0.6);
    color: #16001f;
}

.persona-swap {
    animation: persona-slide 0.35s ease;
}

@keyframes persona-slide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.35s backwards;
}

.hero-company-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: rgba(220, 245, 255, 0.96);
    background: linear-gradient(135deg, rgba(0, 140, 255, 0.28) 0%, rgba(0, 255, 255, 0.08) 100%);
    border: 1px solid rgba(0, 160, 255, 0.55);
    box-shadow:
        0 0 0 1px rgba(0, 160, 255, 0.15),
        0 18px 40px rgba(0, 0, 0, 0.55),
        0 0 28px rgba(0, 160, 255, 0.22),
        inset 0 0 26px rgba(0, 160, 255, 0.10);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-company-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(90, 210, 255, 0.85);
    box-shadow:
        0 0 0 1px rgba(90, 210, 255, 0.22),
        0 22px 60px rgba(0, 0, 0, 0.62),
        0 0 42px rgba(0, 160, 255, 0.35),
        inset 0 0 32px rgba(0, 160, 255, 0.14);
}

.hero-company-btn:active {
    transform: translateY(0px);
}

.hero-company-btn:focus-visible {
    outline: 2px solid rgba(90, 210, 255, 0.85);
    outline-offset: 3px;
}

.hero-company-btn-icon {
    font-size: 14px;
    opacity: 0.9;
    transform: translateY(-1px);
}

.zigzag-section {
    padding: 80px 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.zigzag-item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}


.zigzag-item.reverse .zigzag-text {
    order: 1;
}

.zigzag-item.reverse .zigzag-media {
    order: 2;
}

.zigzag-media {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    background: transparent;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(0, 0, 0, 0.45);
}

.zigzag-media img {
    width: 100%;
    display: block;
    height: auto;
    max-height: 320px;
    object-fit: cover;
}

.zigzag-media.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    border-style: dashed;
    border-color: rgba(148, 0, 211, 0.3);
    background: rgba(148, 0, 211, 0.08);
}

.zigzag-placeholder {
    font-family: 'JetBrains Mono', monospace;
    color: rgba(214, 183, 255, 0.8);
    letter-spacing: 1px;
    font-size: 12px;
}

.zigzag-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary);
}

.zigzag-text p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features-section {
    padding: 80px 60px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-family: 'JetBrains Mono', monospace;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 65, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 255, 65, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.15) 0%, rgba(0, 255, 65, 0.05) 100%);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Tools Section */
.tools-section {
    padding: 80px 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 65, 0.02) 50%, transparent 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.tool-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-item:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 65, 0.05);
    transform: scale(1.05);
}

.tool-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.tool-name {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

/* CTA Section */
.cta-section {
    padding: 100px 60px;
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(148, 0, 211, 0.1) 100%);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 24px;
    padding: 60px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-title {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-1);
    color: #000;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    border: none;
}

.cta-button.solicitar-login-btn {
    background: var(--gradient-2);
    box-shadow: 0 4px 20px rgba(148, 0, 211, 0.3);
}

.cta-button.solicitar-login-btn:hover {
    box-shadow: 0 6px 30px rgba(148, 0, 211, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Plan Content Styling */
.plan-content h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.plan-content ul {
    list-style: none;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.plan-content ul li {
    margin-bottom: 16px;
    font-size: 15px;
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.plan-content ul li:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 65, 0.05);
}

.check-icon {
    color: var(--primary);
    margin-right: 16px;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 40px rgba(0, 255, 65, 0.3);
}

.price span {
    font-size: 18px;
    color: var(--text-muted);
}

.comprar-btn {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    background: var(--gradient-1);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(0, 255, 65, 0.3);
    font-family: 'JetBrains Mono', monospace;
}

.comprar-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
    transform: none;
}

.comprar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 65, 0.4);
}

.plan-content .voltar-btn {
    display: block;
    max-width: 300px;
    margin: 16px auto 0;
}

/* Purchase Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 3, 3, 0.65);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 50;
}

.popup-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.popup-card {
    width: min(520px, 92%);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.popup-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}

.popup-text {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 14px 16px;
    background: rgba(0, 255, 65, 0.06);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 10px;
}

.popup-status {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.popup-success {
    display: none;
    margin-top: 8px;
    text-align: center;
}

.popup-success.is-visible {
    display: block;
}

.popup-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    box-shadow: 0 0 18px rgba(0, 255, 65, 0.3);
}

.popup-success-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-success-subtitle {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 18px;
}

.popup-contact {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.popup-contact-title {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace;
}

.popup-contact-row {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.popup-contact-left,
.popup-contact-right {
    flex: 1;
}

.popup-contact-left {
    text-align: left;
}

.popup-contact-right {
    text-align: right;
}

.popup-contact-thanks {
    font-size: 12px;
    color: var(--text-muted);
}

.popup-login-btn {
    display: none;
    margin: 14px auto 0;
    width: auto;
    min-width: 140px;
    padding: 12px 20px;
}

.popup-login-btn.is-visible {
    display: inline-flex;
}

.popup-ok-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 140px;
    padding: 12px 20px;
}

.popup-card-error {
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 51, 51, 0.15);
}

.popup-icon-error {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 50%;
    border: 2px solid #ff3333;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

.popup-icon-error::before,
.popup-icon-error::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #ff3333;
    transform: translate(-50%, -50%) rotate(45deg);
}

.popup-icon-error::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Contact popup */
.contact-popup-card {
    width: min(620px, 92%);
    padding: 26px;
    text-align: left;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(7, 7, 7, 0.98));
    border: 1px solid rgba(0, 255, 65, 0.18);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 255, 65, 0.08),
        0 0 40px rgba(148, 0, 211, 0.06);
    backdrop-filter: blur(10px);
}

.contact-popup-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.35), rgba(148, 0, 211, 0.25), rgba(0, 255, 65, 0.18));
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.contact-popup-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background:
        radial-gradient(600px 220px at 25% 0%, rgba(0, 255, 65, 0.10), transparent 60%),
        radial-gradient(480px 220px at 85% 15%, rgba(148, 0, 211, 0.12), transparent 55%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.contact-popup-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.contact-popup-subtitle {
    color: var(--text-color);
    opacity: 0.78;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.contact-popup-close {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-color);
    font-size: 26px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.contact-popup-close:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 255, 65, 0.35);
    background: rgba(0, 255, 65, 0.07);
    box-shadow: 0 0 18px rgba(0, 255, 65, 0.12);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.contact-option-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-color);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.contact-option-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 255, 65, 0.28);
    background: rgba(0, 255, 65, 0.06);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35), 0 0 18px rgba(0, 255, 65, 0.08);
}

.contact-option-btn[aria-expanded="true"] {
    border-color: rgba(148, 0, 211, 0.45);
    background: linear-gradient(180deg, rgba(148, 0, 211, 0.14), rgba(0, 255, 65, 0.06));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 20px rgba(148, 0, 211, 0.10);
}

.contact-option-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(0, 255, 65, 0.07);
    border: 1px solid rgba(0, 255, 65, 0.18);
}

.contact-details {
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;

    max-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.contact-details[aria-hidden="false"] {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    border-color: rgba(0, 255, 65, 0.20);
}

.contact-details-title {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.contact-list a,
.contact-link {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 255, 65, 0.30);
    padding-bottom: 2px;
}

.contact-list a:hover,
.contact-link:hover {
    color: var(--primary);
    border-bottom-color: rgba(0, 255, 65, 0.65);
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-text {
    color: var(--text-color);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

@media (max-width: 520px) {
    .contact-options {
        grid-template-columns: 1fr;
    }

    .contact-option-btn {
        justify-content: flex-start;
        padding: 12px 14px;
    }
}

/* Animation Classes */
.slide-out-left {
    animation: slide-out-left 0.5s forwards;
}

.slide-in-right {
    animation: slide-in-right 0.5s forwards;
}

.slide-out-right {
    animation: slide-out-right 0.5s forwards;
}

.slide-in-left {
    animation: slide-in-left 0.5s forwards;
}

@keyframes slide-out-left {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slide-in-right {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-out-right {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slide-in-left {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .login-container {
        width: 380px;
        min-width: 380px;
    }

    .hero-section,
    .features-section,
    .tools-section,
    .cta-section,
    .zigzag-section {
        padding: 60px 40px;
    }

    .hero-stats {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .zigzag-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        display: block;
    }

    .main-container {
        height: auto;
    }

    .main-container {
        display: block;
    }

    .login-container {
        width: 100%;
        min-width: 100%;
        height: auto;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 20px 0 40px;
        align-items: flex-start;
        justify-content: flex-start;
        position: static;
        order: 0;
    }

    .news-section {
        display: block;
        width: 100%;
        height: auto;
        overflow: visible;
        position: static;
        order: 1;
    }

    .form-card {
        position: relative;
        max-width: 100%;
        padding: 32px 24px;
        transform: none !important;
        opacity: 1 !important;
        margin: 0 auto;
    }

    #login-card,
    #solicitar-login-card {
        position: relative;
    }

    .news-content,
    .plan-content {
        padding: 40px 24px 60px;
    }

    .hero-section {
        min-height: auto;
        padding: 30px 20px 20px;
    }

    .hero-section.no-badge {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .scroll-indicator {
        position: static;
        transform: none;
        margin-top: 24px;
    }

    .features-section,
    .tools-section,
    .cta-section,
    .zigzag-section {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-card {
        padding: 36px 24px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-desc {
        font-size: 14px;
    }
}
