﻿:root {
    --navy: #002233;
    --navy-2: #00293d;
    --navy-3: #003350;
    --navy-4: #004066;
    --cyan: #00dbff;
    --cyan-dim: #00afd4;
    --white: #FFFFFF;
    --off: #d0f0fa;
    --muted: #6aaccb;
    --dim: #3a7a99;
    --card: rgba(255,255,255,.04);
    --cborder: rgba(0,219,255,.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Poppins',sans-serif;
    background: var(--navy);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s
}

    nav.scrolled {
        background: rgba(9,21,36,.96);
        backdrop-filter: blur(14px);
        padding: .85rem 2.5rem;
        border-bottom: 1px solid var(--cborder)
    }

.logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none
}

.logo-icon {
    width: 38px;
    height: 38px
}

.logo-text {
    line-height: 1
}

    .logo-text .lg {
        font-family: 'Poppins',sans-serif;
        font-size: 1.4rem;
        font-weight: 800;
        color: #fff;
        letter-spacing: -.03em;
        display: block
    }

    .logo-text .lt {
        font-size: .6rem;
        font-weight: 600;
        color: var(--cyan);
        letter-spacing: .15em;
        text-transform: uppercase;
        display: block;
        margin-top: 1px
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none
}

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: .875rem;
        font-weight: 500;
        transition: color .2s
    }

        .nav-links a:hover {
            color: #fff
        }

.nav-cta {
    background: var(--cyan) !important;
    color: var(--navy) !important;
    padding: .55rem 1.35rem;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: all .2s !important
}

    .nav-cta:hover {
        background: #fff !important;
        transform: translateY(-1px)
    }

.mob-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: .25rem
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2.5rem 5rem
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 65% 50%,rgba(0,219,255,.07) 0%,transparent 60%),radial-gradient(ellipse 45% 45% at 15% 85%,rgba(0,219,255,.05) 0%,transparent 50%),var(--navy)
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,219,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(0,219,255,.035) 1px,transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 75% 75% at 65% 45%,black,transparent)
}

.hero-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0,219,255,.1);
    border: 1px solid rgba(0,219,255,.25);
    color: var(--cyan);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.75rem
}

    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--cyan);
        border-radius: 50%;
        animation: pulse 2s infinite
    }

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

h1 {
    font-family: 'Poppins',sans-serif;
    font-size: clamp(1.9rem,3.2vw,2.9rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem
}

    h1 em {
        font-style: normal;
        color: var(--cyan)
    }

.hero-sub {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 440px
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-p {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--cyan);
    color: var(--navy);
    padding: .85rem 2rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap
}

    .btn-p:hover {
        background: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0,219,255,.35)
    }

.btn-s {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #fff;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.2);
    transition: all .2s
}

    .btn-s:hover {
        border-color: var(--cyan);
        color: var(--cyan)
    }

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center
}

.orbit-wrap {
    width: 430px;
    height: 430px;
    position: relative;
    animation: spin-slow 60s linear infinite
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg)
    }
}

.orbit-wrap .orbit-inner {
    position: absolute;
    inset: 0;
    animation: spin-slow 60s linear reverse infinite
}

.hero-img {
    width: 100%;
    max-width: 920px;
    height: auto;
    filter: drop-shadow(0 0 80px rgba(0,219,255,.15));
    animation: float 6s ease-in-out infinite;
    margin-right: -60px
}

/* ── STATS STRIP ── */
#stats {
    background: var(--navy-3);
    border-top: 1px solid var(--cborder);
    border-bottom: 1px solid var(--cborder);
    padding: 2.75rem 2.5rem
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem
}

.stat-item {
    text-align: center
}

.stat-n {
    font-family: 'Poppins',sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: .35rem
}

.stat-l {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.45
}

/* ── SECTIONS SHARED ── */
section {
    padding: 5.5rem 2.5rem
}

.wrap {
    max-width: 1200px;
    margin: 0 auto
}

.slabel {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--cyan);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .9rem
}

    .slabel::before {
        content: '';
        width: 18px;
        height: 2px;
        background: var(--cyan)
    }

    .slabel.center {
        justify-content: center
    }

        .slabel.center::before {
            display: none
        }

h2.stitle {
    font-family: 'Poppins',sans-serif;
    font-size: clamp(1.75rem,2.8vw,2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: 1rem
}

.ssub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.75
}

/* ── QUEM SOMOS ── */
.qs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start
}

