html {
    scroll-behavior: smooth;
}

/* =========================================
   BASE & TOKENS (Design System)
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --green-dark: #003333;
    --green: #3a9466;
    --green-light: #CCFFCC;
    --green-bg: #FFFFFF;

    --gray-900: #0f172a;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;

    --radius: 14px;
    --shadow-soft: 0 8px 32px rgba(0,0,0,0.08);
}

/* Body */
body {
    background: var(--gray-100);
    color: var(--gray-900);
    overflow-x: hidden;
}


/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    z-index: 999;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 70px;
    padding-left: 15px;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
}

.nav-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-right a {
    text-decoration: none;
    font-weight: 500;
    color: var(--gray-700);
    transition: 0.2s;
}

.nav-right a:hover {
    color: var(--green);
}

.btn-nav {
    background: var(--green);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--green-dark);
}


/* =========================================
   HERO
========================================= */
.hero {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 140px 60px 80px;
    background: white;
    overflow: hidden;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.1;
}

.gradient {
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    margin-top: 18px;
    font-size: 18px;
    color: var(--gray-700);
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    gap: 20px;
}


/* BOTÕES */
.btn-primary {
    padding: 14px 30px;
    background: var(--green);
    color: white;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(24,193,101,0.35);
    transition: 0.25s;
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-secondary {
    padding: 14px 30px;
    background: white;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    border: 2px solid var(--gray-300);
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

/* HERO MOCKUP */
.hero-mockup {
    position: absolute;
    right: -80px;   /* empurra pra fora da tela */
    top: 15%;
}

.hero-mockup img {
    width: 720px;
}

/* =========================================
   TRUST BAR
========================================= */
.trust {
    text-align: center;
    padding: 40px 20px;
    background: var(--green-bg);
}

.trust p {
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 18px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 100px;
    max-width: 240px;
    object-fit: contain;
    opacity: 0.75;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.trust-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =========================================
   SERVIÇOS
========================================= */
.servicos {
    padding: 80px 40px;
    text-align: center;
}

.servicos h2 {
    font-size: 42px;
    font-weight: 800;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-icon {
    font-size: 40px;
    color: var(--green);
    margin-bottom: 15px;
}


/* =========================================
   COMO FUNCIONA
========================================= */
.como {
    padding: 80px 40px;
    background: white;
    text-align: center;
}

.como-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.como-card {
    background: var(--green-bg);
    padding: 30px;
    border-radius: var(--radius);
}

.step-number {
    font-size: 38px;
    font-weight: 900;
    color: var(--green);
}


/* =========================================
   TELAS APP
========================================= */
.telas {
    padding: 80px 40px;
    text-align: center;
}

.telas-grid {
    display: flex;
    justify-content: center;
    gap: 130px;
    margin-top: 40px;
}

.tela {
    width: 192px;
    height: 420px;
    background: #eaf8f0;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}


/* =========================================
   DEPOIMENTOS
========================================= */
.depoimentos {
    padding: 80px 40px;
    background: white;
    text-align: center;
}

.carousel {
    margin-top: 40px;
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.depoimento {
    background: var(--green-bg);
    padding: 28px;
    border-radius: var(--radius);
    min-width: 340px;
    scroll-snap-align: center;
    box-shadow: var(--shadow-soft);
}

.depoimento span {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--green-dark);
}


/* =========================================
   IDENTIDADE VISUAL
========================================= */
.identidade {
    padding: 80px 40px;
    text-align: center;
}

.id-placeholder {
    width: 100%;
    max-width: 600px;
    height: 300px;
    background: #eaf8f0;
    border-radius: var(--radius);
    margin: 30px auto 0;
}


/* =========================================
   PITCH DECK
========================================= */
.pitch {
    padding: 80px 40px;
    text-align: center;
    background: white;
}

.pitch-placeholder {
    font-size: 80px;
    color: var(--green);
    padding: 40px;
    background: var(--green-bg);
    border-radius: var(--radius);
    display: inline-block;
}


/* =========================================
   CTA FINAL
========================================= */
.cta {
    padding: 50px 20px;
    text-align: center;
    background: var(--green);
    color: white;
}

.cta h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta .btn-primary {
    background: white;
    color: var(--green-dark);
}


/* =========================================
   FOOTER
========================================= */
.footer {
    padding: 10px;
    text-align: center;
    background: var(--green-dark);
    color: white;
    font-weight: 500;
}
