/* ─── Base ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', ui-sans-serif, system-ui, sans-serif; }

/* ─── Intro: banner + consulta flutuante ─────────────────────────────────── */
.hg-home-intro {
    position: relative;
    background-color: #081228;
    overflow: visible;
    margin-bottom: -52px;
}
/* ─── Hero (foto na altura exata + degradê lateral) ──────────────────────── */
.hg-hero {
    position: relative;
    overflow: hidden;
    background-color: #081228;
    min-height: clamp(620px, 58vh, 780px);
    padding-bottom: 72px;
    isolation: isolate;
}
.hg-hero-visual {
    position: absolute;
    inset: 0;
    left: 34%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hg-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    right: 45%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        #081228 0%,
        rgba(8, 18, 40, 0.94) 28%,
        rgba(8, 18, 40, 0.55) 58%,
        rgba(8, 18, 40, 0.12) 82%,
        transparent 100%
    );
}
.hg-hero-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: 68% 18% !important;
}
.hg-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            to top,
            #081228 0%,
            rgba(8, 18, 40, 0.45) 22%,
            transparent 48%
        ),
        linear-gradient(
            90deg,
            rgba(8, 18, 40, 0.82) 0%,
            rgba(8, 18, 40, 0.45) 32%,
            transparent 62%
        );
}
.hg-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 24px 48px;
    position: relative;
    z-index: 3;
    min-height: inherit;
}
.hg-hero-text { max-width: 760px; }
@media (max-width: 1024px) {
    .hg-hero-text { max-width: 640px; }
    .hg-hero-visual {
        left: 30%;
    }
}
@media (max-width: 768px) {
    .hg-hero {
        min-height: 0;
        padding-bottom: 0;
        overflow: visible;
    }
    .hg-hero-visual {
        left: 0;
    }
    .hg-hero-visual::before {
        inset: 0;
        right: 0;
        width: auto;
        background: linear-gradient(
            180deg,
            rgba(8, 18, 40, 0.68) 0%,
            rgba(8, 18, 40, 0.42) 42%,
            rgba(8, 18, 40, 0.78) 100%
        );
    }
    .hg-hero-img {
        opacity: 0.78;
        object-position: 74% 20% !important;
    }
    .hg-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(8, 18, 40, 0.62) 0%,
            rgba(8, 18, 40, 0.28) 38%,
            rgba(8, 18, 40, 0.82) 100%
        );
    }
    .hg-hero-inner {
        padding: 20px 20px 32px;
    }
    .hg-hero-text {
        max-width: none;
    }
    .hg-hero h1 {
        font-size: clamp(1.7rem, 8.2vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: 14px;
    }
    .hg-hero-tag {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 14px;
    }
    .hg-hero-sub {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 22px;
    }
    .hg-hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .hg-hero-cta .hg-btn-glass {
        display: none;
    }
    .hg-btn-primary {
        justify-content: center;
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .hg-hero-inner {
        padding: 16px 16px 28px;
    }
    .hg-hero h1 {
        font-size: 1.65rem;
    }
    .hg-hero-sub {
        font-size: 14px;
    }
}
.hg-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.22);
    color: #e0f2fe;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    margin-bottom: 24px;
}
.hg-hero h1 {
    font-size: clamp(2.4rem, 5.4vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -.03em;
    color: #ffffff;
    text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hg-h1-highlight {
    color: #38bdf8;
    background: linear-gradient(120deg, #38bdf8, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hg-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.82);
    margin: 0 0 32px;
    line-height: 1.6;
    max-width: 640px;
}
.hg-hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.hg-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .15s, transform .1s, box-shadow .15s;
    box-shadow: 0 10px 30px rgba(37,99,235,.4);
}
.hg-btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); color: #fff; }
.hg-btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,.28);
    backdrop-filter: blur(6px);
    text-decoration: none;
    transition: background .15s;
}
.hg-btn-glass:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ─── Consultation Bar ───────────────────────────────────────────────────── */
.hg-domain-bar {
    position: relative;
    max-width: 1100px;
    margin: -64px auto 0;
    padding: 0 24px;
    z-index: 20;
}
.hg-domain-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 50px rgba(15,23,42,.12);
    border: 1px solid #f1f5f9;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.hg-domain-fields {
    display: flex;
    flex: 1;
    gap: 12px;
    flex-wrap: wrap;
    min-width: 0;
}
.hg-domain-fields .hg-domain-input-wrap {
    flex: 1;
    min-width: 180px;
}
.hg-domain-label {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}
.hg-domain-label small {
    display: block;
    font-size: 11.5px;
    font-weight: 400;
    color: #94a3b8;
    margin-top: 3px;
}
.hg-domain-input-wrap {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 11px;
    overflow: hidden;
    background: #f8fafc;
    transition: border-color .15s, box-shadow .15s;
}
.hg-domain-input-wrap:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
    background: #fff;
}
.hg-domain-www {
    padding: 0 14px;
    border-right: 1.5px solid #e5e7eb;
    height: 48px;
    display: flex;
    align-items: center;
}
.hg-domain-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 14px;
    font-size: 14px;
    color: #0f172a;
    height: 48px;
    outline: none;
}
.hg-domain-btn {
    background: #2563eb;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 0 26px;
    height: 48px;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .15s;
}
.hg-domain-btn:hover { background: #1d4ed8; }

/* ─── Hero + consulta: mobile (após regras base para vencer margin negativa) ─ */
@media (max-width: 768px) {
    .hg-home-intro {
        margin-bottom: 0;
    }
    .hg-domain-bar {
        margin: 0 auto;
        padding: 0 16px 28px;
    }
    .hg-domain-card {
        flex-direction: column;
        align-items: stretch;
        padding: 18px 16px;
        gap: 14px;
        border-radius: 14px;
        box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
    }
    .hg-domain-label {
        white-space: normal;
    }
    .hg-domain-fields {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .hg-domain-fields .hg-domain-input-wrap,
    .hg-domain-input-wrap {
        flex: none;
        min-width: 0;
        width: 100%;
    }
    .hg-domain-btn {
        width: 100%;
        justify-content: center;
    }
    .hg-trust {
        padding-top: 32px;
    }
}
@media (max-width: 480px) {
    .hg-domain-bar {
        padding: 0 12px 24px;
    }
    .hg-domain-card {
        padding: 16px 14px;
    }
    .hg-trust {
        padding-top: 28px;
    }
}

/* ─── Section Utilities ──────────────────────────────────────────────────── */
.hg-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.hg-section-pad { padding-top: 84px; padding-bottom: 84px; }
.hg-section-bg-light { background: #f8fafc; }
.hg-section-bg-white { background: #fff; }
.hg-section-eyebrow {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #2563eb;
    margin: 0 0 12px;
}
.hg-section-title {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.18;
    margin: 0 0 14px;
    letter-spacing: -.01em;
}
.hg-section-sub {
    font-size: 15.5px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 40px;
}
.hg-section-head-center {
    text-align: center;
    margin-bottom: 54px;
}

/* ─── Problema: Sem x Com o sistema ──────────────────────────────────────── */
.hg-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
@media (max-width: 760px) { .hg-problem-grid { grid-template-columns: 1fr; } }
.hg-problem-card {
    background: #fff;
    border: 2px solid #eef2f7;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 4px 16px rgba(15,23,42,.04);
}
.hg-problem-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}
.hg-problem-icon {
    width: 46px; height: 46px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}
.hg-problem-head h3 { font-size: 17px; font-weight: 800; color: #0f172a; margin: 0; }
.hg-problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hg-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}
.hg-problem-list li i { font-size: 13px; margin-top: 3px; flex-shrink: 0; }

/* ─── Features Grid ──────────────────────────────────────────────────────── */
.hg-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .hg-features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hg-features-grid { grid-template-columns: 1fr; } }
.hg-feature-card {
    background: #fff;
    border: 1.5px solid #eef2f7;
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 4px 16px rgba(15,23,42,.04);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.hg-feature-card:hover {
    border-color: #dbeafe;
    box-shadow: 0 16px 40px rgba(37,99,235,.1);
    transform: translateY(-4px);
}
.hg-feature-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 23px;
    margin-bottom: 18px;
}
.hg-feature-card h3 {
    font-size: 16.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 9px;
}
.hg-feature-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ─── Steps ──────────────────────────────────────────────────────────────── */
.hg-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.hg-steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: repeating-linear-gradient(90deg, #c7d7fb 0 8px, transparent 8px 16px);
}
@media (max-width: 768px) {
    .hg-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
    .hg-steps-grid::before { display: none; }
}
@media (max-width: 460px) { .hg-steps-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }
.hg-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hg-step-circle {
    width: 66px; height: 66px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #dbeafe;
    color: #2563eb;
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(37,99,235,.12);
}
.hg-step-badge {
    position: absolute;
    top: -6px;
    right: calc(50% - 44px);
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(37,99,235,.4);
}
.hg-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 4px 0 8px;
}
.hg-step-text {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 220px;
}

/* ─── Benefits / Transparência ───────────────────────────────────────────── */
.hg-benefits-wrap {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 940px) { .hg-benefits-wrap { grid-template-columns: 1fr; gap: 44px; } }
.hg-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
}
.hg-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}
.hg-checklist-item i { color: #16a34a; font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.hg-lai-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hg-lai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: #15803d;
}
.hg-lai-badge i { color: #16a34a; }

.hg-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (max-width: 480px) { .hg-benefits-grid { grid-template-columns: 1fr; } }
.hg-benefit-card {
    background: #f8fafc;
    border: 1.5px solid #eef2f7;
    border-radius: 18px;
    padding: 24px 22px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.hg-benefit-card:hover {
    border-color: #dbeafe;
    background: #fff;
    box-shadow: 0 12px 32px rgba(37,99,235,.08);
    transform: translateY(-3px);
}
.hg-benefit-icon {
    width: 46px; height: 46px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    font-size: 18px;
}
.hg-benefit-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
}
.hg-benefit-text {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.hg-cards-track-outer {
    overflow: hidden;
    width: 100%;
    padding-bottom: 12px;
}
.hg-testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
    padding-right: 48px;
    padding-bottom: 16px;
}
.hg-testimonial-card {
    background: #fff;
    border: 1.5px solid #eef2f7;
    border-radius: 20px;
    padding: 30px 28px 24px;
    min-width: 330px;
    max-width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(15,23,42,.05);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.hg-testimonial-card:hover {
    border-color: #dbeafe;
    box-shadow: 0 14px 36px rgba(37,99,235,.1);
    transform: translateY(-3px);
}
.hg-quote-mark {
    font-size: 52px;
    line-height: .6;
    color: #dbeafe;
    font-family: Georgia, serif;
    margin-bottom: 14px;
    font-weight: 900;
}
.hg-testimonial-text {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.7;
    margin: 0 0 22px;
    flex: 1;
}
.hg-testimonial-source { padding-top: 18px; border-top: 1px solid #f1f5f9; }
.hg-testimonial-person { display: flex; align-items: center; gap: 12px; }
.hg-testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.hg-testimonial-name { font-size: 14px; font-weight: 700; color: #0f172a; }
.hg-testimonial-role { font-size: 12px; color: #94a3b8; margin-top: 1px; }
.hg-arrow-btn {
    width: 40px; height: 40px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: #64748b;
    font-size: 14px;
    transition: all .15s;
}
.hg-arrow-btn:hover { border-color: #2563eb; color: #2563eb; }

/* ─── CTA Banner ─────────────────────────────────────────────────────────── */
.hg-cta-banner {
    background:
        radial-gradient(ellipse at 85% 15%, rgba(8,145,178,.45) 0%, transparent 55%),
        linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 60%, #2563eb 100%);
    color: #fff;
}
.hg-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}
.hg-cta-inner h2 {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -.01em;
}
.hg-cta-inner p {
    font-size: 15.5px;
    color: rgba(255,255,255,.82);
    max-width: 500px;
    line-height: 1.7;
    margin: 0 0 20px;
}
.hg-cta-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}
.hg-cta-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: rgba(255,255,255,.92);
}
.hg-cta-perk i { color: #6ee7b7; }
.hg-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hg-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: #1e40af;
    font-size: 14.5px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .15s, transform .1s;
}
.hg-btn-white:hover { background: #e0f2fe; color: #1e40af; transform: translateY(-1px); }
.hg-btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,.28);
    text-decoration: none;
    transition: background .15s;
}
.hg-btn-ghost-white:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.hg-public-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 52px 24px 28px;
}
.hg-public-footer-inner { max-width: 1200px; margin: 0 auto; }
.hg-public-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 38px;
}
@media (max-width: 768px) { .hg-public-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .hg-public-footer-grid { grid-template-columns: 1fr; } }
.hg-public-footer h5 { margin: 0 0 14px; color: #fff; font-size: 15px; font-weight: 700; }
.hg-public-footer p { margin: 0; font-size: 14px; line-height: 1.65; color: rgba(203,213,225,.7); max-width: 330px; }
.hg-public-footer-grid a {
    display: block;
    color: rgba(203,213,225,.7);
    font-size: 13.5px;
    margin: 7px 0;
    text-decoration: none;
    transition: color .12s;
}
.hg-public-footer-grid a:hover { color: #93c5fd; }
.hg-public-footer-bottom {
    border-top: 1px solid rgba(148,163,184,.15);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(203,213,225,.4);
}

/* ─── Faixa de confiança ─────────────────────────────────────────────────── */
.hg-trust {
    background: #fff;
    border-bottom: 1px solid #eef2f7;
    padding: 96px 0 36px;
    position: relative;
    z-index: 5;
}
.hg-trust-title {
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #94a3b8;
    margin: 0 0 26px;
}
.hg-trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 760px) { .hg-trust-stats { grid-template-columns: 1fr 1fr; gap: 22px; } }
.hg-trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: center;
}
.hg-trust-icon {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: #eff6ff;
    color: #2563eb;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}
.hg-trust-big { font-size: 16px; font-weight: 800; color: #0f172a; line-height: 1.1; }
.hg-trust-small { font-size: 12.5px; color: #94a3b8; margin-top: 2px; }

/* ─── Dores ──────────────────────────────────────────────────────────────── */
.hg-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 900px) { .hg-pain-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .hg-pain-grid { grid-template-columns: 1fr; } }
.hg-pain-card {
    background: #fff;
    border: 1.5px solid #f1f5f9;
    border-radius: 18px;
    padding: 26px 22px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.hg-pain-card:hover {
    border-color: #fecaca;
    box-shadow: 0 14px 34px rgba(220,38,38,.08);
    transform: translateY(-3px);
}
.hg-pain-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: #fef2f2;
    color: #dc2626;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.hg-pain-card h3 {
    font-size: 15.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.35;
}
.hg-pain-card p { font-size: 13.5px; color: #64748b; line-height: 1.6; margin: 0; }

/* ─── Solução (split com foto) ───────────────────────────────────────────── */
.hg-solution-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 900px) { .hg-solution-split { grid-template-columns: 1fr; gap: 40px; } }
.hg-solution-photo { position: relative; }
.hg-solution-photo img {
    width: 100%;
    border-radius: 22px;
    display: block;
    box-shadow: 0 28px 60px rgba(15,23,42,.16);
    border: 5px solid #fff;
}
.hg-solution-photo-badge {
    position: absolute;
    bottom: 22px;
    left: -22px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    padding: 12px 18px 12px 12px;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(15,23,42,.16);
}
@media (max-width: 540px) { .hg-solution-photo-badge { left: 8px; } }
.hg-solution-photo-badge span {
    width: 40px; height: 40px;
    border-radius: 11px;
    background: #dbeafe;
    color: #2563eb;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.hg-solution-photo-badge strong { display: block; font-size: 15px; font-weight: 800; color: #0f172a; }
.hg-solution-photo-badge small { font-size: 11.5px; color: #94a3b8; }
.hg-solution-list { display: flex; flex-direction: column; gap: 12px; }
.hg-solution-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 15px;
    color: #334155;
    line-height: 1.5;
}
.hg-solution-item i { color: #16a34a; font-size: 15px; margin-top: 2px; flex-shrink: 0; }

/* ─── Resultados (faixa escura) ──────────────────────────────────────────── */
.hg-results {
    background:
        radial-gradient(ellipse at 80% 10%, rgba(8,145,178,.4) 0%, transparent 55%),
        linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 76px 0;
}
.hg-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 760px) { .hg-results-grid { grid-template-columns: 1fr 1fr; } }
.hg-result-card {
    text-align: center;
    padding: 20px 12px;
}
.hg-result-num {
    display: block;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #38bdf8;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}
.hg-result-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.75);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.hg-faq { max-width: 820px; }
.hg-faq-list { display: flex; flex-direction: column; gap: 12px; }
.hg-faq-item {
    border: 1.5px solid #eef2f7;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: border-color .15s, box-shadow .15s;
}
.hg-faq-item:hover { border-color: #dbeafe; }
.hg-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15.5px;
    font-weight: 700;
    color: #0f172a;
}
.hg-faq-q i { color: #2563eb; font-size: 14px; transition: transform .2s; flex-shrink: 0; }
.hg-faq-q.is-open { color: #2563eb; }
.hg-faq-a { padding: 0 22px 20px; }
.hg-faq-a p { margin: 0; font-size: 14.5px; color: #64748b; line-height: 1.7; }

/* ─── Contato ────────────────────────────────────────────────────────────── */
.hg-contact {
    background:
        radial-gradient(ellipse at 15% 0%, rgba(37,99,235,.5) 0%, transparent 55%),
        linear-gradient(135deg, #0a1628 0%, #0f2347 100%);
    padding: 84px 0;
    color: #fff;
}
.hg-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 900px) { .hg-contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.hg-contact-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    color: #fff;
}
.hg-contact-lead {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin: 0 0 26px;
    max-width: 460px;
}
.hg-contact-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.hg-contact-perks div {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14.5px;
    color: rgba(255,255,255,.9);
}
.hg-contact-perks i { color: #6ee7b7; }
.hg-contact-direct { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.hg-contact-direct a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #93c5fd;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.hg-contact-direct a:hover { color: #bfdbfe; }

.hg-contact-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px 30px;
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.hg-contact-card h3 { margin: 0 0 4px; font-size: 20px; font-weight: 800; color: #0f172a; }
.hg-contact-card-sub { margin: 0 0 22px; font-size: 13.5px; color: #94a3b8; }
.hg-form { display: flex; flex-direction: column; gap: 16px; }
.hg-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 460px) { .hg-field-row { grid-template-columns: 1fr; } }
.hg-field { display: flex; flex-direction: column; gap: 7px; }
.hg-field label { font-size: 13px; font-weight: 700; color: #334155; }
.hg-field input,
.hg-field textarea {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 11px;
    padding: 12px 14px;
    font-size: 14px;
    color: #0f172a;
    font-family: inherit;
    background: #f8fafc;
    outline: none;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.hg-field textarea { resize: vertical; }
.hg-field input:focus,
.hg-field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
    background: #fff;
}
.hg-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #16a34a;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(22,163,74,.3);
    transition: background .15s, transform .1s;
}
.hg-form-btn:hover { background: #15803d; transform: translateY(-1px); }
.hg-form-note {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    font-size: 12px;
    color: #94a3b8;
    margin: 2px 0 0;
}