/* ── SOBRE ── */
#sobre {
    background: var(--navy-2)
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.prob-list {
    list-style: none;
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .9rem
}

    .prob-list li {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
        color: var(--muted);
        font-size: .95rem;
        line-height: 1.55
    }

        .prob-list li::before {
            content: '';
            min-width: 5px;
            height: 5px;
            background: var(--cyan);
            border-radius: 50%;
            margin-top: .6em
        }

.sol-card {
    background: var(--navy-3);
    border: 1px solid var(--cborder);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden
}

    .sol-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,var(--cyan),transparent)
    }

    .sol-card blockquote {
        font-family: 'Poppins',sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.45;
        margin-bottom: 1.5rem
    }

        .sol-card blockquote em {
            color: var(--cyan);
            font-style: normal
        }

.sol-hl {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem 1rem;
    background: rgba(0,219,255,.06);
    border-radius: 12px;
    border: 1px solid rgba(0,219,255,.1);
    margin-bottom: .75rem
}

    .sol-hl:last-child {
        margin-bottom: 0
    }

    .sol-hl .ic {
        font-size: 1.25rem;
        line-height: 1
    }

    .sol-hl p {
        font-size: .9rem;
        color: var(--off);
        font-weight: 500
    }

/* ── ECOSSISTEMA ── */
#ecossistema {
    background: var(--navy)
}

.eco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start
}

.eco-feats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: .5rem
}

.eco-feat {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.eco-feat-ic {
    width: 44px;
    height: 44px;
    background: rgba(0,219,255,.09);
    border: 1px solid rgba(0,219,255,.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem
}

.eco-feat h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .2rem
}

.eco-feat p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.55
}

/* ── MÓDULOS ── */
#modulos {
    background: var(--navy-2)
}

.mod-header {
    text-align: center;
    margin-bottom: 3.5rem
}

.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(272px,1fr));
    gap: 1.1rem
}

/*.mod-card {
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all .25s;
    cursor: default
}*/

.mod-card {
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all .25s;
    cursor: default;
    /* Adicione estas 3 linhas */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mod-link {
    /* Altera o margin para empurrar o botão para baixo */
    margin-top: auto;
    padding-top: 1.5rem; /* Garante um respiro entre o texto e o botão */
    text-align: center;
}

    /* Mantenha o restante do seu .mod-link a igual */
    .mod-link a {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        text-decoration: none;
        background-color: transparent;
        color: var(--white);
        border: solid 1px var(--white);
        padding: .85rem 2rem;
        border-radius: 50px;
        font-size: .7rem;
        font-weight: 700;
        transition: all .2s;
        white-space: nowrap;
    }

    .mod-card:hover {
        background: rgba(0,219,255,.06);
        border-color: rgba(0,219,255,.4);
        transform: translateY(-3px)
    }

.mod-ic {
    width: 44px;
    height: 44px;
    background: rgba(0,219,255,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem
}

.mod-name {
    font-family: 'Poppins',sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: .45rem
}

.mod-desc {
    font-size: .83rem;
    /*color: var(--muted);*/
    color: var(--white);
    line-height: 1.65
}

/* ── NUMBERS SECTION ── */
#numeros {
    background: var(--navy-3);
    padding: 5rem 2.5rem
}

.nums-header {
    text-align: center;
    margin-bottom: 3rem
}

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

.num-card {
    text-align: center;
    padding: 1.75rem 1rem;
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 16px;
    transition: all .25s
}

    .num-card:hover {
        border-color: rgba(0,219,255,.4);
        transform: translateY(-2px)
    }

.num-val {
    font-family: 'Poppins',sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: .35rem
}

.num-lbl {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.45
}

/* ── COMO FUNCIONA ── */
#como {
    background: var(--navy-2)
}

.como-header {
    text-align: center;
    margin-bottom: 3rem
}

.steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
    position: relative
}

    .steps::before {
        content: '';
        position: absolute;
        top: 2.5rem;
        left: calc(12.5% + 1.5rem);
        right: calc(12.5% + 1.5rem);
        height: 1px;
        background: linear-gradient(90deg,transparent,rgba(0,219,255,.3),rgba(0,219,255,.3),rgba(0,219,255,.3),transparent)
    }

.step {
    text-align: center;
    padding: 2rem 1.25rem 1.75rem;
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 16px;
    position: relative;
    transition: all .25s
}

    .step:hover {
        border-color: rgba(0,219,255,.4);
        transform: translateY(-3px)
    }

