:root {
    /* Paleta Unificada (mesma do Login) */
    --blue: #0b1e3a;
    --fg: #ffffff;
    --accent: #ffbf7b;
    --muted: #94a3b8;

    --bg-deep: #050c18;
    --glass-surf: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --primary-grad: linear-gradient(135deg, #ffbf7b 0%, #ff9e42 100%);
    --shadow-soft: 0 20px 40px -10px rgba(0, 0, 0, 0.5);

    --nav-h: 72px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--fg);
    background-color: var(--bg-deep);
    /* Fundo contínuo para evitar "cortes" */
    background-image:
        radial-gradient(circle at 10% 0%, rgba(11, 30, 58, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 90% 100%, rgba(255, 191, 123, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    /* Garante que o fundo não role com a página criando cortes */
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 50;
    height: var(--nav-h);
    background: rgba(5, 12, 24, 0.7);
    /* Mais transparente */
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
}

.nav-inner {
    width: min(1200px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    height: 160px;
    width: auto;
    display: block;
    margin-top: -5px;
}

/* Ajuste fino para logo */

.login-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* === HERO SECTION === */
.hero {
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

/* Tipografia Hero */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    background: rgba(255, 191, 123, 0.1);
    border: 1px solid rgba(255, 191, 123, 0.2);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem 0;
}

.title .accent {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 90%;
    margin-bottom: 2.5rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 14px;
    background: var(--primary-grad);
    color: #0b1e3a;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(255, 191, 123, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 191, 123, 0.4);
}

/* Hero Showcase (Minimalist Card) */
.showcase {
    position: relative;
    perspective: 1000px;
}

.showcase-card {
    background: var(--glass-surf);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    /* Centralizar conteudo */
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

/* Elementos decorativos do showcase */
.badge-new {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.3rem 0.8rem;
    background: var(--accent);
    color: #0b1e3a;
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 99px;
    text-transform: uppercase;
}

.mock-content {
    text-align: center;
    transform: translateZ(40px);
}

.mock-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255, 191, 123, 0.4));
}

.mock-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.mock-desc {
    color: var(--muted);
    font-size: 0.9rem;
}

/* === FEATURES SECTION === */
/* Removemos qualquer background distinto para evitar "cortes" */
.section {
    padding: 80px 0;
    position: relative;
}

.sec-head {
    margin-bottom: 3rem;
}

.sec-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feat-card {
    background: var(--glass-surf);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feat-h {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.feat-p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* === FOOTER === */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}

/* Responsivo */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .grid>div:first-child {
        order: 1;
    }

    /* Texto primeiro */
    .grid>div:last-child {
        order: 2;
    }

    /* Showcase depois */
    .subtitle {
        margin-inline: auto;
    }

    .showcase-card {
        min-height: 300px;
    }
}