/* Variáveis de Cores (Paleta Baseada no Canva/Identidade Driver Wolf) */
:root {
    --bg-darkest: #0e1116;
    --bg-card: #171c24;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --wolf-ciano: #00f0ff; /* Destaques AI e Sucesso */
    --wolf-yellow: #ffbd00; /* Alertas e Modo Quest */
    --border-color: #262f3d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-darkest);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
header {
    background-color: rgba(14, 17, 22, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--wolf-ciano);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--wolf-ciano);
}

.btn-download-nav {
    background: transparent;
    border: 2px solid var(--wolf-ciano);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    color: var(--wolf-ciano) !important;
}

.btn-download-nav:hover {
    background: var(--wolf-ciano);
    color: var(--bg-darkest) !important;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    background: rgba(0, 240, 255, 0.1);
    color: var(--wolf-ciano);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(0, 240, 255, 0.3);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--wolf-ciano);
    color: var(--bg-darkest);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.5);
}

/* Mockup Simulado do Overlay */
.hero-mockup {
    display: flex;
    justify-content: center;
}

.mockup-card {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
}

.mockup-card.ciano {
    border-color: var(--wolf-ciano);
}

.card-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: bold;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff66;
    border-radius: 50%;
}

.mockup-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.mockup-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.bot-verdict {
    background-color: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--wolf-ciano);
    font-weight: 600;
}

/* Seções Comuns */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Por Que Usar */
.features-why {
    padding: 5rem 0;
    background-color: rgba(23, 28, 36, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-card {
    background-color: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.why-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Inovações / Modos em Breve */
.innovations {
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -2.5rem;
    margin-bottom: 4rem;
}

.innovation-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.inno-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s;
}

.inno-box:hover {
    transform: translateY(-5px);
}

.tag-status {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--wolf-ciano);
}

.tag-status.alert {
    background: rgba(255, 189, 0, 0.1);
    color: var(--wolf-yellow);
}

.inno-box h3 {
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

.inno-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Planos e Preços */
.pricing {
    padding: 5rem 0;
    background-color: rgba(23, 28, 36, 0.2);
    border-top: 1px solid var(--border-color);
}

.grid-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.premium {
    border: 2px solid var(--wolf-ciano);
}

.ribbon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--wolf-ciano);
    color: var(--bg-darkest);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.price-card ul {
    list-style: none;
    margin-bottom: 3rem;
}

.price-card ul li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.btn-secondary {
    display: block;
    text-align: center;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: var(--border-color);
}

.price-card.premium .btn-primary {
    text-align: center;
    margin-top: auto;
}

/* Footer */
footer {
    background-color: #090c10;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-content .subtext {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: rgba(156, 163, 175, 0.4);
}

/* Responsividade Básica */
@media (max-width: 960px) {
    .grid-pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid, .grid-3, .innovation-boxes, .grid-pricing {
        grid-template-columns: 1fr;
    }
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero {
        padding: 3rem 0;
    }
}