/* =========================
   FONTE
========================= */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600;700&display=swap');

/* =========================
   VARIÁVEIS
========================= */
:root {
    --background: 210 20% 98%;
    --foreground: 220 20% 10%;

    --card: 0 0% 100%;
    --primary: 172 66% 40%;
    --secondary: 210 20% 96%;
    --muted: 210 15% 94%;
    --accent: 38 92% 50%;
    --success: 152 69% 40%;
    --border: 220 13% 91%;

    --gradient-primary: linear-gradient(135deg, hsl(172 66% 40%), hsl(172 66% 30%));
    --gradient-hero: linear-gradient(135deg, hsl(172 66% 40%) 0%, hsl(200 70% 50%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(38 92% 50%), hsl(28 92% 45%));

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
    --shadow-md: 0 6px 15px rgba(0, 0, 0, .08);
    --shadow-lg: 0 20px 30px rgba(0, 0, 0, .12);

    --radius: 12px;
}

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   CONTAINER
========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* =========================
   HEADER
========================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: hsl(var(--background) / 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--border));
    z-index: 1000;
}

.header-content {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon.small {
    width: 24px;
    height: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo span {
    font-weight: 700;
}

.logo p {
    font-size: 0.5rem;
    color: hsl(var(--foreground) / .4);
    
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    font-size: .9rem;
    color: hsl(var(--foreground) / .7);
}

.nav a:hover {
    color: hsl(var(--foreground));
}

/* =========================
   BOTÕES
========================= */
.btn {
    padding: .6rem 3.1rem;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .25s ease;
}

.btn.heros {
    background: var(--gradient-hero);
    color: white;
}

.btn.hero {
    background: var(--gradient-primary);
    color: white;
}

.btn.accent {
    background: var(--gradient-accent);
    color: white;
}

.btn.outline {
    border: 1px solid hsl(var(--border));
}

.btn.ghost {
    color: hsl(var(--foreground));
    border: 1px solid rgba(0, 0, 0, .05);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn.xl {
    padding: .9rem 1.8rem;
    font-size: 1rem;
}

/* HERO */
.hero {
    padding: 140px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: hsl(var(--primary) / .1);
    color: hsl(var(--primary));
    padding: .4rem .9rem;
    border-radius: 999px;
    font-size: .85rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    padding-left: 0;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.04em;
}

.text-gradient {
    background: var(--gradient-hero);
    color: #ffffff;
    opacity: 0.6;
}

.hero h3 {
    color: hsl(var(--foreground) / .7);
    font-weight: 500;
    padding-bottom: 3rem;
    margin-top: 1rem;
    letter-spacing: -0.04em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* STATS */
.stats {
    background: hsl(var(--secondary));
    border-top: 1px solid hsl(var(--border));
    border-bottom: 1px solid hsl(var(--border));
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    text-align: center;
    gap: 2rem;
    letter-spacing: -0.04em;
    align-items: center;
}

.stats strong {
    font-size: 2rem;
    color: hsl(var(--primary));
}

.stats span {
    font-size: 1.2rem;
    color: hsl(var(--foreground) / .6);
}

.stats-grid strong,
.stats-grid span {
    display: block;
}

/* FEATURES */
.features {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: .8rem;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.section-header p {
    color: hsl(var(--foreground) / .6);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    padding: 1.8rem;
    border-radius: var(--radius);
    transition: all .3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: hsl(var(--primary) / .4);
}

.feature-card .icon {
    width: 48px;
    height: 48px;
    background: hsl(var(--primary) / .1);
    color: hsl(var(--primary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card p {
    color: hsl(var(--foreground) / .6);
    font-size: .85rem;
}

.feature-card .icon i {
    font-size: 1.5rem;
}

/* BENEFITS */
.benefits {
    padding: 6rem 0;
    background: hsl(var(--background));
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* TEXTO */
.benefits-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.benefits-text p {
    color: hsl(var(--foreground) / .65);
    margin-bottom: 2rem;
    max-width: 480px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.benefits-list li::before {
    content: "✓";
    width: 20px;
    height: 20px;
    background: hsl(var(--success));
    color: white;
    border-radius: 50%;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOCKUP */
.benefits-mockup {
    background: linear-gradient(135deg,
            hsl(172 66% 90%),
            hsl(38 92% 90%));
    padding: 2.5rem;
    border-radius: 20px;
}

.mockup-box {
    max-width: 360px;
    margin: auto;
}

.mockup-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* CARDS */
.card {
    background: white;
    padding: 1.2rem;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.card strong {
    font-size: 1.4rem;
    color: hsl(var(--primary));
}

.card strong.success {
    color: hsl(var(--success));
}

.card span {
    font-size: .75rem;
    color: hsl(var(--foreground) / .6);
}

.card strong,
.card span {
    display: block;
}

.card.full {
    margin-top: .5rem;
}

.label {
    font-size: .8rem;
    font-weight: 600;
    display: block;
    margin-bottom: .8rem;
}

/* BARRAS */
.bars {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.bar {
    height: 8px;
    background: hsl(var(--primary) / .2);
    border-radius: 999px;
}

.w-100 {
    width: 100%;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-mockup {
        margin-top: 2rem;
    }
    
    .header .header-content .actions{
        display: none;
        opacity: 0;
    }
}

/* CTA */
.cta {
    padding: 3rem 0;
}

.cta-box {
    background: var(--gradient-hero);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box p {
    opacity: .85;
    margin: 1rem auto 2rem;
    max-width: 500px;
}

/* FOOTER */
.footer {
    border-top: 1px solid hsl(var(--border));
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer p {
    font-size: .85rem;
    color: hsl(var(--foreground) / .6);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .actions {
        display: none !important;
    }

    .hero {
        padding-top: 120px;
    }
}

@media screen and (max-width: 768px) {
    .header .actions {
        display: none !important;
    }
}

