/* ────────────────────────────────────────────
   NS Seguro Veicular · versao-2
   Paleta inspirada no site Universo AGV:
   azul royal, amarelo âmbar, branco, cards limpos
──────────────────────────────────────────── */

:root {
  --blue:        #1246e8;
  --blue-dark:   #050e38;
  --blue-mid:    #1a55f5;
  --blue-light:  #3570ff;
  --blue-pale:   #eef2ff;
  --yellow:      #f5a900;
  --yellow-dark: #d4920a;
  --yellow-light:#fff3cc;
  --white:       #ffffff;
  --off-white:   #f5f7fc;
  --text:        #0d1b3e;
  --muted:       #4a5a7a;
  --border:      #dde4f4;
  --radius:      16px;
  --shadow-sm:   0 2px 12px rgba(18,70,232,.10);
  --shadow-md:   0 8px 32px rgba(18,70,232,.18);
  --shadow-lg:   0 20px 60px rgba(18,70,232,.26);
  --glow-blue:   rgba(80,140,255,.22);
  --glow-cyan:   rgba(100,180,255,.14);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1160px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.section { padding: 5rem 0; }

.section-label { margin-bottom: 2.4rem; }
.section-label.centered { text-align: center; }

.section-label h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.section-sub {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
}

.req { color: var(--yellow-dark); font-weight: 700; }

/* ── Botões ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

/* .btn--yellow: ver seção "Animações de brilho e atenção" */

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* .btn--wpp: ver seção "Animações de brilho e atenção" */

.btn--lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ── Barra superior ── */

.topbar-info {
  background: linear-gradient(90deg, #040d2c 0%, #0a1f7a 50%, #040d2c 100%);
  color: rgba(255,255,255,.82);
  font-size: 0.82rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid rgba(80,140,255,.18);
}

.topbar-info__inner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.topbar-info .icon {
  width: 13px; height: 13px;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.topbar-dot { opacity: .4; }

.topbar-info strong { color: #fff; }

.topbar-wpp {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: #25d366;
  border-radius: 999px;
  padding: 0.22rem 0.8rem;
  font-size: 0.78rem;
  transition: filter .2s;
}
.topbar-wpp:hover { filter: brightness(1.1); }

/* ── Header ── */

.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 16px rgba(10,45,180,.07);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.logo__mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3570ff 0%, #0c28a0 100%);
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(53,112,255,.4);
}

.logo__mark--sm { width: 36px; height: 36px; font-size: 0.82rem; border-radius: 10px; }

.logo__text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.logo__text small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color .18s;
}

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

.header__agv {
  background: linear-gradient(135deg, #1a55f5 0%, #0c28a0 100%);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  box-shadow: 0 3px 14px rgba(18,70,232,.3);
}

.header__agv img { width: 100px; height: auto; filter: brightness(0) invert(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ── Hero ── */

.hero {
  background:
    radial-gradient(ellipse 80% 55% at 10% -5%,  rgba(100,170,255,.28) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 95% 110%, rgba(50,100,255,.22)  0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 55%  40%, rgba(160,210,255,.10) 0%, transparent 60%),
    linear-gradient(145deg, #040d2c 0%, #0c2a9e 38%, #1246e8 68%, #1a55f5 100%);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}

/* grade sutil de pontos */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

/* orb de brilho superior esquerdo */
.hero__bg-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-shape::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,150,255,.26) 0%, transparent 65%);
  filter: blur(2px);
}

.hero__bg-shape::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,80,255,.18) 0%, transparent 65%);
  filter: blur(2px);
}

/* linha de luz horizontal (flare) */
.hero__inner::before {
  content: '';
  position: absolute;
  top: 28%;
  left: -5%;
  right: -5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.12) 25%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.12) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__copy { color: var(--white); }

.hero__copy .label {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.hero__copy h1 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
}

.hero__copy h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero__sub {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.hero__pills span {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 0.38rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

/* Perfil no hero */

.hero__profile { position: relative; }

.hero__profile-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12),
    0 24px 64px rgba(4,13,44,.55),
    0 0 80px rgba(80,140,255,.25);
}

.hero__profile-img-wrap { position: relative; overflow: hidden; }

.hero__profile-img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero__profile-info {
  padding: 1rem 1.2rem 0.6rem;
  border-bottom: 1px solid var(--border);
}

.hero__profile-info strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.hero__profile-info span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.hero__profile-stats {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  gap: 1rem;
}

.hero__profile-stats div {
  flex: 1;
  text-align: center;
}

.hero__profile-stats strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blue);
}

.hero__profile-stats span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.stat-divider {
  flex: none !important;
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero__profile-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.38rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 16px rgba(245,169,0,.4);
}

/* ── Sobre ── */

.sobre { background: var(--off-white); }

.sobre__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.8rem;
  align-items: start;
}

.sobre__bio {
  display: grid;
  gap: 1rem;
}

.sobre__bio p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.sobre__bio strong { color: var(--text); }

