:root {
    /* Cores principais (ajuste fino aqui se quiser) */
    --jp-yellow: #F2B705;
    /* amarelo escuro */
    --jp-blue: #0E3A67;
    /* azul bebê escuro (mais sóbrio) */
    --jp-blue-2: #1A6AA6;
    /* variação para detalhes */
    --bg: #0B1020;
    /* fundo escuro suave */
    --card: rgba(255, 255, 255, .06);
    --card2: rgba(255, 255, 255, .08);
    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .72);
    --border: rgba(255, 255, 255, .12);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(900px 500px at 15% 10%, rgba(26, 106, 166, .25), transparent 55%),
        radial-gradient(900px 500px at 85% 15%, rgba(242, 183, 5, .18), transparent 60%),
        linear-gradient(180deg, #070B16 0%, #0B1020 60%, #070B16 100%);
    color: var(--text);
}

a {
    color: inherit;
}

a:hover {
    opacity: .92;
}

.topbar {
    background: rgba(14, 58, 103, .85);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.topbar-item {
    font-weight: 700;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.topbar-link {
    color: rgba(255, 255, 255, .95);
    text-decoration: none;
    font-weight: 700;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--jp-yellow);
    box-shadow: 0 0 0 4px rgba(242, 183, 5, .20);
}

.btn {
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: .2px;
}

.btn-cta {
    padding: .65rem 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--jp-yellow), #ffd35a);
    border: 0;
    color: #1b1b1b;
}

.btn-primary:hover {
    filter: brightness(.98);
}

.btn-outline-primary {
    border: 1px solid rgba(242, 183, 5, .65);
    color: rgba(255, 255, 255, .95);
    background: transparent;
}

.btn-outline-primary:hover {
    background: rgba(242, 183, 5, .12);
    border-color: rgba(242, 183, 5, .9);
}

.btn-whatsapp {
    background: #1DB954;
    border: 0;
    color: #07140b;
}

.btn-whatsapp:hover {
    filter: brightness(.98);
}

.navjp {
    background: rgba(7, 11, 22, .72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.brand-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    line-height: 1.05;
}

.brand-title {
    font-weight: 900;
    font-size: 1.05rem;
}

.brand-subtitle {
    font-size: .78rem;
    color: rgba(255, 255, 255, .70);
    font-weight: 700;
}

.hero {
    padding: 56px 0 28px;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: .45rem .8rem;
    color: rgba(255, 255, 255, .86);
    font-weight: 800;
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--jp-yellow);
}

.hero-title {
    font-size: clamp(2.0rem, 3.3vw, 3.2rem);
    font-weight: 900;
    margin: 14px 0 10px;
}

.text-accent {
    color: var(--jp-yellow);
    text-shadow: 0 10px 30px rgba(242, 183, 5, .18);
}

.hero-text {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .80);
    max-width: 58ch;
}

.hero-mini {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mini-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 12px 12px;
}

.mini-title {
    font-size: .78rem;
    color: rgba(255, 255, 255, .70);
    font-weight: 800;
}

.mini-value {
    font-weight: 900;
    margin-top: 2px;
    font-size: .95rem;
}

.link-light-soft {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
}

.link-light-soft:hover {
    text-decoration: underline;
}

.hero-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(14, 58, 103, .60), rgba(255, 255, 255, .05));
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.hero-logo {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    background: rgba(7, 11, 22, .35);
    padding: 18px;
}

.hero-card-body {
    padding: 18px;
}

.hero-card-title {
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0 0 6px;
}

.hero-card-text {
    color: rgba(255, 255, 255, .78);
    margin: 0 0 14px;
}

.hero-card-note {
    font-size: .9rem;
    color: rgba(255, 255, 255, .70);
    font-weight: 700;
}

.section {
    padding: 54px 0;
}

.section-alt {
    background: rgba(255, 255, 255, .03);
    border-top: 1px solid rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.section-head {
    margin-bottom: 18px;
}

.section-title {
    font-weight: 900;
    font-size: clamp(1.5rem, 2.2vw, 2.0rem);
    margin: 0 0 6px;
}

.section-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-weight: 700;
}

.section-text {
    color: rgba(255, 255, 255, .78);
    font-weight: 700;
}

.loja-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.loja-badge {
    display: inline-flex;
    background: rgba(242, 183, 5, .16);
    border: 1px solid rgba(242, 183, 5, .35);
    color: rgba(255, 255, 255, .92);
    padding: .25rem .6rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: .82rem;
}

.loja-title {
    font-weight: 900;
    font-size: 1.25rem;
}

.loja-info {
    margin-top: 8px;
    display: grid;
    gap: 10px;
}

.info-line {
    color: rgba(255, 255, 255, .80);
    font-weight: 700;
}

.info-label {
    color: rgba(255, 255, 255, .65);
    font-weight: 900;
    margin-right: 6px;
}

.about-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    padding: 16px;
}

.about-logo {
    width: 86px;
    height: 86px;
    object-fit: contain;
    background: rgba(7, 11, 22, .35);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 10px;
}

.feature {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 14px;
    height: 100%;
}

.feature-title {
    font-weight: 900;
    margin-bottom: 4px;
}

.feature-text {
    color: rgba(255, 255, 255, .76);
    font-weight: 700;
    margin: 0;
}

.contact-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    padding: 16px;
}

.contact-line {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .14);
}

.contact-line:last-child {
    border-bottom: 0;
}

.contact-label {
    font-weight: 900;
    color: rgba(255, 255, 255, .70);
    font-size: .92rem;
}

.contact-value {
    display: inline-block;
    font-weight: 900;
    text-decoration: none;
    margin-top: 4px;
    color: rgba(255, 255, 255, .92);
    word-break: break-word;
}

.contact-value:hover {
    text-decoration: underline;
}

.map-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    overflow: hidden;
}

.map-title {
    padding: 14px 14px 8px;
    font-weight: 900;
}

.map-card iframe {
    width: 100%;
    height: 280px;
    border: 0;
}

.map-note {
    padding: 10px 14px 14px;
    color: rgba(255, 255, 255, .74);
    font-weight: 700;
    font-size: .92rem;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(7, 11, 22, .70);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 8px;
}

.footer-title {
    font-weight: 900;
}

.footer-subtitle {
    color: rgba(255, 255, 255, .70);
    font-weight: 700;
    font-size: .92rem;
}

.footer-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    font-weight: 900;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    color: rgba(255, 255, 255, .70);
    font-weight: 700;
    font-size: .92rem;
}

.footer-copy a {
    color: rgba(242, 183, 5, .95);
    text-decoration: none;
    font-weight: 900;
}

.footer-copy a:hover {
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    padding: 12px 14px;
    background: #1DB954;
    color: #07140b;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .18);
}

.whatsapp-float:hover {
    filter: brightness(.98);
}

@media (max-width: 992px) {
    .hero {
        padding-top: 42px;
    }

    .hero-mini {
        grid-template-columns: 1fr;
    }
}