/* Estilo Geral e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #090d16;
    --bg-darker: #05080e;
    --card-bg: rgba(17, 24, 39, 0.65);
    --border-light: rgba(255, 255, 255, 0.08);
    --accent-emerald: #10b981;
    --accent-emerald-hover: #34d399;
    --accent-gold: #f59e0b;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-outfit: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-outfit);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Efeitos decorativos de fundo */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.08);
    top: -100px;
    left: -200px;
}

.circle-2 {
    width: 600px;
    height: 600px;
    background: rgba(245, 158, 11, 0.04);
    top: 30%;
    right: -200px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Barra de Navegação */
nav {
    background: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav-container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: #ffffff;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-btn {
    background: var(--accent-emerald);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.nav-btn:hover {
    background: var(--accent-emerald-hover) !important;
    transform: translateY(-1px);
}

.nav-btn-secondary {
    border: 1px solid var(--border-light);
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content .badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-emerald);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
    width: 100%;
}

.stat-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-emerald);
}

.stat-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Mockup de Celular Virtual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 290px;
    height: 580px;
    background: #0f172a;
    border: 10px solid #334155;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.phone-speaker {
    width: 60px;
    height: 4px;
    background: #475569;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #020617;
    border-radius: 30px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.app-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.card-title {
    font-size: 11px;
    color: var(--accent-emerald);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.dezenas-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.ball {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(4, 120, 87, 0.4);
}

/* Animação nas bolas do mockup */
.animated-ball {
    animation: ballBounce 1.5s ease-in-out infinite alternate;
}

.animated-ball:nth-child(2) { animation-delay: 0.2s; }
.animated-ball:nth-child(3) { animation-delay: 0.4s; }
.animated-ball:nth-child(4) { animation-delay: 0.6s; }
.animated-ball:nth-child(5) { animation-delay: 0.8s; }
.animated-ball:nth-child(6) { animation-delay: 1s; }

@keyframes ballBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}

.card-subtitle {
    font-size: 10px;
    color: var(--text-muted);
}

.app-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: auto;
}

.app-menu-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 10px;
}

.app-menu-item i {
    font-size: 16px;
}

.active-item {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--accent-emerald);
}

.app-banner-space {
    width: 100%;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

/* Grid de Recursos */
.features {
    padding: 100px 0;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Diferenciais e Sobre */
.about {
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.glass-shield {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 320px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.glass-shield i {
    font-size: 54px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
}

.glass-shield h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.glass-shield p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.about-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.about-icon {
    font-size: 24px;
    color: var(--accent-emerald);
    padding-top: 4px;
}

.about-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
}

.about-item p {
    font-size: 14.5px;
    color: var(--text-muted);
}

/* Seção de Download */
.download-section {
    padding: 80px 0 100px 0;
}

.download-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(15, 23, 42, 0.4) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.download-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.download-card p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
    border-radius: 16px;
}

.download-footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    border-top: 1px solid var(--border-light);
    padding-top: 28px;
    max-width: 500px;
    margin: 0 auto;
}

.download-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.download-footer-links a:hover {
    color: #ffffff;
}

/* Rodapé */
footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    padding: 40px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-container p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.footer-container .disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    max-width: 800px;
    line-height: 1.5;
}

/* Responsividade Geral */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Em celular esconde os links por simplicidade */
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .download-card {
        padding: 40px 20px;
    }

    .download-footer-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}
