:root {
  --navy: #12404F;
  --navy-deep: #0B2C37;
  --wine: #7A2E35;
  --wine-light: #9C4B4F;
  --cream: #FAF6EE;
  --cream-dark: #F1E9D8;
  --ink: #1C2B2E;
  --ink-soft: #4A5B5E;
  --line: rgba(18, 64, 79, 0.14);
  --line-onnavy: rgba(250, 246, 238, 0.16);
  --gold: #B98F4E;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Reserva o espaço do menu carregado como componente e evita salto visual. */
#navbar-container {
  min-height: 92px;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}

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

.eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
}

.eyebrow.on-navy {
  color: #D8A9AC;
}

.rule-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.rule-eyebrow::before,
.rule-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--wine);
  opacity: 0.5;
}

/* ============ HEADER + HERO BLOCK (navy) ============ */
.top-block {
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.top-block::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 38%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(250, 246, 238, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

/* Evita que padding aumente a largura real dos elementos */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
}
/* ============ NAV DROPDOWN ============ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  margin: 0;
  padding: 8px;
  list-style: none;

  background: var(--navy-deep);
  border: 1px solid var(--line-onnavy);
  border-radius: 12px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(250, 246, 238, 0.88);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu li a:hover {
  background: rgba(250, 246, 238, 0.08);
  color: #fff;
}

/* Compensa a altura da navbar fixa */
.top-block {
  background: linear-gradient(
    150deg,
    var(--navy-deep) 0%,
    var(--navy) 100%
  );
  position: relative;
  overflow: hidden;
  padding-top: 128px;
}

.top-block::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 38%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(250, 246, 238, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

/* Navbar fixa */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 48, 59, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  min-width: 0;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: block;
  width: auto;
  height: 84px;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 246, 238, 0.88);
  transition: color 0.2s ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  background: var(--wine);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: #8f3841;
  transform: translateY(-1px);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  z-index: 10;
  padding: 56px 40px 100px;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  opacity: 0;
  animation: riseIn 0.8s ease forwards 0.1s;
}

.hero h1 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.15;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.25s;
}

.hero h1 .accent {
  display: block;
  color: var(--wine-light);
  font-style: italic;
}

.hero p.lead {
  font-size: 16.5px;
  color: rgba(250, 246, 238, 0.72);
  max-width: 460px;
  margin: 22px 0 32px;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.4s;
}

.hero-features {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.52s;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-onnavy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--wine-light);
}

.hero-feature-text {
  font-size: 12.5px;
  color: rgba(250, 246, 238, 0.82);
  line-height: 1.32;
  max-width: 96px;
}

.hero-actions {
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.65s;
}

.btn-primary {
  background: var(--wine);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-block;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
  background: #8f3841;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Hero visual ---- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: riseIn 1s ease forwards 0.35s;
}

.hero-visual-shape {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1/1;
}

.hero-visual-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============ SOBRE ============ */
.sobre {
  padding: 96px 40px 100px;
  text-align: center;
  background: var(--cream);
}

.sobre h2 {
  font-size: clamp(27px, 3.2vw, 36px);
  max-width: 620px;
  margin: 0 auto 18px;
  line-height: 1.28;
}

.sobre h2 .accent {
  color: var(--wine);
}

.sobre p.sub {
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.7;
}

.feature-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(18, 64, 79, 0.08);
}

.feature-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(122, 46, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--wine);
}

.feature-card h3 {
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 13.8px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ OPERADORAS ============ */
.operadoras {
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 80px 40px;
  text-align: center;
}

.operadoras .eyebrow.on-navy {
  display: block;
  margin-bottom: 14px;
}

.operadoras h2 {
  color: #fff;
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 36px;
}

/* PRINCIPAIS */
.op-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}

.op-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  transition: .3s;
}

.op-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}

.op-card img {
  max-width: 90%;
  max-height: 60px;
  object-fit: contain;
}

.op-note {
  margin: 36px 0;
  font-size: 14px;
  color: rgba(250, 246, 238, .7);
}

