* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --black: #0a0a0a;
    --black2: #141414;
    --black3: #1a1a1a;
    --yellow: #f5c400;
    --yellow2: #ffd93d;
    --green: #2ecc71;
    --green2: #27ae60;
    --white: #fff;
    --gray: #888;
    --lightgray: #f4f4f4;
    --midgray: #1e1e1e;
}
body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #fff;
}
a {
    text-decoration: none;
}

/* ── NAV ── */
nav {
    background: var(--black);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 1px 0 #ffffff08, 0 4px 24px #000c;
    height: 68px;
    gap: 12px;
}
.logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}
.logo-fallback {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: none;
}
.logo-fallback span {
    color: var(--yellow);
}
.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
}
.nav-links > a {
    color: #666;
    font-size: 0.83rem;
    font-weight: 500;
    transition: 0.2s;
}
.nav-links > a:hover {
    color: var(--yellow);
}
.nav-item {
    position: relative;
}
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
    font-size: 0.83rem;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
}
.nav-item > a:hover {
    color: var(--yellow);
}
.nav-item > a svg {
    transition: 0.2s;
}
.nav-item:hover > a svg {
    transform: rotate(180deg);
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    border: 1px solid #222;
    border-radius: 6px;
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
    z-index: 100;
    box-shadow: 0 8px 32px #000c;
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    pointer-events: all;
}
.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 4px;
    color: #888;
    font-size: 0.82rem;
    font-weight: 500;
    transition: 0.2s;
    white-space: nowrap;
}
.nav-dropdown a:hover {
    background: #1a1a1a;
    color: var(--yellow);
}
.nav-dropdown a svg {
    color: var(--yellow);
    flex-shrink: 0;
}
.nav-dropdown-divider {
    height: 1px;
    background: #1e1e1e;
    margin: 4px 0;
}
.nav-cta {
    background: var(--yellow);
    color: var(--black);
    padding: 9px 18px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.82rem;
    white-space: nowrap;
    transition: 0.2s;
}
.nav-cta:hover {
    background: var(--yellow2);
}

/* ── HERO ── */
.hero {
    background: var(--black);
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 80px 5% 60px;
    position: relative;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('../img/background.png') center center/cover no-repeat;
    opacity: 0.35;
}
.hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--yellow), var(--green), transparent);
}
.hero-glow {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #f5c40008 0%, transparent 65%);
    pointer-events: none;
}
.hero-content {
    max-width: 640px;
    z-index: 1;
    position: relative;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.hero-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
.hero-eyebrow span {
    color: #555;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero h1 {
    color: #fff;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.hero h1 mark {
    background: none;
    color: var(--yellow);
}
.hero-tagline {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 34px;
    max-width: 520px;
}
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-wpp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--green2);
    color: #fff;
    padding: 13px 26px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: 0.2s;
}
.btn-wpp:hover {
    background: var(--green);
    transform: translateY(-2px);
}
.btn-wpp svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    flex-shrink: 0;
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #333;
    color: #777;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.2s;
}
.btn-ghost:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid #1e1e1e;
}
.stat {
    padding: 0 0 0 20px;
    border-left: 1px solid #1e1e1e;
}
.stat:first-child {
    border-left: none;
    padding-left: 0;
}
.stat strong {
    display: block;
    color: var(--yellow);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}
