:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --text: #0c1d3d;
  --muted: #4e628a;
  --primary: #0f63ff;
  --primary-dark: #0b46a9;
  --accent: #00b894;
  --line: #d9e5fb;
  --line-strong: #bed0f5;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 14px 36px rgba(10, 35, 90, 0.08);
  --shadow-strong: 0 26px 56px rgba(11, 36, 88, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.01em;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 254, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181, 203, 241, 0.58);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(140deg, #f7fbff, #eaf3ff);
}

.brand-text {
  font-size: 1.04rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.93rem;
}

.main-nav a {
  border-radius: 9px;
  padding: 0.25rem 0.2rem;
}

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

.main-nav .btn-outline {
  background: linear-gradient(140deg, var(--primary), #2381ff);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(15, 99, 255, 0.24);
}

.main-nav .btn-outline:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 99, 255, 0.32);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 9px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2d3f69;
}

.btn {
  border-radius: 11px;
  border: 1px solid transparent;
  padding: 0.64rem 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(140deg, var(--primary), #2381ff);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 99, 255, 0.28);
}

.btn-outline {
  border-color: var(--line);
  background: #fff;
  color: #273960;
}

.btn-outline:hover {
  border-color: var(--line-strong);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: #dbe9ff;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 0% 8%, #dcecff 0%, #eef5ff 42%, #f4f8ff 100%);
  padding: 76px 0 42px;
}

.hero-aura {
  position: absolute;
  inset: -40% auto auto -10%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 184, 148, 0.16), rgba(0, 184, 148, 0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.tag {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f4f86;
  background: #e4eeff;
  border: 1px solid #c7d9ff;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  font-weight: 800;
}

.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(1.96rem, 4.5vw, 3.28rem);
  line-height: 1.09;
}

.hero h1 span {
  color: var(--primary-dark);
}

.hero-text {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 66ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-highlights span {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: #304a7a;
  font-size: 0.8rem;
}

.hero-card {
  background: linear-gradient(156deg, #0d1f45, #16346d 56%, #0b4f87 100%);
  color: #eff5ff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-strong);
}

.hero-card h3 {
  margin-top: 4px;
}

.hero-card ul {
  margin: 12px 0 18px;
  padding-left: 18px;
  color: #d3e1ff;
}

.hero-card li + li {
  margin-top: 8px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 10px;
}

.hero-metrics article {
  border: 1px solid rgba(148, 190, 255, 0.33);
  border-radius: var(--radius-sm);
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-value {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #b6deff;
}

.metric-label {
  margin: 2px 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #dce8ff;
}

.inline-link {
  color: #8fd6ff;
  font-weight: 700;
}

.proof-strip {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.proof-strip p {
  margin: 0;
  color: #2f4b7c;
  font-weight: 700;
  font-size: 0.9rem;
}

.proof-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-strip span {
  font-size: 0.78rem;
  color: #274372;
  background: #f2f7ff;
  border: 1px solid #d9e6fb;
  border-radius: 999px;
  padding: 0.24rem 0.6rem;
}

.kpis {
  padding: 28px 0 8px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.kpi-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.kpi-grid h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.32rem;
}

.kpi-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 62px 0;
}

.section.soft {
  background:
    linear-gradient(180deg, rgba(244, 250, 255, 0.95), rgba(245, 249, 255, 0.95)),
    radial-gradient(circle at 20% 0%, rgba(155, 194, 255, 0.26), rgba(155, 194, 255, 0));
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  margin: 10px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.feature-card p {
  color: var(--muted);
}

.feature-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.feature-card li + li {
  margin-top: 6px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  min-height: 130px;
}

.mini-card h4 {
  margin: 2px 0 7px;
  color: #163463;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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


.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.step-index {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 800;
  color: #0f62f8;
  letter-spacing: 0.06em;
}

.step-card h3 {
  margin: 0 0 8px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.module-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.module-pillar {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.module-pillar h3 {
  margin: 0 0 8px;
  color: #103769;
}

.module-pillar ul {
  margin: 0;
  padding-left: 18px;
}

.module-pillar li {
  color: #36527f;
}

.module-pillar li + li {
  margin-top: 4px;
}

.price-card,
.package-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}

.price-card.featured,
.featured-package {
  border-color: #6ea1ff;
  box-shadow: 0 14px 36px rgba(18, 102, 241, 0.18);
}

.badge {
  position: absolute;
  top: -11px;
  right: 16px;
  background: #0f5be0;
  color: #fff;
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
}

.price {
  color: var(--muted);
  margin-top: -4px;
}

.price-card ul,
.package-card ul {
  margin: 14px 0 18px;
  padding-left: 18px;
}

.price-note {
  margin-top: 8px;
  color: var(--muted);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.block-title {
  margin: 26px 0 12px;
  font-size: 1.28rem;
  color: #173364;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.package-card h4 {
  margin: 0;
  color: #163463;
}

.package-volume {
  margin: 6px 0 10px;
  font-weight: 800;
  color: #0f5be0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #213458;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 120px;
}

.cta {
  background: linear-gradient(134deg, #0b1d40, #123472 52%, #0f5d94);
  color: #ecf4ff;
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.cta-wrap p {
  color: #cfdefd;
  max-width: 68ch;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 260px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.contact-intent-box {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #eef4ff;
  border: 1px solid #d1ddf8;
  color: #213d73;
  font-size: 0.95rem;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #22365f;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd9ef;
  border-radius: 10px;
  padding: 0.68rem 0.75rem;
  font: inherit;
  color: #1d2f56;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #7aa4f5;
  box-shadow: 0 0 0 3px rgba(18, 102, 241, 0.12);
}

.contact-form .field-error {
  border-color: #e11d48 !important;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.14) !important;
}

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

.contact-feedback {
  margin-top: 12px;
  font-size: 0.95rem;
}

.contact-feedback.success {
  color: #0a7c3b;
}

.contact-feedback.error {
  color: #b4232e;
}

.site-footer {
  background: #091328;
  color: #d2dcf1;
  padding-top: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.footer-grid h4,
.footer-grid h5 {
  margin: 0 0 12px;
  color: #fff;
}

.footer-grid p {
  margin: 0;
  color: #b6c6e7;
}

.footer-grid a {
  display: block;
  color: #d2dcf1;
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-base {
  border-top: 1px solid #22375c;
  margin-top: 22px;
  padding: 16px 0 18px;
  font-size: 0.88rem;
  color: #98afd7;
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  background: linear-gradient(130deg, #14336d, #1f4b96);
  color: #fff;
  padding: 50px 0;
}

.legal-header h1 {
  margin: 0;
}

.legal-content {
  margin: -24px auto 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.legal-content h2 {
  margin-top: 22px;
  color: #153469;
}

.legal-content p,
.legal-content li {
  color: #3c4f74;
}

.back-link {
  display: inline-flex;
  margin-top: 18px;
  color: #19418a;
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--primary), #2d78f4);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  z-index: 1200;
  box-shadow: 0 10px 22px rgba(18, 102, 241, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  filter: brightness(1.05);
}

.price-total {
  margin: 4px 0 0;
  color: #1e3f78;
  font-size: 0.95rem;
}

.price-unit {
  margin: 4px 0 0;
  color: #2c4d85;
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
  opacity: 1;
  transform: none;
}
}

@media (max-width: 1180px) {
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .module-grid,
  .flow-grid,
  .flow-grid-3,
  .flow-grid-4,
  .module-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 8px;
    border-radius: 8px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .btn,
  .hero-actions .btn,
  .cta-actions .btn,
  .main-nav .btn {
    width: 100%;
  }

  .route-grid,
  .dual-grid,
  #revendedores .dual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .operations-board {
    padding: 14px;
  }
}

@media (max-width: 680px) {
  .kpi-grid,
  .module-grid,
  .flow-grid,
  .module-pill-grid,
  .route-grid,
  .dual-grid,
  #revendedores .dual-grid,
  .package-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .legal-content {
    padding: 18px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
  }
}

.badge-secondary {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f4f45;
  background: #d8f8ef;
  border: 1px solid #96e6cf;
  vertical-align: middle;
}

.operations-board {
  margin-top: 20px;
  border: 1px solid #cfe0ff;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f6faff);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.operations-head {
  margin-bottom: 14px;
}

.operations-head .block-title {
  margin: 0;
}

.operations-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.op-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.op-card::after {
  content: "";
  position: absolute;
  left: -45%;
  top: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.46), rgba(255,255,255,0));
  transform: skewX(-18deg);
  transition: left 0.45s ease;
  pointer-events: none;
}

.op-card:hover {
  transform: translateY(-4px);
  border-color: #9fc0ff;
  box-shadow: 0 16px 30px rgba(16, 74, 170, 0.16);
}

.op-card:hover::after {
  left: 120%;
}

.compact-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.step-card-compact {
  padding: 14px;
  border-radius: 14px;
  min-height: 148px;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.step-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: #eaf2ff;
  border: 1px solid #cfe0ff;
}

.step-card-compact h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.step-card-compact p {
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .compact-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .compact-steps {
    grid-template-columns: 1fr;
  }
}
.kpi-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kpi-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf2ff;
  border: 1px solid #cfe0ff;
  font-size: 0.95rem;
}

.hero-actions .btn-ghost {
  color: #0f2f66 !important;
  background: #ffffff !important;
  border: 1px solid #7ea8f8 !important;
  box-shadow: 0 8px 18px rgba(15, 99, 255, 0.16);
}

.hero-actions .btn-ghost:hover {
  color: #0b2652 !important;
  background: #f3f8ff !important;
  border-color: #4f88f3 !important;
}

#solucoes .module-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-card {
  min-height: 150px;
  padding: 14px;
}

.solution-card h4 {
  margin: 0;
}

@media (max-width: 1040px) {
  #solucoes .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  #solucoes .module-grid {
    grid-template-columns: 1fr;
  }
}

#planos-revenda .revenda-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  #planos-revenda .revenda-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  #planos-revenda .revenda-grid {
    grid-template-columns: 1fr;
  }
}

.check-list {
  list-style: none;
  margin: 12px 0 14px;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: #26446f;
  font-size: 0.9rem;
}

.check-list li + li {
  margin-top: 6px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  line-height: 1;
  color: #0f8b4c;
  background: #e8f8ef;
  border: 1px solid #b8e9cc;
  font-weight: 800;
}

.price-card .price,
.package-volume {
  text-align: center;
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.nav-hidden {
  display: none !important;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 70px;
  z-index: 1300;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.floating-whatsapp:hover {
  filter: brightness(1.05);
}

@media (max-width: 680px) {
  .floating-whatsapp {
    right: 12px;
    bottom: 64px;
    padding: 0.66rem 0.9rem;
  }
}

.recaptcha-note {
  margin: 8px 0 4px;
  font-size: 0.78rem;
  color: #5f7398;
}
.recaptcha-note a {
  color: #2d5fb8;
  text-decoration: underline;
}

.toast-root {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 3000;
  display: grid;
  gap: 10px;
  max-width: min(92vw, 420px);
}

.toast {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(8, 29, 68, 0.18);
  font-size: 0.92rem;
  line-height: 1.45;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: #eafaf1;
  border-color: #9fe0bc;
  color: #0a6c3a;
}

.toast.error {
  background: #fff1f2;
  border-color: #ffb3bb;
  color: #a50f1f;
}

@media (max-width: 680px) {
  .toast-root {
    left: 12px;
    right: 12px;
    top: 12px;
    max-width: none;
  }
}