/* OUTRAS OPERADORAS */
.op-secondary {
  margin-top: 30px;
}

.op-grid-secondary {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.op-card-sm {
  background: var(--cream);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: .3s;
}

.op-card-sm:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
}

.op-card-sm img {
  max-width: 90%;
  max-height: 40px;
  object-fit: contain;
}

/* ============ FORM ============ */
.form-section {
  background: var(--cream-dark);
  padding: 64px 40px;
  scroll-margin-top: 12px;
}

.form-wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.form-copy .eyebrow {
  margin-bottom: 12px;
  display: inline-block;
}

.form-copy h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.22;
  margin-bottom: 20px;
}

.form-copy h2 .accent {
  color: var(--wine);
}

.form-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
}

.form-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
}

.form-list li svg {
  width: 19px;
  height: 19px;
  stroke: var(--wine);
  flex-shrink: 0;
}

.form-callout {
  background: var(--navy-deep);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-callout-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-callout-icon svg {
  width: 19px;
  height: 19px;
  stroke: #fff;
}

.form-callout-title {
  font-size: 12.5px;
  color: rgba(250, 246, 238, 0.75);
  margin-bottom: 2px;
}

.form-callout-value {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.form-callout a {
  transition: opacity 0.2s ease;
}

.form-callout a:hover {
  opacity: 0.85;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 30px 70px rgba(11, 44, 55, 0.12);
}

.form-card>.rule-eyebrow {
  margin-bottom: 4px;
}

.form-card>.eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 8px;
}

.form-card>h3 {
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 22px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 8px;
  white-space: nowrap;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(122, 46, 53, 0.12);
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  background: var(--wine);
  color: #fff;
  border: none;
  padding: 17px;
  border-radius: 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.25s ease, transform 0.15s ease;
}

.form-submit:hover {
  background: #6a262c;
  transform: translateY(-1px);
}

.form-fineprint {
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-fineprint svg {
  width: 13px;
  height: 13px;
  stroke: var(--ink-soft);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  padding: 48px 40px 32px;
}

.footer-top {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-onnavy);
}

.footer-logo {
  height: 56px;
}

.footer-contacts {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(122, 46, 53, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--wine-light);
}

.footer-contact-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.footer-contact-sub {
  font-size: 12px;
  color: rgba(250, 246, 238, 0.55);
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(250, 246, 238, 0.5);
}

.footer-legal {
  margin-top: 8px;
}

.footer-legal a {
  color: rgba(250, 246, 238, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}


  /* ============ CHAT WIDGET ============ */
  .chat-widget {
  position: fixed;
  right: 26px;
  bottom: 100px;
  z-index: 201;

  width: 340px;
  max-width: calc(100vw - 32px);

  background: #ffffff;
  border: 1px solid rgba(18, 140, 126, 0.14);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(7, 94, 84, 0.24);

  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.chat-widget.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-widget-header {
  position: relative;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 44px 16px 16px;

  background: linear-gradient(
    135deg,
    #075e54 0%,
    #128c7e 55%,
    #25d366 140%
  );
}

.chat-widget-avatar {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  flex-shrink: 0;

  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;

  overflow: hidden;
}

.chat-widget-avatar svg {
  width: 24px;
  height: 24px;
  stroke: #128c7e;
}

.chat-widget-name {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
}

.chat-widget-status {
  display: flex;
  align-items: center;
  gap: 5px;

  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}

.chat-widget-status::before {
  content: "";

  display: inline-block;

  width: 7px;
  height: 7px;

  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.16);
}

.chat-widget-close {
  position: absolute;
  top: 14px;
  right: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;

  color: #ffffff;
  font-size: 14px;
  line-height: 1;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.chat-widget-close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
  transform: rotate(4deg);
}

.chat-widget-body {
  padding: 18px 16px 16px;

  background:
    linear-gradient(
      rgba(239, 252, 247, 0.92),
      rgba(239, 252, 247, 0.92)
    ),
    #efeae2;
}

.chat-bubble-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;

  margin-bottom: 12px;

  opacity: 0;
  transform: translateY(8px);

  animation: bubbleIn 0.4s ease forwards;
}

.chat-bubble-row.delay1 {
  animation-delay: 0.4s;
}

.chat-bubble-row.delay2 {
  animation-delay: 1.1s;
}

@keyframes bubbleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-bubble-avatar {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;
  flex-shrink: 0;

  background: #128c7e;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(18, 140, 126, 0.22);
}

.chat-bubble-avatar svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
}