.stat span {
    color: #444;
    font-size: 0.75rem;
    margin-top: 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── SOBRE ── */
.sobre {
    background: var(--lightgray);
    padding: 90px 5%;
}
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.sobre-label {
    color: var(--green2);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.sobre h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 18px;
}
.sobre h2 mark {
    background: none;
    color: var(--yellow);
}
.sobre-text {
    color: #666;
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 14px;
}
.sobre-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}
.pillar {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 16px;
    border-left: 3px solid var(--yellow);
}
.pillar h4 {
    color: var(--black);
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.pillar p {
    color: #888;
    font-size: 0.78rem;
    line-height: 1.5;
}
.sobre-visual {
    position: relative;
}
.sobre-card-main {
    background: var(--black);
    border-radius: 12px;
    padding: 36px;
    border: 1px solid #1e1e1e;
    position: relative;
    overflow: hidden;
}
.sobre-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--green));
}
.sobre-num {
    font-size: 4rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -2px;
}
.sobre-num span {
    font-size: 2rem;
    color: var(--green);
}
.sobre-card-main h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.sobre-card-main p {
    color: #555;
    font-size: 0.88rem;
    line-height: 1.65;
}
.sobre-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.sobre-badge {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 3px;
    padding: 5px 12px;
    color: #888;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ── SEÇÕES GENÉRICAS ── */
.sec-label {
    text-align: center;
    color: var(--green2);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.sec-title {
    text-align: center;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}
.sec-title mark {
    background: none;
    color: var(--yellow);
}
.sec-sub {
    text-align: center;
    color: #888;
    font-size: 0.97rem;
    max-width: 480px;
    margin: 0 auto 52px;
    line-height: 1.75;
}

/* ── DORES ── */
.dores {
    background: #fff;
    padding: 90px 5%;
}
.dores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.dor-card {
    background: var(--lightgray);
    border-radius: 6px;
    padding: 28px 24px;
    border: 1px solid #e8e8e8;
    border-left: 4px solid var(--yellow);
    transition: 0.2s;
    position: relative;
}
.dor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px #0001;
}
.dor-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e8e8e8;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.dor-ico {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    color: var(--yellow);
}
.dor-card h3 {
    font-size: 0.97rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}
.dor-card p {
    color: #777;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── SERVIÇOS ── */
.servicos {
    padding: 90px 5%;
    background: var(--black);
}
.servicos .sec-title {
    color: #fff;
}
.servicos .sec-sub {
    color: #555;
}
.serv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1px;
    background: #1e1e1e;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}
.serv-item {
    background: var(--black2);
    padding: 26px 24px;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.serv-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--yellow), var(--green));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
}
.serv-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5c40006, #2ecc7106);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.serv-item:hover {
    background: #1c1c1c;
    transform: translateX(4px);
    box-shadow: 4px 0 24px #f5c40010;
}
.serv-item:hover::before {
    transform: scaleY(1);
}
.serv-item:hover::after {
    opacity: 1;
}
.serv-item-ico {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    color: var(--yellow);
    margin-top: 2px;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}
.serv-item:hover .serv-item-ico {
    transform: scale(1.15) rotate(-5deg);
}
.serv-item-ico.green {
    color: var(--green);
}
.serv-item-text {
    position: relative;
    z-index: 1;
    flex: 1;
}
.serv-item h3 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    transition: color 0.25s;
}
.serv-item:hover h3 {
    color: var(--yellow);
}
.serv-item p {
    color: #555;
    font-size: 0.83rem;
    line-height: 1.6;
    transition: color 0.25s;
}
.serv-item:hover p {
    color: #888;
}
.serv-item-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    opacity: 0;
    transition: 0.3s;
    color: var(--yellow);
    z-index: 1;
}
.serv-item:hover .serv-item-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.serv-hint {
    text-align: center;
    margin-top: 18px;
    color: #333;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}
.serv-hint span {
    color: var(--yellow);
}

/* ── DIFERENCIAIS ── */
.diferenciais {
    padding: 90px 5%;
    background: var(--lightgray);
}
.dif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.dif-card {
    background: var(--black);
    border-radius: 6px;
    padding: 28px 20px;
    border: 1px solid #1e1e1e;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
}
.dif-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--green));
    transform: scaleX(0);
    transition: 0.3s;
    transform-origin: left;
}
.dif-card:hover::after {
    transform: scaleX(1);
}
.dif-card:hover {
    transform: translateY(-3px);
}
.dif-ico {
    width: 34px;
    height: 34px;
    color: var(--yellow);
    margin-bottom: 14px;
}
.dif-card h3 {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.dif-card p {
    color: #666;
    font-size: 0.83rem;
    line-height: 1.65;
}

/* ── PARCEIROS ── */
.parceiros {
    padding: 80px 5%;
    background: var(--black2);
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
    text-align: center;
}
.parceiros .sec-title {
    color: #fff;
}
.parceiros-sub {
    color: #555;
    font-size: 0.92rem;
    max-width: 500px;
    margin: 0 auto 44px;
    line-height: 1.75;
}
.parceiros-sub mark {
    background: none;
    color: var(--green);
}
.parc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: #1e1e1e;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 40px;
}
.parc-card {
    background: var(--black);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: 0.25s;
}
.parc-card:hover {
    background: #111;
}
.parc-logo {
    font-size: 1.05rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}