.sobre__quote {
  margin: 0.5rem 0;
  padding: 1.1rem 1.2rem 1.1rem 1.5rem;
  border-left: 4px solid var(--yellow);
  background: var(--yellow-light);
  border-radius: 0 12px 12px 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  font-style: italic;
}

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

.sobre__stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}

.sobre__stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sobre__stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.sobre__stat-icon.blue { background: var(--blue-pale); color: var(--blue); }
.sobre__stat-icon.yellow { background: var(--yellow-light); color: var(--yellow-dark); }

.sobre__stat-card strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.sobre__stat-card p {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Coberturas ── */

.coberturas { background: var(--white); }

.coberturas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.cobertura-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cobertura-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.cobertura-card--featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.cobertura-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
}

.cobertura-card__img { position: relative; }

.cobertura-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cobertura-card__tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(6,29,122,.8);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
}

.cobertura-card__body {
  padding: 1.2rem 1.2rem 1.4rem;
}

.cobertura-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.cobertura-card__body p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cobertura-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.cobertura-card__body li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cobertura-card__body li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ── Vantagens ── */

.vantagens {
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(60,120,255,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 100% 20%, rgba(30,80,200,.14) 0%, transparent 55%),
    linear-gradient(140deg, #040d2c 0%, #091e72 45%, #0c28a0 100%);
  position: relative;
  overflow: hidden;
}

.vantagens::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.vantagens__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vantagens__img {
  margin: 0;
}

.vantagens__img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.vantagens__copy .label {
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
}

.vantagens__copy h2 {
  margin: 0.5rem 0 0.8rem;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.vantagens__copy > p {
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0 0 1.6rem;
}

.vantagens__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.vantagens__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.v-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.vantagens__list li strong {
  display: block;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 700;
}

.vantagens__list li p {
  margin: 0.2rem 0 0;
  color: rgba(255,255,255,.6);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* ── Formulário ── */

.simulacao { background: var(--off-white); }

.simulacao__inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 3rem;
  align-items: start;
}

.simulacao__copy .label { margin-bottom: 0.5rem; }

.simulacao__copy h2 {
  margin: 0.3rem 0 0.8rem;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
}

.simulacao__copy > p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
  margin: 0 0 2rem;
}

.simulacao__contact {
  display: grid;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
}

.contact-item__icon {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); }
.contact-item a, .contact-item span { font-size: 0.9rem; color: var(--muted); text-decoration: none; }
.contact-item a:hover { color: var(--blue); text-decoration: underline; }

/* Formulário */

.lead-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.lead-form__header {
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.lead-form__header h3 {
  margin: 0 0 0.2rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}

.lead-form__header p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: end;
  margin-bottom: 0.9rem;
}

.field--grow { min-width: 0; }
.field--uf { width: 86px; }

.field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
}

.field input,
.field select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5a7a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10,45,180,.12);
  background: #fff;
}

.field input::placeholder { color: #b0bcd4; }

.form-note {
  margin: 0.8rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

.form-feedback {
  margin: 0.5rem 0 0;
  min-height: 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  padding: 0.5rem;
}

.form-feedback.success {
  background: #d1fae5;
  color: #065f46;
}

.form-feedback.error {
  background: #fee2e2;
  color: #991b1b;
}

/* ── CTA WhatsApp ── */

.wpp-cta {
  background: linear-gradient(135deg, #1a5c3a 0%, #25a05a 100%);
  padding: 3.5rem 0;
}

.wpp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.wpp-cta h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
}

.wpp-cta p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
}

/* ── Footer ── */

.footer {
  background: linear-gradient(160deg, #040d2c 0%, #071560 60%, #040d2c 100%);
  border-top: 1px solid rgba(80,140,255,.15);
  color: rgba(255,255,255,.72);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer__brand strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
}

.footer__brand small {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}

.footer__links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color .15s;
}

.footer__links a:hover { color: #fff; }

.footer__agv {
  text-align: right;
}

.footer__agv img {
  width: 90px;
  filter: brightness(0) invert(1) opacity(.7);
  margin-left: auto;
  margin-bottom: 0.4rem;
}

.footer__agv p {
  font-size: 0.8rem;
  margin: 0;
  color: rgba(255,255,255,.5);
}

.footer__agv a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer__agv a:hover { color: #fff; text-decoration: underline; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.38);
}

.footer__bottom p { margin: 0; }

/* ── Float WhatsApp: ver seção "Animações de brilho e atenção" ── */

/* ── Animações de brilho e atenção ── */

/* orbs do hero */
@keyframes orb-pulse {
  0%, 100% { opacity: .9; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.08); }
}

@keyframes flare-drift {
  0%, 100% { opacity: .18; transform: translateX(0); }
  50%       { opacity: .28; transform: translateX(20px); }
}

.hero__bg-shape::before { animation: orb-pulse 7s ease-in-out infinite; }
.hero__bg-shape::after  { animation: orb-pulse 9s ease-in-out infinite 1.5s; }
.hero__inner::before    { animation: flare-drift 10s ease-in-out infinite; }

/* ── 1. Botão flutuante WhatsApp: ondas de sonar ── */

@keyframes wpp-ring {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(2.2); opacity: 0; }
}