.chat-bubble {
  position: relative;

  padding: 11px 14px;

  background: #ffffff;
  border: 1px solid rgba(18, 140, 126, 0.08);
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 2px 8px rgba(7, 94, 84, 0.08);

  color: #213b36;
  font-size: 13.5px;
  line-height: 1.5;
}

.chat-cta-wrap {
  margin-left: 34px;

  opacity: 0;
  transform: translateY(8px);

  animation: bubbleIn 0.4s ease forwards;
  animation-delay: 1.1s;
}

.chat-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  margin-top: 4px;
  padding: 13px;

  background: #25d366;
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.24);

  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.chat-cta-btn:hover {
  background: #1ebe5d;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.32);
  transform: translateY(-1px);
}

.chat-cta-btn:active {
  transform: translateY(0);
}

.chat-cta-btn:focus-visible,
.chat-widget-close:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.34);
  outline-offset: 3px;
}

.chat-cta-btn svg {
  width: 16px;
  height: 16px;
}

.chat-fineprint {
  margin-top: 10px;

  color: #667a75;
  font-size: 11px;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 560px) {

  #navbar-container {
    min-height: 76px;
  }
  .chat-widget {
    right: 16px;
    bottom: 88px;

    width: calc(100vw - 32px);
    max-width: 340px;

    border-radius: 16px;
  }

  .chat-widget-header {
    padding: 14px 42px 14px 14px;
  }

  .chat-widget-avatar {
    width: 38px;
    height: 38px;
  }

  .chat-widget-avatar svg {
    width: 22px;
    height: 22px;
  }

  .chat-widget-body {
    padding: 16px 14px 14px;
  }

  .chat-bubble {
    padding: 10px 12px;
    font-size: 13px;
  }

  .chat-cta-wrap {
    margin-left: 32px;
  }

  .chat-cta-btn {
    padding: 12px;
    font-size: 13.5px;
  }
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.6s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    text-align: center;
  }

  .hero-grid > *,
  .form-wrap > *,
  .feature-grid > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual-shape {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .form-card {
    width: 100%;
    max-width: 100%;
    padding: 32px;
  }

  .op-grid,
  .op-grid-secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .footer-contacts {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {

  html,
  body {
    overflow-x: hidden;
  }

  .nav-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 12px 16px;
    gap: 10px;
  }

  .nav-logo {
    width: clamp(120px, 40vw, 155px);
    height: auto;
    flex-shrink: 1;
  }

  .nav-cta {
    max-width: 45vw;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    flex-shrink: 0;
  }

  .hero {
    width: 100%;
    padding: 40px 20px 70px;
    overflow: hidden;
  }

  .sobre,
  .operadoras,
  .form-section {
    width: 100%;
    padding: 70px 20px;
    overflow: hidden;
  }

  .footer {
    width: 100%;
    padding: 40px 20px 24px;
    overflow: hidden;
  }

  .hero-grid,
  .form-wrap,
  .form-two,
  .feature-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .form-card {
    width: 100%;
    padding: 26px 20px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .op-grid,
  .op-grid-secondary {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  input,
  select,
  textarea,
  button {
    max-width: 100%;
  }
}

@media (max-width: 380px) {

  .nav-inner {
    padding: 10px 12px;
    gap: 8px;
  }

  .nav-logo {
    width: 110px;
  }

  .nav-cta {
    max-width: 48vw;
    padding: 9px 10px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
