:root {
    --bg: #030712;
    --bg-elevated: #020617;
    --primary: #22c55e;
    --primary-soft: rgba(34, 197, 94, 0.12);
    --primary-strong: #16a34a;
    --accent: #38bdf8;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --border: #1f2937;
    --card: #020617;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #022c22 0, #020617 45%, #020617 100%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.96), rgba(3, 7, 18, 0.85), transparent);
    border-bottom: 1px solid rgba(15, 23, 42, 0.85);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020617;
}

.brand-mark img {
    max-width: 32px;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-text-title {
    font-size: 0.92rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

.brand-text-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f9fafb;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.92rem;
    color: var(--muted);
}

.nav-links a {
    position: relative;
    padding-bottom: 0.15rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 999px;
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn {
    border-radius: 999px;
    padding: 0.65rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.22s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    border-color: rgba(34, 197, 94, 0.5);
    color: #022c22;
    box-shadow: 0 14px 40px rgba(22, 163, 74, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 46px rgba(22, 163, 74, 0.6);
}

.btn-ghost {
    background: rgba(15, 23, 42, 0.9);
    color: var(--muted);
    border-color: rgba(51, 65, 85, 0.9);
}

.btn-ghost:hover {
    border-color: rgba(148, 163, 184, 0.9);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 1);
}

/* HERO */

.hero {
    padding: 3.5rem 0 3.8rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
    gap: 3rem;
    align-items: center;
}

.hero-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.hero-kicker-pill {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.95);
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.05rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
    color: #f9fafb;
}

.hero-highlight {
    background: linear-gradient(to right, #bbf7d0, #22c55e, #38bdf8);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 34rem;
    margin-bottom: 1.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 1.8rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.9);
}

.hero-card {
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 55%), rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(30, 64, 175, 0.55);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem 1.4rem;
}

.hero-card-title {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 1rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.metric {
    padding: 0.65rem 0.75rem;
    border-radius: 16px;
    border: 1px solid rgba(31, 41, 55, 0.9);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.98));
}

.metric-label {
    font-size: 0.74rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.metric-tag {
    font-size: 0.72rem;
    color: var(--accent);
    margin-top: 0.1rem;
}

.hero-footnote {
    font-size: 0.75rem;
    color: var(--muted);
    border-top: 1px dashed rgba(55, 65, 81, 0.8);
    padding-top: 0.65rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}

.hero-footnote span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    padding: 0.2rem 0.55rem;
    font-size: 0.7rem;
    color: var(--muted);
}

/* SECTIONS */

section {
    padding: 2.8rem 0;
}

.section-header {
    margin-bottom: 1.8rem;
}

.section-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    color: #f9fafb;
}

.section-subtitle {
    font-size: 0.96rem;
    color: var(--muted);
    max-width: 42rem;
}

.text-block {
    font-size: 0.96rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 54rem;
}

.text-block+.text-block {
    margin-top: 0.9rem;
}

/* PRODUTOS */

.products-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.6fr);
    gap: 1.6rem;
}

.product-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 55%), rgba(15, 23, 42, 0.96);
    padding: 1.4rem 1.3rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65);
}

.product-card:nth-child(2) {
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 55%), rgba(15, 23, 42, 0.96);
}

.product-card:nth-child(3) {
    grid-column: 1 / -1;
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 60%), rgba(15, 23, 42, 0.98);
}

.product-title {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    color: #f9fafb;
}

.product-tagline {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.product-list {
    list-style: none;
    margin: 0.3rem 0 0.4rem;
    padding: 0;
}

.product-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
    margin-top: 0.45rem;
    flex-shrink: 0;
}

.product-footnote {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.45rem;
}

/* BENEFITS */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.benefit-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.98);
    padding: 1rem;
}

.benefit-title {
    font-size: 0.98rem;
    margin-bottom: 0.4rem;
}

.benefit-text {
    font-size: 0.9rem;
    color: var(--muted);
}

/* PRICING */

.pricing-section {
    background: radial-gradient(circle at top, rgba(15, 118, 110, 0.15), #020617 55%);
    border-top: 1px solid rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
    gap: 1.6rem;
}

.pricing-group {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(30, 64, 175, 0.7);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 55%), rgba(15, 23, 42, 0.98);
    padding: 1.4rem 1.3rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.pricing-group:nth-child(2) {
    border-color: rgba(22, 163, 74, 0.9);
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 55%), rgba(15, 23, 42, 0.98);
}

.pricing-group.full {
    grid-column: 1 / -1;
    border-color: rgba(248, 250, 252, 0.16);
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.14), transparent 55%), rgba(15, 23, 42, 0.98);
}

.pricing-group-title {
    font-size: 1.02rem;
    margin-bottom: 0.2rem;
    color: #f9fafb;
}

.pricing-group-subtitle {
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 0.9rem;
}

.plans-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.plan-card {
    border-radius: 14px;
    border: 1px solid rgba(31, 41, 55, 0.95);
    background: rgba(15, 23, 42, 0.96);
    padding: 0.9rem 0.85rem;
}

.plan-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
    color: #e5e7eb;
}

.plan-qty {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.plan-price {
    font-size: 0.98rem;
    font-weight: 600;
    color: #bbf7d0;
    margin-bottom: 0.15rem;
}

.plan-note {
    font-size: 0.76rem;
    color: var(--muted);
}

.pricing-footnote {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.4rem;
}

/* CONTACT */

.contact-section {
    padding-bottom: 3.5rem;
}

.contact-card {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(30, 64, 175, 0.6);
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.2), transparent 55%), rgba(15, 23, 42, 0.98);
    padding: 1.7rem 1.5rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.4fr);
    gap: 1.5rem;
    align-items: center;
}

.contact-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-text {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.contact-meta {
    font-size: 0.82rem;
    color: var(--muted);
}

.contact-meta strong {
    color: #e5e7eb;
}

.contact-meta a {
    color: var(--accent);
}

/* FOOTER */

footer {
    border-top: 1px solid rgba(15, 23, 42, 0.9);
    padding: 1.6rem 0 1.9rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.7rem;
    align-items: center;
}

.footer-inner span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--primary);
}

/* RESPONSIVE */

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        margin-top: 0.2rem;
    }

    .contact-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 720px) {

    .products-grid,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .navbar-inner {
        padding-inline: 1.1rem;
    }

    .hero {
        padding-top: 2.4rem;
    }

    section {
        padding-block: 2.2rem;
    }
}