.step-n {
    font-family: 'Poppins',sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(0,219,255,.6);
    line-height: 1;
    margin-bottom: .75rem
}

.step h3 {
    font-family: 'Poppins',sans-serif;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.step p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.55
}

/* ── PARCEIROS ── */
#parceiros {
    background: var(--navy)
}

.parc-header {
    text-align: center;
    margin-bottom: 3rem
}

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

.parc-card {
    background: var(--navy-2);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    text-align: center;
    transition: all .25s
}

    .parc-card:hover {
        border-color: var(--cborder);
        transform: translateY(-2px)
    }

.parc-ic {
    font-size: 2rem;
    margin-bottom: .1rem
}

.parc-name {
    font-family: 'Poppins',sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--off)
}

.parc-type {
    font-size: .73rem;
    color: var(--muted)
}

/* ── DEPOIMENTOS ── */
#depoimentos {
    background: var(--navy-2)
}

.dep-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.25rem;
    margin-top: 2.5rem
}

.dep-card {
    background: var(--card);
    border: 1px solid var(--cborder);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    transition: all .25s
}

    .dep-card:hover {
        border-color: rgba(0,219,255,.4);
        transform: translateY(-3px)
    }

    .dep-card::before {
        content: '"';
        position: absolute;
        top: .75rem;
        right: 1.25rem;
        font-size: 4rem;
        color: rgba(0,219,255,.1);
        font-family: Georgia,serif;
        line-height: 1
    }

.dep-stars {
    display: flex;
    gap: .2rem;
    margin-bottom: .85rem
}

    .dep-stars span {
        color: var(--cyan);
        font-size: .9rem
    }

.dep-text {
    font-size: .87rem;
    color: var(--off);
    line-height: 1.75;
    margin-bottom: 1.35rem;
    font-style: italic
}

.dep-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.dep-av {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(0,219,255,.3);
    flex-shrink: 0;
    background-color: rgba(0,219,255,.15);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat
}

.dep-info strong {
    display: block;
    font-size: .85rem;
    font-weight: 700
}

.dep-info span {
    font-size: .75rem;
    color: var(--muted)
}

@media(max-width:1080px) {
    .dep-grid {
        grid-template-columns: 1fr
    }
}

/* ── CONTATO ── */
#contato {
    background: var(--navy-2)
}

.cont-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start
}

.cont-info > p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    margin-top: .25rem
}

.cont-items {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.ci {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem
}

.ci-ic {
    width: 38px;
    height: 38px;
    background: rgba(0,219,255,.09);
    border: 1px solid rgba(0,219,255,.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .95rem
}

.ci a {
    color: var(--off);
    text-decoration: none;
    transition: color .2s
}

    .ci a:hover {
        color: var(--cyan)
    }

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: #25D366;
    color: #fff;
    padding: .9rem;
    border-radius: 12px;
    font-family: 'Poppins',sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all .2s
}

    .wa-btn:hover {
        background: #1DB954;
        transform: translateY(-1px)
    }

.cont-form {
    background: var(--navy-3);
    border: 1px solid var(--cborder);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden
}

    .cont-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,var(--cyan),transparent)
    }

    .cont-form h3 {
        font-family: 'Poppins',sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem
    }

.fg {
    margin-bottom: 1.15rem
}

    .fg label {
        display: block;
        font-size: .73rem;
        font-weight: 700;
        color: var(--muted);
        margin-bottom: .35rem;
        text-transform: uppercase;
        letter-spacing: .05em
    }

    .fg input, .fg select, .fg textarea {
        width: 100%;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 10px;
        padding: .72rem 1rem;
        color: #fff;
        font-family: 'Poppins',sans-serif;
        font-size: .88rem;
        outline: none;
        transition: border-color .2s
    }

        .fg input:focus, .fg select:focus, .fg textarea:focus {
            border-color: var(--cyan)
        }

        .fg input::placeholder, .fg textarea::placeholder {
            color: rgba(255,255,255,.25)
        }

    .fg select {
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath stroke='%237A9BBB' stroke-width='1.5' stroke-linecap='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center
    }

        .fg select option {
            background: var(--navy-3);
            color: #fff
        }

    .fg textarea {
        resize: vertical;
        min-height: 90px
    }