.wpp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.wpp-float::before,
.wpp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.45);
  animation: wpp-ring 2.4s ease-out infinite;
  pointer-events: none;
}

.wpp-float::after {
  animation-delay: 1.2s;
}

.wpp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,.65);
}

/* ── 2. Botões WhatsApp (inline): shimmer sweep + ícone balança ── */

@keyframes btn-shine {
  0%   { left: -120%; }
  55%  { left:  130%; }
  100% { left:  130%; }
}

@keyframes wpp-icon-wiggle {
  0%, 85%, 100% { transform: rotate(0deg) scale(1); }
  88%           { transform: rotate(-14deg) scale(1.15); }
  92%           { transform: rotate(12deg)  scale(1.12); }
  96%           { transform: rotate(-7deg)  scale(1.06); }
}

.btn--wpp {
  position: relative;
  overflow: hidden;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,.32);
}

.btn--wpp::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -120%;
  width: 55%;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,.38) 50%,
    transparent 80%
  );
  transform: skewX(-18deg);
  animation: btn-shine 3.5s ease-in-out infinite 1s;
  pointer-events: none;
}

.btn--wpp svg {
  animation: wpp-icon-wiggle 3.5s ease-in-out infinite 0.5s;
  transform-origin: center bottom;
}

.btn--wpp:hover {
  box-shadow: 0 8px 28px rgba(37,211,102,.52);
  transform: translateY(-3px);
}

/* ── 3. Botões amarelos (CTA principal): shimmer + pulso de sombra ── */

@keyframes yellow-shine {
  0%   { left: -120%; }
  50%  { left:  130%; }
  100% { left:  130%; }
}

@keyframes yellow-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(245,169,0,.32); }
  50%       { box-shadow: 0 6px 30px rgba(245,169,0,.6), 0 0 0 5px rgba(245,169,0,.12); }
}

.btn--yellow {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: var(--blue-dark);
  animation: yellow-pulse 2.8s ease-in-out infinite;
}

.btn--yellow::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -120%;
  width: 50%;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,.5) 50%,
    transparent 80%
  );
  transform: skewX(-18deg);
  animation: yellow-shine 4s ease-in-out infinite 2s;
  pointer-events: none;
}

.btn--yellow:hover {
  animation: none;
  box-shadow: 0 8px 26px rgba(245,169,0,.55);
  transform: translateY(-2px);
}

/* ── 4. Número de telefone na barra superior: glow piscante ── */

@keyframes phone-glow {
  0%, 100% { text-shadow: 0 0 0px rgba(245,169,0,0); color: #fff; }
  50%       { text-shadow: 0 0 10px rgba(245,169,0,.7), 0 0 20px rgba(245,169,0,.3); color: var(--yellow); }
}

.topbar-info strong {
  color: #fff;
  animation: phone-glow 3s ease-in-out infinite;
  cursor: default;
}

/* ── 5. Botão WhatsApp da topbar: badge pulsante ── */

@keyframes topbar-wpp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  60%       { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}

.topbar-wpp {
  animation: topbar-wpp-pulse 2.2s ease-out infinite;
}

/* ── 6. CTA "Chamar no WhatsApp" na seção de simulação: badge de notificação ── */

.contact-item__icon {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}

.contact-item:first-child .contact-item__icon {
  background: rgba(37,211,102,.12);
  color: #1a9950;
}

.contact-item:first-child .contact-item__icon::after {
  content: '';
  position: absolute;
  top: -3px; right: -3px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid #fff;
  animation: badge-blink 1.8s ease-in-out infinite;
}

@keyframes badge-blink {
  0%, 100% { opacity: 1;  transform: scale(1); }
  50%       { opacity: .5; transform: scale(.85); }
}

/* ── Reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────
   Responsivo
──────────────────────────────── */

@media (max-width: 1060px) {
  .hero__inner { grid-template-columns: 1fr 360px; }
  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__cards { grid-template-columns: repeat(2, 1fr); }
  .simulacao__inner { grid-template-columns: 1fr; }
  .vantagens__inner { grid-template-columns: 1fr; }
  .vantagens__img { max-width: 540px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__agv { grid-column: 1 / -1; text-align: left; }
  .footer__agv img { margin-left: 0; }
}

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__profile { max-width: 380px; margin: 0 auto; }
  .coberturas__grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(6,29,122,.97);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 50;
  }
  .nav.open a { color: #fff; font-size: 1.3rem; }
  .nav-toggle { display: flex; }
  .header__agv { display: none; }
}

@media (max-width: 600px) {
  .coberturas__grid { grid-template-columns: 1fr; }
  .sobre__cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer__agv { grid-column: unset; }
  .wpp-cta__inner { flex-direction: column; text-align: center; }
  .wpp-cta__inner .btn { width: 100%; justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
  .field--uf { width: 100%; }
  .topbar-info__inner { justify-content: center; }
  .topbar-dot { display: none; }
  .topbar-wpp { margin-left: 0; }
  .hero__ctas .btn { width: 100%; }
  .hero__ctas { width: 100%; }
}
