:root {
    --blue: #0b2a6f;
    --blue2: #0b348a;
    --yellow: #facc15;
    --text: #0f172a;
    --muted: #475569;
    --bg: #f8fafc;
    --card: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 18px 50px rgba(2, 6, 23, .12);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px
}

.scroll-mt {
    scroll-margin-top: 96px
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.brand__badge {
    background: var(--blue);
    color: var(--yellow);
    font-weight: 900;
    padding: 8px 10px;
    border-radius: 10px;
    letter-spacing: -.03em;
}

.brand__badge--white {
    background: #fff;
    color: var(--blue)
}

.brand__name {
    color: var(--blue);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -.03em
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 26px
}

.nav__links a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
}

.nav__links a:hover {
    color: var(--blue)
}

.iconbtn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
}

.nav__burger {
    display: none
}

.burger {
    width: 26px;
    height: 2px;
    background: #475569;
    display: block;
    position: relative;
}

.burger::before,
.burger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #475569;
}

.burger::before {
    top: -7px
}

.burger::after {
    top: 7px
}

.nav__mobile {
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.nav__mobileInner {
    padding: 10px 0 16px;
    display: grid;
    gap: 10px
}

.nav__mobileLink {
    padding: 14px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #475569;
    font-weight: 800;
}

.nav__mobileLink:hover {
    background: #f1f5f9
}

/* ROUTES */
.route {
    display: none
}

.route--active {
    display: block
}

/* BUTTONS */
.btn {
    border: none;
    cursor: pointer;
    font-weight: 800;
    border-radius: 999px;
    padding: 10px 16px;
    transition: transform .06s ease, background .2s ease, box-shadow .2s ease;
}

.btn:active {
    transform: scale(.98)
}

.btn--primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 12px 28px rgba(11, 42, 111, .22);
}

.btn--primary:hover {
    background: var(--blue2)
}

.btn--outline {
    background: #fff;
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn--outline:hover {
    background: #eff6ff
}

.btn--full {
    width: 100%;
    border-radius: 16px
}

.btn--lg {
    padding: 16px 22px;
    border-radius: 18px;
    font-size: 16px
}

.chev {
    display: inline-block;
    margin-left: 8px;
    font-weight: 900
}

/* HERO */
.hero {
    padding-top: 110px;
    padding-bottom: 60px;
    background: linear-gradient(to bottom, rgba(59, 130, 246, .08), #fff);
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center
}

.hero h1 {
    margin: 14px 0 14px;
    font-size: 54px;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.lead {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    max-width: 60ch
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px
}

.hero__media {
    position: relative
}

.hero__imgWrap {
    border-radius: 28px;
    overflow: hidden;
    border: 10px solid #fff;
    background: #fff;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    transition: transform .5s ease;
}

.hero__imgWrap:hover {
    transform: rotate(0deg)
}

.hero__imgWrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 1s ease
}

.hero__imgWrap:hover img {
    transform: scale(1.08)
}

.hero__imgOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 42, 111, .65), transparent 55%)
}

.hero__imgCaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff
}

.hero__capKicker {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 900
}

.hero__capTitle {
    font-weight: 900;
    font-size: 20px;
    margin-top: 4px
}

.statcard {
    position: absolute;
    left: -10px;
    bottom: -18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: var(--shadow);
}

.statcard:hover {
    transform: translateY(-2px);
    opacity: 0.4;
}

.statcard__icon {
    background: #dcfce7;
    color: #166534;
    border-radius: 12px;
    padding: 10px
}

.statcard__label {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 900
}

.statcard__value {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a
}

/* PILL */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
}

.pill--blue {
    background: #dbeafe;
    color: var(--blue)
}

.pill--yellow {
    background: #fef9c3;
    color: var(--blue)
}

.pill__icon {
    font-size: 14px
}

.u-underline {
    color: var(--blue);
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-decoration-thickness: 10px;
    text-underline-offset: 8px;
}

/* SECTIONS */
.section {
    padding: 80px 0
}

.section--white {
    background: #fff
}

.section--gray {
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb
}

.section__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px
}

.section__title {
    text-align: center;
    font-size: 30px;
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: -.03em
}

.section__subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    margin: 0
}

.section__tag {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--blue);
    font-weight: 900;
    border: 1px solid #dbeafe;
}

/* GRID */
.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(2, 6, 23, .06);
}

.card__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #eff6ff;
    color: var(--blue);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
}