.parc-logo span {
    color: var(--yellow);
}
.parc-desc {
    color: #aaa;
    font-size: 0.78rem;
    line-height: 1.6;
    max-width: 160px;
    text-align: center;
}
.parc-seal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0d0d0d;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    padding: 14px 24px;
    color: #888;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}
.parc-seal svg {
    color: var(--green);
    flex-shrink: 0;
}

/* ── DEPOIMENTOS ── */
.depoimentos {
    padding: 90px 5%;
    background: #fff;
    overflow: hidden;
}
.dep-carousel-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.dep-carousel {
    overflow: hidden;
}
.dep-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.dep-card {
    background: var(--black2);
    border-radius: 6px;
    padding: 28px 24px;
    border: 1px solid #1e1e1e;
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    transition: 0.2s;
}
.dep-card:hover {
    border-color: #2a2a2a;
}
.stars {
    color: var(--yellow);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
    display: block;
}
.dep-card blockquote {
    color: #777;
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.dep-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #1e1e1e;
}
.dep-av {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}
.dep-author strong {
    display: block;
    color: #ccc;
    font-weight: 700;
    font-size: 0.86rem;
}
.dep-author span {
    color: #444;
    font-size: 0.76rem;
    margin-top: 2px;
    display: block;
}
.dep-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.dep-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #f4f4f4;
    border: 1px solid #e0e0e0;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.dep-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}
.dep-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.dep-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: 0.2s;
}
.dep-dot.active {
    background: var(--yellow);
    width: 20px;
    border-radius: 3px;
}
@media (max-width: 900px) {
    .dep-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}
@media (max-width: 580px) {
    .dep-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* ── CTA ── */
.cta-final {
    background: var(--black);
    padding: 90px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #1e1e1e;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, #f5c4000a 0%, transparent 65%);
}
.cta-final h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    position: relative;
}
.cta-final h2 mark {
    background: none;
    color: var(--yellow);
}
.cta-final p {
    color: #555;
    font-size: 1rem;
    margin: 0 auto 34px;
    max-width: 440px;
    line-height: 1.75;
    position: relative;
}
.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.btn-outline {
    border: 1px solid #333;
    color: #777;
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.2s;
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* ── FORM ── */
.form-section {
    background: var(--lightgray);
    padding: 90px 5%;
}
.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.form-box {
    background: var(--black);
    border-radius: 8px;
    padding: 40px 36px;
    border: 1px solid #1e1e1e;
}
.form-box h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.form-box h3 mark {
    background: none;
    color: var(--yellow);
}
.form-box > p {
    color: #555;
    margin-bottom: 26px;
    font-size: 0.87rem;
    line-height: 1.65;
}
.form-row {
    margin-bottom: 13px;
}
.form-row label {
    display: block;
    color: #555;
    font-weight: 600;
    font-size: 0.73rem;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.form-row input,
.form-row select {
    width: 100%;
    padding: 11px 14px;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #ccc;
    outline: none;
    transition: 0.2s;
    font-family: inherit;
}
.form-row input::placeholder {
    color: #333;
}
.form-row input:focus,
.form-row select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 2px #f5c40012;
}
.form-row select option {
    background: #0d0d0d;
}
.btn-submit {
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    padding: 13px;
    border: none;
    border-radius: 4px;
    font-size: 0.93rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 6px;
}
.btn-submit:hover {
    background: var(--yellow2);
    transform: translateY(-1px);
}
.form-impact {
    position: relative;
}
.form-impact-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
    margin-bottom: 22px;
}
.form-impact h2 {
    color: var(--black);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}
