/* ===== VARIÁVEIS (cores da logo Vision) ===== */
:root {
    --azul-eletrico: #2A4EE6;
    --azul-claro: #2D5BFF;
    --azul-escuro: #0E1B3D;
    --teal: #2EE0C4;
    --ciano: #28C9E8;
    --branco: #eeeefb;
    --cinza-claro: #F4F7FF;
    --cinza-medio: #6B7591;
    --cinza-texto: #1A2238;
    --sombra: 0 20px 50px rgba(42, 78, 230, 0.14);
    --sombra-suave: 0 8px 24px rgba(14, 27, 61, 0.10);
    --gradiente-marca: linear-gradient(110deg, #2D5BFF 0%, #2BA8E8 55%, #2EE0C4 100%);
    --radius: 16px;
    --transicao: 0.25s ease;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--cinza-texto);
    background: var(--branco);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    transition: var(--transicao);
    white-space: nowrap;
}

.btn-primary {
    background: var(--azul-eletrico);
    color: var(--branco);
    box-shadow: 0 10px 25px rgba(42, 78, 230, 0.3);
}

.btn-primary:hover {
    background: var(--azul-claro);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(42, 78, 230, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--azul-eletrico);
    border-color: rgba(42, 78, 230, 0.25);
}

.btn-ghost:hover {
    background: rgba(42, 78, 230, 0.06);
    border-color: var(--azul-eletrico);
}

/* ===== HEADER ===== */
.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 26, 63, 0.06);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.1rem;
    color: var(--azul-escuro);
}

/* Só a logo do header fica fixa à esquerda (para centralizar o menu) */
.nav .logo {
    position: absolute;
    left: 0;
}

.logo-img {
    display: block;
    height: 46px;
    width: auto;
}

.logo-s {
    color: var(--ciano);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-weight: 600;
    color: var(--cinza-medio);
    transition: var(--transicao);
}

.nav-links a:hover {
    color: var(--azul-eletrico);
}

.nav-cta {
    padding: 10px 22px;
}

/* Botão hambúrguer (escondido no desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto;
    background: var(--branco);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
    background: radial-gradient(120% 120% at 50% 0%, #0C1A42 0%, #08122E 55%, #060D22 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
}

.badge {
    /* display: inline-block; */
    /* background: rgba(255, 255, 255, 0.15); */
    color: var(--cinza-clarc);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* border-radius: 50px; */
    margin-bottom: 28px;
    /* border: 1px solid rgba(255, 255, 255, 0.25); */
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--branco);
    margin-bottom: 24px;
}

.highlight {
    position: relative;
    background: var(--gradiente-marca);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.20rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto 38px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-actions .btn-primary {
    background: var(--branco);
    color: var(--azul-eletrico);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn-primary:hover {
    background: var(--cinza-claro);
}

.hero-actions .btn-ghost {
    background: transparent;
    color: var(--branco);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--branco);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--branco);
    line-height: 1;
}

.stat span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
}

/* ===== CANVAS ANIMADO (JS) ===== */
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    pointer-events: none;
}

/* ===== SEÇÕES GENÉRICAS ===== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: linear-gradient(160deg, var(--azul-escuro) 0%, var(--azul-eletrico) 140%);
}

.section-alt .section-title {
    color: var(--branco);
}

.section-alt .section-tag {
    color: var(--teal);
}

.section-alt .step {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.section-alt .step h3 {
    color: var(--branco);
}

.section-alt .step p {
    color: rgba(255, 255, 255, 0.8);
}

.section-alt .step-number {
    color: rgba(255, 255, 255, 0.35);
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    color: #5B86FF;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--azul-escuro);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--cinza-medio);
}

/* ===== CARDS SOLUÇÕES ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--branco);
    border: 1px solid rgba(10, 26, 63, 0.07);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: var(--transicao);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra);
    border-color: rgba(42, 78, 230, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradiente-marca);
    border-radius: 14px;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(42, 78, 230, 0.3);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--branco);
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 12px;
}

.card p {
    color: var(--cinza-medio);
    font-size: 1rem;
}

/* ===== STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--sombra-suave);
    position: relative;
}

.step-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: rgba(42, 78, 230, 0.18);
    margin-bottom: 12px;
}

.step h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 12px;
}

.step p {
    color: var(--cinza-medio);
}

/* ===== BENEFÍCIOS ===== */
.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.benefits .section-head {
    text-align: left;
    margin: 0;
}

.benefits-text .section-tag,
.benefits-text .section-title,
.benefits-text .section-desc {
    text-align: left;
}

.benefits-text .section-title {
    margin-top: 16px;
}

.benefits-list {
    margin: 28px 0 36px;
    display: grid;
    gap: 14px;
}

.benefits-list li {
    position: relative;
    padding-left: 34px;
    color: var(--cinza-texto);
    font-weight: 500;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--azul-eletrico);
    color: var(--branco);
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.benefits-visual {
    background: linear-gradient(160deg, var(--azul-escuro) 0%, var(--azul-eletrico) 100%);
    border-radius: 24px;
    padding: 44px 38px;
    display: grid;
    gap: 26px;
    box-shadow: var(--sombra);
}

.visual-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.visual-label {
    color: var(--branco);
    font-weight: 600;
    font-size: 0.95rem;
}

.visual-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    overflow: hidden;
}

.visual-bar div {
    height: 100%;
    background: linear-gradient(90deg, var(--ciano), var(--teal));
    border-radius: 50px;
}