.card h3 {
    margin: 0 0 8px
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6
}

/* PANELS */
.panel {
    border-radius: 24px;
    padding: 26px;
    background: var(--blue);
    color: #fff;
    box-shadow: 0 18px 50px rgba(11, 42, 111, .25);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel__badge {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--blue);
    font-weight: 900;
    font-size: 18px;
}

.panel h3 {
    margin: 0
}

.panel p {
    margin: 0;
    color: #dbeafe;
    line-height: 1.6
}

.formula {
    margin-top: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 14px;
    font-weight: 900;
    text-align: center;
}

.panel__titleYellow {
    color: var(--yellow)
}

.mini {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 14px;
    text-align: center;
}

.mini__k {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 900
}

.mini__v {
    font-size: 22px;
    font-weight: 900;
    margin-top: 6px
}

.mini__s {
    color: var(--yellow);
    font-style: italic;
    margin-top: 4px
}

/* PRICING */
.pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch
}

.pricecard {
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: border-color .2s ease, transform .2s ease;
}

.pricecard:hover {
    border-color: #93c5fd;
    transform: translateY(-2px)
}

.pricecard--popular {
    border: 2px solid var(--blue);
    box-shadow: var(--shadow);
    transform: scale(1.03);
    position: relative;
}

.pricecard__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.pricecard__top {
    text-align: center
}

.pricecard__name {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 28px;
    font-weight: 900;
    background: #f1f5f9;
    color: var(--blue);
    letter-spacing: -.04em;
}

.pricecard--popular .pricecard__name {
    background: var(--blue);
    color: var(--yellow)
}

.pricecard__price {
    margin-top: 8px;
    font-weight: 900;
    font-size: 28px
}

.pricecard__price small {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 700
}

.pricecard__price span {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
    margin-left: 6px
}

.pricecard__desc {
    margin: 14px 0 16px;
    color: var(--muted);
    font-style: italic;
    text-align: center;
    font-weight: 600;
    font-size: 12px
}

.checks {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    gap: 10px
}

.checks li {
    font-weight: 800;
    color: #0f172a;
    font-size: 13px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.3
}

.checks li::before {
    content: "✓";
    color: #22c55e;
    font-weight: 900;
    margin-top: 1px
}

/* CTA */
.cta {
    margin-top: 44px;
    background: var(--blue);
    color: #fff;
    border-radius: 40px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 22px 60px rgba(11, 42, 111, .35);
    overflow: hidden;
}

.cta__text h3 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 900
}

.cta__text p {
    margin: 0;
    color: #dbeafe;
    line-height: 1.6;
    font-size: 16px
}

.cta__bubble {
    border: none;
    cursor: pointer;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--blue);
    font-weight: 900;
    transform: rotate(6deg);
    border: 4px solid #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.cta__bubble span {
    display: block;
    font-size: 20px
}

.cta__bubble small {
    display: block;
    font-size: 12px;
    margin-top: 4px
}

/* CONTACT ROUTE */
.back {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--blue);
    font-weight: 900;
    margin-top: 110px;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start
}

.contact__copy h2 {
    font-size: 42px;
    letter-spacing: -.04em;
    margin: 14px 0
}

.bullets {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 10px
}

.bullets li {
    font-weight: 700;
    color: #334155
}

.bullets li::before {
    content: "✓";
    color: var(--blue);
    font-weight: 900;
    margin-right: 10px
}

.contact__form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1px;
    box-shadow: var(--shadow);
    font-size: 2.08rem;
}

form label {
    display: block
}

form label span {
    display: block;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #334155;
    margin-bottom: 8px;
}

input,
select {
    width: 100%;
    padding: 14px 14px;
    border-radius: 16px;
    border: 2px solid transparent;
    background: #f8fafc;
    outline: none;
    font-size: 14px;
}

input:focus,
select:focus {
    border-color: var(--blue);
    background: #fff
}

.form__grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px
}

.fine {
    font-size: 10px;
    color: #94a3b8;
    line-height: 1.4;
    text-align: center;
    margin-top: 12px
}

.success {
    text-align: center;
    padding: 14px 8px
}

.success__icon {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    margin: 10px auto 14px;
    background: #dcfce7;
    color: #166534;
    display: grid;
    place-items: center;
    font-size: 34px;
}

/* FOOTER */
.footer {
    background: #0b1220;
    color: #fff;
    padding: 40px 0 18px;
    margin-top: auto;
    font-size: 1.43rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 22px
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.footer__name {
    font-weight: 900;
    font-size: 20px
}

.footer p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0
}