.row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.btn-form {
    width: 100%;
    background: var(--cyan);
    color: var(--navy);
    padding: 1rem;
    border-radius: 12px;
    border: none;
    font-family: 'Poppins',sans-serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    margin-top: .25rem
}

    .btn-form:hover {
        background: #fff;
        transform: translateY(-1px)
    }

/* ── FOOTER ── */
footer {
    background: #06101C;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 3.5rem 2.5rem 2rem
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-brand > p {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 270px
}

.footer-col h4 {
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--off);
    margin-bottom: 1rem
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s
}

    .footer-col a:hover {
        color: var(--cyan)
    }

.footer-bot {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

    .footer-bot p {
        color: var(--dim);
        font-size: .78rem
    }

.socials {
    display: flex;
    gap: .65rem
}

    .socials a {
        width: 34px;
        height: 34px;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        text-decoration: none;
        transition: all .2s
    }

        .socials a:hover {
            background: var(--cyan);
            color: var(--navy);
            border-color: var(--cyan)
        }

/* ── ANIMATIONS ── */
.fu {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease,transform .65s ease
}

    .fu.vis {
        opacity: 1;
        transform: translateY(0)
    }

/* ── RESPONSIVE ── */
@media(max-width:1080px) {
    .hero-inner, .sobre-grid, .qs-grid, .eco-grid, .cont-grid {
        grid-template-columns: 1fr
    }

    .hero-visual {
        display: none
    }

    .stats-grid, .nums-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .steps {
        grid-template-columns: repeat(2,1fr)
    }

        .steps::before {
            display: none
        }

    .parc-grid {
        grid-template-columns: repeat(2,1fr)
    }

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

    .dep-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width:768px) {
    section {
        padding: 4rem 1.5rem
    }

    #stats {
        padding: 2.5rem 1.5rem
    }

    #numeros {
        padding: 4rem 1.5rem
    }

    #quem-somos {
        padding: 4rem 1.5rem
    }

    .qs-grid {
        gap: 2.5rem
    }

    .sobre-grid {
        gap: 2.5rem
    }

    .eco-grid {
        gap: 2.5rem
    }

    .cont-grid {
        gap: 2.5rem
    }

    .dep-grid {
        grid-template-columns: 1fr
    }

    .sol-card blockquote {
        font-size: 1.15rem
    }
}

@media(max-width:680px) {
    nav {
        padding: 1rem 1.25rem
    }

    nav.scrolled {
        padding: .75rem 1.25rem
    }

    .nav-links {
        display: none
    }

    .mob-btn {
        display: block
    }

    .nav-mobile-open {
        top: 60px
    }

    #hero {
        padding: 7rem 1.25rem 4rem
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .btn-p, .btn-s {
        width: 100%;
        justify-content: center
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 1.25rem
    }

    .stat-n {
        font-size: 1.8rem
    }

    .mods-grid {
        grid-template-columns: 1fr
    }

    .steps {
        grid-template-columns: 1fr
    }

    .nums-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .parc-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .row2 {
        grid-template-columns: 1fr
    }

    .cont-form {
        padding: 1.75rem 1.25rem
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .footer-bot {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }

    footer {
        padding: 3rem 1.25rem 1.5rem
    }
}

@media(max-width:420px) {
    h1 {
        font-size: 1.75rem
    }

    h2.stitle {
        font-size: 1.5rem
    }

    .stats-grid, .nums-grid {
        grid-template-columns: 1fr
    }

    .parc-grid {
        grid-template-columns: 1fr
    }

    .stat-n {
        font-size: 2rem
    }

    .hero-badge {
        font-size: .68rem
    }
}

.nav-mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(9,21,36,.98);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--cborder);
    z-index: 999
}

.mod-ic {
    margin: 0 auto;
    margin-bottom: 1rem;
}

.mod-name {
    text-align: center;
}

/*.mod-link {
    margin: 0 auto;
    margin-bottom: .5rem;
    margin-top: .5rem;
    text-align: center;
}

    .mod-link a {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        text-decoration: none;
        background-color: transparent;
        color: var(--white);
        border: solid 1px var(--white);
        padding: .85rem 2rem;
        border-radius: 50px;
        font-size: .7rem;
        font-weight: 700;
        text-decoration: none;
        transition: all .2s;
        white-space: nowrap
    }

        .mod-link a:hover {
            background-color: var(--cyan);
            border: solid 1px var(--cyan);
            color: var(--navy);
        }*/