/* AURA NPP - Layout Modelo A (landing enviada) */

:root {
    --roxo-aura: #7A73AB;
    --azul-aura: #82B5F9;
    --cinza-texto: #333333;
    --cinza-suave: #f7f5fc;
    --borda-card: #e3dff5;
    --lavanda: #e6dff2;
    --branco: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--cinza-texto);
    background: var(--branco);
}

a {
    color: var(--roxo-aura);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* TOPO */

.topbar {
    background: var(--branco);
    border-bottom: 1px solid #eee8ff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
}

.brand-simple {
    text-decoration: none;
}

.brand-logo-text {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--roxo-aura);
}

.brand-logo-text span {
    color: var(--azul-aura);
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.nav a {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    color: #4b4b5c;
}

.nav a:hover {
    background: #efe8ff;
    text-decoration: none;
}

.nav a.active {
    background: var(--roxo-aura);
    color: var(--branco);
}

/* CONTEÚDO PRINCIPAL */

.main-content {
    padding-bottom: 3rem;
}

/* HERO */

.hero {
    text-align: center;
    padding: 4.5rem 0 4rem;
    background: linear-gradient(to bottom, var(--lavanda), var(--branco));
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    color: #2c263a;
}

.hero-content h1 span {
    color: var(--azul-aura);
}

.hero-content p {
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto 1.9rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

/* BOTÕES */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease,
        transform 0.12s ease, border-color 0.15s ease;
}

.btn.primary {
    background: var(--roxo-aura);
    color: var(--branco);
    box-shadow: 0 10px 26px rgba(122, 115, 171, 0.4);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(122, 115, 171, 0.55);
    text-decoration: none;
}

.btn.secondary {
    background: var(--branco);
    border-color: #d1c7ff;
    color: #3d3455;
}

.btn.secondary:hover {
    background: #f5f1ff;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* FEATURES - CARDS */

.features {
    margin-top: -2.4rem; /* sobe os cards para encostar no hero */
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: var(--branco);
    border-radius: 1.2rem;
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--borda-card);
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
    color: inherit;
}

.feature-card:hover {
    border-color: var(--roxo-aura);
    box-shadow: 0 14px 36px rgba(122, 115, 171, 0.18);
    transform: translateY(-1px);
    text-decoration: none;
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    margin: 0.2rem 0 0.35rem;
    font-size: 1.05rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.88rem;
    color: #6a6780;
}

/* SEÇÕES INTERMEDIÁRIAS */

.section {
    padding: 3rem 0;
}

.section-muted {
    background: var(--cinza-suave);
    border-top: 1px solid #eee8ff;
    border-bottom: 1px solid #eee8ff;
}

.section-highlight {
    background: var(--branco);
}

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

.section-center h2 {
    font-size: 1.6rem;
    margin: 0 0 0.5rem;
    color: #2c263a;
}

.section-center p {
    margin: 0 0 1.3rem;
    font-size: 0.98rem;
    color: #5a586b;
}

/* LOJA / CARDS GENÉRICOS */

.loja-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.4rem;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    font-size: 1.35rem;
    margin: 0 0 0.5rem;
    color: #2c263a;
}

.section-subtitle.with-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.section-note {
    font-size: 0.88rem;
    color: #6a6780;
    max-width: 640px;
    margin-bottom: 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.1rem;
}

.card {
    background: var(--branco);
    border-radius: 1.1rem;
    padding: 1.3rem 1.4rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.03);
    font-size: 0.94rem;
}

.card-outline {
    border: 1px dashed var(--borda-card);
    box-shadow: none;
}

.card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.03rem;
    color: #2c263a;
}

.card p {
    margin: 0.1rem 0 0.5rem;
    color: #5e5c70;
}

.card-loja-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.price {
    font-weight: 600;
    color: #2c263a;
}

.price-large {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0.9rem 0 1.1rem;
    color: #2c263a;
}

/* BADGES & ALERTAS */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.16rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-restrito {
    background: #fff4e0;
    color: #9b6200;
}

.badge-aprovado {
    background: #e1f8ea;
    color: #1c7a38;
}

.badge-pendente {
    background: #fff4e0;
    color: #9b6200;
}

.alert {
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.alert-info {
    background: #e6f1ff;
    color: #215392;
}

.alert-warning {
    background: #fff4e0;
    color: #8c5a1b;
}

.alert-error {
    background: #ffe0e0;
    color: #8c1b1b;
}

.alert-success {
    background: #e1f8ea;
    color: #1c7a38;
}

/* FORMULÁRIOS */

.form-container {
    max-width: 620px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.form label {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    border-radius: 0.7rem;
    border: 1px solid #d4cfff;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    font-family: inherit;
    background: #faf9ff;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--roxo-aura);
    box-shadow: 0 0 0 1px rgba(122, 115, 171, 0.35);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.8rem;
}

/* PRODUTO DETALHE */

.product-detail {
    max-width: 720px;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.product-type {
    font-size: 0.9rem;
    color: #5e5c70;
}

.product-note {
    font-size: 0.85rem;
    color: #5e5c70;
    margin-top: 0.7rem;
}

/* SOBRE */

.about-grid {
    max-width: 760px;
}

/* FOOTER */

.footer {
    background: #f5f1ff;
    border-top: 1px solid #e1daf9;
    padding: 2.2rem 0 1.4rem;
    margin-top: 2.5rem;
    font-size: 0.86rem;
    color: #5a586b;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr) minmax(0, 1.8fr);
    gap: 1.6rem;
}

.footer-title {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
    color: #3b3255;
}

.footer-text {
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: #5a586b;
}

.footer-links a:hover {
    color: var(--roxo-aura);
}

.footer-bottom {
    margin-top: 1.4rem;
    border-top: 1px solid #e1daf9;
    padding-top: 0.8rem;
    text-align: center;
}

/* RESPONSIVIDADE */

@media (max-width: 900px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .loja-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 3.2rem;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