.footer h4 {
    margin: 0 0 12px
}

.linkbtn {
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    font-weight: 700;
    padding: 0;
}

.linkbtn:hover {
    color: #fff
}

.footer__bottom {
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, .2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.footer__bottom p {
    font-size: 12px
}

.footer__links {
    display: flex;
    gap: 14px
}

.footer__links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 12px
}

.footer__links a:hover {
    color: #fff
}

/* CHAT */
.chat {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60
}

.chat__fab {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: var(--blue);
    color: #fff;
    box-shadow: var(--shadow);
    position: relative;
}

.chat__fabDot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--yellow);
    animation: ping 1.2s infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.8);
        opacity: 0
    }
}

.chat__panel {
    width: min(420px, 92vw);
    height: 520px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.chat__header {
    background: var(--blue);
    color: #fff;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat__title {
    display: flex;
    align-items: center;
    gap: 10px
}

.chat__zap {
    background: var(--yellow);
    color: var(--blue);
    padding: 6px 8px;
    border-radius: 10px;
    font-weight: 900
}

.chat__body {
    flex: 1;
    background: #f8fafc;
    padding: 14px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.chat__msg {
    max-width: 85%;
    padding: 10px 12px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.4
}

.chat__msg--bot {
    background: #fff;
    border: 1px solid var(--border);
    align-self: flex-start;
    border-top-left-radius: 6px
}

.chat__msg--user {
    background: var(--blue);
    color: #fff;
    align-self: flex-end;
    border-top-right-radius: 6px
}

.chat__footer {
    padding: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px
}

.chat__footer input {
    flex: 1;
    border-radius: 14px;
    padding: 12px;
    background: #f1f5f9
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .nav__links {
        display: none
    }

    .nav__burger {
        display: block
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .hero h1 {
        font-size: 42px
    }

    .statcard {
        display: none
    }

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

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

    .pricecard--popular {
        transform: none
    }

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

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

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

/* ====== AJUSTES DE TAMANHO (somente na route-solicitar) ====== */
#route-solicitar {
    /* escala geral: ajuste aqui se quiser mais/menos */
    --solicitar-scale: 1.08;
}

/* Título principal */
#route-solicitar .contact__copy h2 {
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: 1.05;
}

/* Texto de apoio */
#route-solicitar .contact__copy .lead {
    font-size: clamp(26px, 1.35vw, 20px);
    line-height: 1.7;
}

/* Lista de benefícios */
#route-solicitar .bullets li {
    font-size: clamp(24px, 1.1vw, 18px);
    line-height: 1.5;
}

/* Card do formulário: mais “alto” e mais espaçado */
#route-solicitar .contact__form {
    padding: calc(22px * var(--solicitar-scale));
    border-radius: 40px;
}

/* Labels (Nome Completo, E-mail...) */
#route-solicitar form label span {
    font-size: 11px;
    letter-spacing: .2em;
}

/* Inputs e select maiores */
#route-solicitar input,
#route-solicitar select {
    font-size: 15px;
    padding: 16px 16px;
    border-radius: 18px;
}

/* Botão principal maior */
#route-solicitar .btn--lg {
    padding: 18px 22px;
    font-size: 17px;
    border-radius: 18px;
    margin-top: 20px;
}

/* Texto pequeno (autorização) um pouco maior */
#route-solicitar .fine {
    font-size: 11px;
    line-height: 1.5;
}

/* Campo com ícone dentro */
.field{
  position: relative;
}

.field__icon{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 18px;
  pointer-events: none;
}

.field input,
.field select{
  padding-left: 44px; /* espaço pro ícone */
}

/* setinha do select (pra ficar bonito e igual no React) */
.field__chev{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
  pointer-events: none;
}

.field select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px; /* espaço pro chevron */
}

/* ===== Fix ícones dentro dos inputs (evita texto por cima) ===== */
#route-solicitar .field{
  position: relative;
}

#route-solicitar .field__icon{
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 18px;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

/* força padding suficiente + garante que o texto fique acima do background */
#route-solicitar .field input,
#route-solicitar .field select{
  padding-left: 52px !important;   /* importante: vence conflitos */
  position: relative;
  z-index: 1;
}

/* Chevron do select */
#route-solicitar .field__chev{
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

#route-solicitar .field select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 52px !important;
}