.form-impact h2 span {
    color: var(--green2);
}
.form-impact h2 em {
    font-style: normal;
    position: relative;
}
.form-impact h2 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}
.form-impact p {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 26px;
    max-width: 400px;
}
.form-impact-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.fi-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 0.88rem;
    font-weight: 600;
}
.fi-item svg {
    color: var(--green2);
    flex-shrink: 0;
}
.form-impact-urgency {
    background: var(--black);
    border-left: 3px solid var(--yellow);
    border-radius: 0 6px 6px 0;
    padding: 16px 20px;
}
.form-impact-urgency p {
    color: #888;
    font-size: 0.84rem;
    line-height: 1.65;
    margin: 0;
}
.form-impact-urgency strong {
    color: var(--yellow);
    display: block;
    margin-bottom: 4px;
    font-size: 0.88rem;
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid #111;
    padding: 60px 5% 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto 40px;
}
.footer-brand img {
    height: 32px;
    margin-bottom: 16px;
}
.footer-brand p {
    color: #444;
    font-size: 0.83rem;
    line-height: 1.75;
    max-width: 260px;
    margin-bottom: 18px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.soc-btn {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: 0.2s;
}
.soc-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}
.footer-col h4 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-col ul li a {
    color: #444;
    font-size: 0.82rem;
    transition: 0.2s;
}
.footer-col ul li a:hover {
    color: var(--yellow);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #444;
    font-size: 0.82rem;
    line-height: 1.5;
}
.footer-contact li svg {
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    color: #2a2a2a;
    font-size: 0.78rem;
}
.footer-bottom span {
    color: #1e1e1e;
    font-size: 0.78rem;
}

/* ── MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: #000000cc;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.modal {
    background: var(--black2);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s;
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a transparent;
}
.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}
.modal-header {
    padding: 30px 34px 22px;
    border-bottom: 1px solid #1e1e1e;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    color: #888;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.modal-close:hover {
    background: #2a2a2a;
    color: #fff;
}
.modal-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--yellow);
}
.modal-icon.green {
    color: var(--green);
}
.modal-header h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.modal-header p {
    color: #666;
    font-size: 0.93rem;
    line-height: 1.75;
}
.modal-body {
    padding: 26px 34px 34px;
}
.modal-section {
    margin-bottom: 26px;
}
.modal-section h4 {
    color: var(--yellow);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.modal-feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #0d0d0d;
    border: 1px solid #1e1e1e;
    border-radius: 6px;
    padding: 11px 13px;
    transition: 0.2s;
}
.modal-feat:hover {
    border-color: #2a2a2a;
}
.modal-feat-check {
    width: 17px;
    height: 17px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
}
.modal-feat span {
    color: #aaa;
    font-size: 0.83rem;
    line-height: 1.5;
}
.modal-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.modal-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.modal-benefit-num {
    min-width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--yellow), var(--green));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--black);
    flex-shrink: 0;
}
.modal-benefit p {
    color: #888;
    font-size: 0.86rem;
    line-height: 1.65;
    padding-top: 2px;
}
.modal-benefit p strong {
    color: #ccc;
    display: block;
    margin-bottom: 2px;
    font-size: 0.88rem;
}
.modal-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.modal-btn-primary {
    flex: 1;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--green2);
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.modal-btn-primary:hover {
    background: var(--green);
}
.modal-btn-secondary {
    flex: 1;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2a2a2a;
    color: #888;
    padding: 11px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.2s;
    background: transparent;
    cursor: pointer;
}
.modal-btn-secondary:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

@media (max-width: 900px) {
    .sobre-grid,
    .form-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .sobre-visual,
    .form-impact {
        display: none;
    }
    .footer-grid {
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat {
        padding: 12px 0 0;
        border-left: none;
        border-top: 1px solid #1e1e1e;
    }
    .stat:first-child,
    .stat:nth-child(2) {
        border-top: none;
    }
}
@media (max-width: 500px) {
    .cta-btns,
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .form-box {
        padding: 28px 20px;
    }
    .modal-features {
        grid-template-columns: 1fr;
    }
    .modal-header,
    .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }
}