/* ===== SUSTENTABILIDADE ===== */
.sustainability {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.sustainability-tag {
    color: var(--teal);
}

.sustainability-list {
    margin-top: 28px;
}

.sustainability-list li::before {
    background: linear-gradient(135deg, #2EE0C4, #2BC98A);
}

.sustainability-highlight {
    background: linear-gradient(160deg, #0E3B36 0%, #103A52 100%);
    border: 1px solid rgba(46, 224, 196, 0.25);
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(46, 224, 196, 0.12);
}

.sustainability-percent {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #2EE0C4 0%, #28C9E8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sustainability-percent-label {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    font-weight: 500;
    max-width: 300px;
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: var(--branco);
}

.cta-box {
    background: linear-gradient(140deg, var(--azul-eletrico) 0%, var(--azul-escuro) 100%);
    border-radius: 28px;
    padding: 70px 40px;
    text-align: center;
    color: var(--branco);
    box-shadow: var(--sombra);
}

.cta-box h2 {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 680px;
    margin: 0 auto 16px;
}

.cta-box > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}

.cta-form {
    display: flex;
    gap: 14px;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cta-form input {
    flex: 1;
    min-width: 220px;
    padding: 15px 22px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.cta-form .btn-primary {
    background: var(--branco);
    color: var(--azul-eletrico);
    box-shadow: none;
}

.cta-form .btn-primary:hover {
    background: var(--cinza-claro);
    transform: translateY(-2px);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--azul-escuro);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer .logo {
    color: var(--branco);
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 280px;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--branco);
    font-size: 1rem;
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: var(--transicao);
}

.footer-links a:hover {
    color: var(--azul-claro);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    text-align: center;
    font-size: 0.9rem;
}

/* ===== TEMA ESCURO (PADRÃO) ===== */
body {
    background: linear-gradient(180deg, #0A1636 0%, #08122E 50%, #0A1636 100%);
    background-repeat: no-repeat;
    min-height: 100vh;
    color: #AEB7CC;
}

/* Header */
.header {
    background: rgba(10, 19, 46, 0.80);
    border-bottom-color: rgba(120, 160, 255, 0.12);
}

.logo {
    color: var(--branco);
}

.nav-links a {
    color: #9AA4BD;
}

.nav-links a:hover {
    color: #6E94FF;
}

/* Seções */
.section,
.cta-section {
    background: transparent;
}

.section-title {
    color: var(--branco);
}

.section-desc {
    color: #9AA4BD;
}

/* Cards */
.card {
    background: rgba(18, 31, 64, 0.65);
    border-color: rgba(120, 160, 255, 0.14);
}

.card:hover {
    border-color: rgba(46, 224, 196, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card h3 {
    color: var(--branco);
}

.card p {
    color: #9AA4BD;
}

/* Benefícios */
.benefits-list li {
    color: #C2CADC;
}

/* Footer */
.footer {
    background: #070F28;
    border-top: 1px solid rgba(120, 160, 255, 0.10);
}

/* Seção azul "Como Funciona" */
.section-alt {
    background: linear-gradient(160deg, #050A18 0%, #1E3CD8 160%);
}

/* ===== RESPONSIVO ===== */

/* Tablets e celulares (menu vira hambúrguer) */
@media (max-width: 900px) {
    /* volta ao layout logo-à-esquerda / hambúrguer-à-direita */
    .nav { justify-content: space-between; }
    .nav .logo { position: static; }

    .nav-toggle { display: flex; }

    /* Menu suspenso */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 24px 24px;
        background: rgba(10, 19, 46, 0.98);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(120, 160, 255, 0.12);
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .header.nav-open .nav-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px 4px;
        font-size: 1.05rem;
        color: var(--branco);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-cta {
        display: block;
        width: 100%;
        margin-top: 18px;
        text-align: center;
    }

    /* Hambúrguer vira "X" quando aberto */
    .header.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .header.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    .header.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Grades */
    .cards { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .benefits { grid-template-columns: 1fr; gap: 44px; }
    .sustainability { grid-template-columns: 1fr; gap: 44px; }
    .hero-title { font-size: 2.6rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

/* Celulares */
@media (max-width: 600px) {
    .container { padding: 0 20px; }

    .cards { grid-template-columns: 1fr; }

    .hero { padding: 72px 0 84px; }
    .badge { display: none; }
    .hero-title { font-size: 2.35rem; }
    .hero-subtitle { font-size: 0.98rem; }
    .hero-actions { gap: 12px; }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    .hero-stats { gap: 28px; }
    .stat strong { font-size: 2rem; }

    .section { padding: 64px 0; }
    .section-title { font-size: 1.8rem; }
    .section-desc { font-size: 1.05rem; }
    .section-head { margin-bottom: 44px; }

    .card { padding: 30px 24px; }

    .benefits-visual { padding: 32px 26px; }

    .sustainability-highlight { padding: 44px 28px; }
    .sustainability-percent { font-size: 4.2rem; }

    /* Formulário de contato empilhado */
    .cta-box { padding: 48px 22px; }
    .cta-box h2 { font-size: 1.6rem; }
    .cta-form { flex-direction: column; }
    .cta-form input,
    .cta-form .btn-primary { width: 100%; min-width: 0; }

    .footer-content { grid-template-columns: 1fr; gap: 32px; }
}

/* Celulares pequenos */
@media (max-width: 380px) {
    .hero-title { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .sustainability-percent { font-size: 3.6rem; }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
