:root {
  --blue: #003B82;
  --blue-dark: #002B5C;
  --blue-soft: #1F5FAF;
  --green: #4CC32A;
  --green-dark: #2F8F1F;
  --green-soft: #72D84E;
  --bg: #FAFAF8;
  --bg-alt: #F2F5F7;
  --text: #2D3436;
  --muted: #5F6B72;
  --line: rgba(0, 59, 130, 0.15);
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 50, 65, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue-dark);
  font-weight: 800;
}
.brand-logo {
  display: block;
  width: 178px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.glossario-hero {
  background: linear-gradient(180deg, var(--bg), var(--bg-alt));
}
.glossario-hero .section-head {
  margin-bottom: 24px;
}
.glossario-intro {
  max-width: 900px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}
.breadcrumb a {
  color: var(--blue-soft);
}
.breadcrumb span::before {
  content: ">";
  margin-right: 8px;
  color: var(--muted);
}
.glossario-tools {
  padding-top: 36px;
  padding-bottom: 36px;
}
.glossario-search-card {
  max-width: 820px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 18px 45px rgba(18, 50, 65, 0.08);
}
.glossario-search-card label {
  display: block;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.glossario-search-card input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}
.glossario-search-card input:focus {
  outline: 3px solid rgba(76, 195, 42, 0.18);
  border-color: var(--green);
}
.glossario-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.glossario-index-link {
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}
.glossario-index-link:hover {
  border-color: var(--green);
  color: var(--green-dark);
}
.glossario-content {
  padding-top: 44px;
}
.glossario-letter {
  scroll-margin-top: 96px;
  margin-bottom: 42px;
}
.glossario-letter[hidden],
.glossario-term[hidden] {
  display: none !important;
}
.glossario-letter-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.glossario-letter-head h2 {
  margin: 0;
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}
.glossario-letter-head a {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--blue-soft);
}
.glossario-note {
  color: var(--muted);
  max-width: 850px;
  margin: 0 0 18px;
}
.glossario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.glossario-term {
  scroll-margin-top: 110px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0, 59, 130, 0.06);
}
.glossario-term h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 1.05rem;
  line-height: 1.25;
}
.glossario-term p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}
.glossario-empty {
  padding: 18px;
  border: 1px solid rgba(76, 195, 42, 0.35);
  background: rgba(76, 195, 42, 0.08);
  border-radius: var(--radius);
  color: var(--blue-dark);
  font-weight: 800;
  text-align: center;
}
.menu { display: flex; gap: 18px; align-items: center; font-size: 0.88rem; font-weight: 700; color: var(--blue-dark); }
.menu a, .menu-link { padding: 28px 0 24px; border-bottom: 3px solid transparent; }
.menu a.active, .menu a:hover, .menu-item.active > .menu-link, .menu-link:hover { color: var(--blue-soft); border-bottom-color: var(--green); }
.menu-item { position: relative; }
.menu-link {
  appearance: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  min-width: 250px;
  display: none;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.submenu a {
  display: block;
  padding: 10px 12px;
  border-bottom: 0;
  border-radius: 6px;
}
.submenu a:hover, .submenu a.active { background: var(--bg-alt); color: var(--blue); }
.has-submenu:hover .submenu, .has-submenu.open .submenu { display: block; }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--white); padding: 9px 11px; border-radius: var(--radius); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--green-dark);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(76, 195, 42, .22); }
.btn-primary { background: var(--green); color: var(--blue-dark); border-color: var(--green); }
.btn-secondary { background: transparent; color: var(--blue); border-color: rgba(0, 59, 130, .35); }
.btn-gold { background: var(--green); color: var(--blue-dark); border-color: var(--green); }
.whatsapp { background: var(--green); color: var(--blue-dark); border-color: var(--green); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(31,95,175,.1), transparent 36%),
    linear-gradient(90deg, var(--bg) 0%, rgba(250,250,248,.94) 42%, rgba(250,250,248,.28) 72%);
}
.hero .container {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: 44px;
  padding: 54px 0;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1, .page-title {
  margin: 0 0 22px;
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: 0;
}
.hero h1 span, .section-title span { color: var(--blue-soft); }
.hero p { margin: 0 0 28px; font-size: 1.18rem; color: #33474f; max-width: 560px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-media {
  min-height: 490px;
  align-self: stretch;
  border-radius: 0 0 0 70px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 80px 0 90px var(--bg);
  pointer-events: none;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 30px;
  max-width: 820px;
}
.trust-item { background: rgba(255,255,255,.74); padding: 14px 16px; font-weight: 800; color: var(--blue-dark); }
.trust-item small { display: block; color: var(--muted); font-weight: 600; }

.section { padding: 86px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.section-title {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.authority-section { padding-top: 42px; }
.authority-panel {
  display: grid;
  grid-template-columns: .95fr 1.25fr;
  gap: 36px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  box-shadow: 0 14px 35px rgba(18, 50, 65, .06);
}
.authority-panel p {
  color: var(--muted);
  margin: 0;
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.authority-grid div {
  background: var(--white);
  padding: 18px;
}
.authority-grid strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.15rem;
  line-height: 1.15;
  margin-bottom: 6px;
}
.authority-grid span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}
.human-note {
  margin: 20px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--green);
  background: rgba(76,195,42,.10);
  color: var(--blue-dark);
  font-weight: 700;
}
.routine-section,
.family-section,
.planning-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(76,195,42,.10), transparent 26%),
    var(--bg);
}
.routine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 430px;
  margin-left: auto;
}
.routine-grid div {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: .92rem;
  box-shadow: 0 8px 20px rgba(18,50,65,.045);
}
.planning-card {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-soft));
  color: white;
  box-shadow: var(--shadow);
}
.planning-card .section-title,
.planning-card p {
  color: inherit;
}
.planning-card p {
  color: rgba(255,255,255,.84);
}
.planning-grid .card {
  background: rgba(255,255,255,.82);
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.card {
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(18, 50, 65, .05);
}
.card h3 { margin: 8px 0 7px; color: var(--blue-dark); font-size: 1.12rem; line-height: 1.25; }
.card p { margin: 0 0 14px; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.radar-hero .section-head,
.radar-article-hero .radar-article-container {
  text-align: center;
}
.radar-featured-post {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 45px rgba(18, 50, 65, 0.08);
}
.radar-featured-post h2,
.radar-article-hero h1 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  line-height: 1.12;
}
.radar-featured-post h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.radar-featured-post p {
  color: var(--muted);
}
.radar-image-placeholder {
  min-height: 260px;
  border: 1px solid rgba(0, 59, 130, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 59, 130, .08), rgba(76, 195, 42, .12)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.38) 0 10px, rgba(255,255,255,.14) 10px 20px);
}
.radar-image,
.radar-card-image {
  display: block;
  width: 100%;
  border: 1px solid rgba(0, 59, 130, .16);
  border-radius: var(--radius);
  object-fit: cover;
}
.radar-featured-post .radar-image {
  aspect-ratio: 16 / 9;
  min-height: 260px;
}
.radar-card-image {
  aspect-ratio: 16 / 9;
  min-height: 150px;
  margin: -4px -4px 16px;
}
.radar-meta {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}
.radar-card {
  min-height: 100%;
}
.radar-category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.radar-category-tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.68);
  color: var(--blue-dark);
  font-weight: 800;
  cursor: default;
}
.radar-article-container {
  max-width: 860px;
}
.radar-article-hero h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
}
.radar-lead {
  margin: 0 auto 16px;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}
.radar-article-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  margin-top: 28px;
  min-height: 340px;
  object-fit: cover;
}
.radar-article-body {
  font-size: 1.04rem;
}
.radar-article-body h2 {
  margin: 34px 0 12px;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}
.radar-article-body p {
  margin: 0 0 16px;
}
.radar-risk-box,
.radar-action-box,
.radar-conversation-box,
.radar-editorial-note {
  margin: 32px 0;
  padding: 24px;
  border-radius: var(--radius);
}
.radar-risk-box {
  border: 1px solid rgba(0, 59, 130, .22);
  background: rgba(0, 59, 130, .06);
}
.radar-action-box {
  border: 1px solid rgba(76, 195, 42, .32);
  background: rgba(76, 195, 42, .08);
}
.radar-conversation-box {
  border: 1px solid var(--line);
  background: var(--bg-alt);
}
.radar-source-list {
  padding-left: 20px;
}
.radar-source-list li {
  margin-bottom: 12px;
}
.radar-source-list a {
  color: var(--blue-soft);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.radar-editorial-note {
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .95rem;
  background: rgba(255,255,255,.72);
}
.radar-related {
  margin-top: 46px;
}
.home-radar-section {
  padding: 46px 0 52px;
}
.home-radar-section .section-head {
  margin-bottom: 18px;
}
.home-radar-section .section-title {
  margin-bottom: 8px;
}
.home-radar-section .section-head p {
  font-size: 1rem;
}
.home-radar-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
}
.home-radar-viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(18, 50, 65, 0.08);
}
.home-radar-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}
.home-radar-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .85fr);
  background: rgba(255,255,255,.92);
}
.home-radar-image-link {
  min-height: 286px;
  background: var(--bg-alt);
}
.home-radar-image {
  width: 100%;
  height: 100%;
  min-height: 286px;
  max-height: 340px;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}
.home-radar-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 22px 24px;
  border-left: 1px solid var(--line);
}
.home-radar-label {
  margin: 0 0 10px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(76, 195, 42, .32);
  border-radius: 999px;
  background: rgba(76, 195, 42, .10);
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 800;
}
.home-radar-content h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.16;
}
.home-radar-content p {
  max-width: 520px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.radar-carousel-nav {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 50, 65, .08);
}
.radar-carousel-nav:hover,
.radar-carousel-nav:focus-visible {
  border-color: var(--green);
  outline: 3px solid rgba(76, 195, 42, .18);
}
.radar-carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.radar-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid var(--blue-soft);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.radar-carousel-dot.active {
  background: var(--green);
  border-color: var(--green-dark);
}
.home-radar-all {
  text-align: center;
  margin: 16px 0 0;
}
.benefit-card {
  padding: 20px 18px;
  min-height: auto;
}
.benefit-card h3 { margin-top: 0; }
.benefit-card p { margin-bottom: 0; }
.icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(76, 195, 42, .36);
  border-radius: 50%;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .95rem;
  background: rgba(76, 195, 42, .11);
}
.media-card { padding: 0; overflow: hidden; }
.media-card img { width: 100%; height: 188px; object-fit: cover; }
.media-card .card-body { padding: 20px; }

.logo-rail {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  align-items: center;
}
.logo-pill {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 900;
  text-align: center;
  padding: 10px;
}
.operator-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  align-items: stretch;
}
.operator-logo {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(18, 50, 65, .05);
}
.operator-logo img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}
.form-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  margin: 0 0 18px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.form-logo img {
  max-width: 190px;
  max-height: 46px;
  object-fit: contain;
}
.porto-proof {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  align-items: center;
}
.porto-proof .operator-logo {
  min-height: 120px;
}
.porto-proof .operator-logo img {
  max-height: 72px;
}
.date-logo {
  width: min(260px, 100%);
  margin-bottom: 18px;
}
.date-certa {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 16%, rgba(76,195,42,.26), transparent 28%),
    linear-gradient(135deg, rgba(0,47,102,.98), rgba(31,95,175,.96));
  color: white;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}
.date-certa:before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}
.date-certa h2,
.date-certa h3,
.date-certa p {
  color: inherit;
}
.date-certa .section-title span {
  color: var(--green-soft);
}
.date-certa-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.date-certa-copy p {
  color: rgba(255,255,255,.84);
  font-size: 1.05rem;
}
.date-certa-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.date-card {
  position: relative;
  min-height: 198px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 18px 38px rgba(0,0,0,.16);
}
.date-card:before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 18px;
  background:
    linear-gradient(var(--green),var(--green)) 12px 12px/30px 5px no-repeat,
    linear-gradient(var(--green),var(--green)) 12px 25px/30px 5px no-repeat,
    linear-gradient(var(--green),var(--green)) 12px 38px/22px 5px no-repeat,
    rgba(255,255,255,.95);
}
.date-number {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.3rem;
  line-height: 1;
  color: white;
}
.date-card h3 {
  color: white;
  margin-top: 4px;
}
.date-card small {
  color: rgba(255,255,255,.74);
  font-weight: 700;
}
.date-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 3px solid var(--green);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
}
.consorcio-illustration {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 22%, rgba(76,195,42,.2), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(242,245,247,.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.consorcio-illustration:before {
  content: "";
  position: absolute;
  left: 54px;
  bottom: 54px;
  width: 150px;
  height: 88px;
  border-radius: 10px 10px 4px 4px;
  background:
    linear-gradient(135deg, transparent 0 44%, var(--blue) 45% 54%, transparent 55%) 18px 18px/74px 38px no-repeat,
    linear-gradient(var(--green-dark), var(--green-dark)) 0 58px/150px 18px no-repeat,
    rgba(76,195,42,.12);
  border: 2px solid rgba(76,195,42,.36);
}
.consorcio-illustration:after {
  content: "";
  position: absolute;
  right: 54px;
  top: 58px;
  width: 172px;
  height: 132px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 49%, var(--green) 50% 55%, transparent 56%) 0 0/172px 78px no-repeat,
    linear-gradient(var(--blue-dark), var(--blue-dark)) 52px 72px/68px 60px no-repeat,
    rgba(0,59,130,.1);
  border: 2px solid rgba(0,59,130,.28);
}
.illus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64%;
  height: 64%;
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(76,195,42,.36);
  border-radius: 50%;
}
.illus-line:before,
.illus-line:after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(18,50,65,.16);
}
.illus-line:before { left: 12%; top: 14%; }
.illus-line:after { right: 12%; bottom: 14%; background: var(--green-dark); }
.google-reviews-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(242, 245, 247, .82) 100%);
}
.google-reviews-carousel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}
.google-reviews-viewport {
  overflow: hidden;
  padding: 4px;
}
.google-reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  transition: transform .42s ease;
  will-change: transform;
}
.google-review-card {
  min-height: 234px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 34px rgba(0, 43, 92, .07);
}
.review-stars {
  margin-bottom: 14px;
  color: #d8a127;
  font-size: 1.08rem;
  letter-spacing: 2px;
  line-height: 1;
}
.google-review-card h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 1.05rem;
}
.google-review-card p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.62;
}
.google-review-card small {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}
.review-nav {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 43, 92, .08);
}
.review-nav:hover,
.review-nav:focus-visible {
  border-color: rgba(76, 195, 42, .55);
  color: var(--green-dark);
  outline: none;
}
.review-nav:disabled {
  cursor: default;
  opacity: .45;
  box-shadow: none;
}
.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
}
.review-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 59, 130, .22);
  cursor: pointer;
}
.review-dot.active {
  width: 24px;
  background: var(--green);
}
.review-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 28px;
  text-align: center;
}
.review-actions p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}
.partner-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  padding: 18px 0;
  box-shadow: 0 12px 30px rgba(18, 50, 65, .05);
}
.partner-carousel:before,
.partner-carousel:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.partner-carousel:before { left: 0; background: linear-gradient(90deg, var(--bg), rgba(250,250,248,0)); }
.section-alt .partner-carousel:before { background: linear-gradient(90deg, var(--bg-alt), rgba(242,245,247,0)); }
.partner-carousel:after { right: 0; background: linear-gradient(270deg, var(--bg), rgba(250,250,248,0)); }
.section-alt .partner-carousel:after { background: linear-gradient(270deg, var(--bg-alt), rgba(242,245,247,0)); }
.partner-track {
  display: flex;
  width: max-content;
  gap: 16px;
  align-items: center;
  animation: partner-scroll 58s linear infinite;
}
.partner-carousel:hover .partner-track { animation-play-state: paused; }
.partner-logo {
  flex: 0 0 190px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border: 1px solid rgba(0, 59, 130, .1);
  border-radius: var(--radius);
  background: var(--white);
}
.partner-logo img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li:before { content: ""; width: 16px; height: 16px; border-radius: 50%; background: var(--green); position: absolute; left: 0; top: 5px; }
.check-list li:after { content: ""; position: absolute; left: 5px; top: 9px; width: 6px; height: 3px; border-left: 2px solid white; border-bottom: 2px solid white; transform: rotate(-45deg); }

.landing-hero {
  background:
    radial-gradient(ellipse at 78% 16%, rgba(31,95,175,.10), transparent 34%),
    linear-gradient(90deg, var(--bg) 0%, var(--bg) 48%, var(--bg-alt) 48%, var(--bg-alt) 100%);
}
.landing-hero .container {
  grid-template-columns: minmax(310px, 410px) minmax(0, 1fr);
  min-height: 640px;
}
.landing-hero .hero-copy {
  align-self: start;
  width: min(100%, 455px);
  margin-left: auto;
  margin-top: clamp(42px, 6vw, 72px);
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 28px rgba(18, 50, 65, .09);
}
.landing-hero .hero-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.landing-hero .hero-copy h1,
.landing-hero .hero-copy .page-title {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.09;
}
.landing-hero > .hero-media {
  inset: 0 0 0 50% !important;
  opacity: .88;
  box-shadow: inset 60px 0 90px var(--bg-alt);
}
.work-vehicle-hero .container {
  min-height: 660px;
}
.work-vehicle-hero .hero-copy {
  width: min(100%, 440px);
}
.work-vehicle-hero > .hero-media {
  background-position: center;
}
.compact-card {
  padding: 20px;
  min-height: 0;
  box-shadow: 0 10px 28px rgba(0,43,92,.06);
}
.compact-card h3 {
  margin: 0 0 8px;
  font-size: 1.03rem;
}
.compact-card p {
  margin: 0;
  font-size: .94rem;
}
.audience-grid {
  gap: 14px;
}
.image-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 34px rgba(0,43,92,.08);
}
.image-card img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}
.image-card div {
  padding: 20px;
}
.image-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 1.08rem;
}
.image-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.platform-section {
  padding-top: 54px;
  padding-bottom: 54px;
}
.platform-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.platform-logo {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  color: var(--blue-dark);
  box-shadow: 0 10px 26px rgba(0,43,92,.06);
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -.01em;
}
.platform-logo.uber { color: #111; font-weight: 800; }
.platform-logo.ninetynine { color: #f6a800; font-size: 1.45rem; }
.platform-logo.mercado-livre { color: #1f5faf; background: #fff9dc; }
.platform-logo.shopee { color: #ee4d2d; }
.platform-logo.ifood { color: #ea1d2c; }
.platform-logo.rappi { color: #ff441f; }
.platform-logo.lalamove { color: #f5a400; }
.platform-logo.flex { color: #232f3e; }
.platform-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: .86rem;
  text-align: center;
}
.home-work-vehicle-cta img,
.auto-work-deep-link img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.lead-form {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
}
.lead-form h2 { margin: 0 0 8px; color: var(--green-dark); font-size: 1.25rem; text-transform: uppercase; letter-spacing: .02em; }
.lead-form p { margin: 0 0 22px; color: var(--blue-dark); font-weight: 700; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .86rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0,59,130,.22);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
}
.field textarea { min-height: 110px; resize: vertical; }
.privacy-note { font-size: .86rem; color: var(--muted); margin: 12px 0 18px; text-align: center; }
.lead-form .btn { width: 100%; }
.mini-proof { margin-top: 20px; color: var(--blue-dark); font-weight: 800; font-size: .95rem; }
.niche-hero .container {
  grid-template-columns: minmax(310px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
}
.niche-hero .hero-copy {
  align-self: center;
  margin-left: 0;
  padding: 30px;
  border: 1px solid rgba(0,59,130,.12);
  border-radius: var(--radius);
  background: rgba(250,250,248,.86);
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 30px rgba(18,50,65,.08);
}
.niche-hero .hero-copy h1,
.profile-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}
.niche-hero .hero-copy p {
  font-size: 1.04rem;
}
.niche-hero > .hero-media {
  box-shadow: inset 70px 0 90px var(--bg), inset -20px 0 50px rgba(0,43,92,.10);
}
.profile-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(76,195,42,.14), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-alt));
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.profile-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
}
.profile-card .tag {
  width: max-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(76,195,42,.14);
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.profile-card .btn {
  margin-top: auto;
}
.niche-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 12px;
}
.niche-form-grid .field-full {
  grid-column: 1 / -1;
}
.niche-benefits .card {
  min-height: 100%;
}
.trust-callout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(242,245,247,.82));
  box-shadow: 0 12px 28px rgba(18,50,65,.055);
}
.trust-callout ul {
  margin: 0;
}
.faq-grid {
  max-width: 920px;
  margin: 0 auto;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.thank-you-panel {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.thank-you-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 22px;
}
.quick-links a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.quick-links a:hover { color: var(--green-dark); }
.proof-band {
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  text-align: center;
}
.proof-band > div { padding: 12px; border-left: 1px solid var(--line); }
.proof-band > div:first-child { border-left: 0; }
.proof-band strong { display: block; color: var(--blue-dark); font-size: 1.12rem; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { text-align: center; position: relative; padding: 10px; }
.step .num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: var(--blue-dark);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 900; margin-bottom: 14px;
}
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
  padding: 36px 0;
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.15; }

.solution-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.solution-list-compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.solution-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 78px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: .92rem;
  color: var(--blue-dark);
  box-shadow: 0 8px 18px rgba(18,50,65,.035);
}
.solution-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.solution-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(18,50,65,.055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.solution-photo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31,95,175,.24);
  box-shadow: 0 16px 34px rgba(18,50,65,.085);
}
.solution-photo-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.solution-photo-card div { padding: 16px; }
.solution-photo-card h3 {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-size: 1.02rem;
}
.solution-photo-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}
.faq { display: grid; gap: 10px; }
.faq details { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.faq summary { cursor: pointer; font-weight: 800; color: var(--blue-dark); }
.faq p { color: var(--muted); margin-bottom: 0; }

.blog-list { display: grid; gap: 18px; }
.post-row {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 22px;
  align-items: center;
}
.post-tag { color: var(--green-dark); font-weight: 900; font-size: .82rem; text-transform: uppercase; }
.post-row h2 { margin: 5px 0 6px; color: var(--blue-dark); font-family: Georgia, "Times New Roman", serif; }
.post-row p { margin: 0; color: var(--muted); }
.map-card {
  overflow: hidden;
  padding: 0;
}
.map-card iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.map-card .card-body {
  padding: 22px 26px;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.legal-footer-links a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
}
.legal-page .section { padding-top: 64px; }
.legal-container { max-width: 920px; }
.legal-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 780px;
}
.career-section { padding-top: 48px; }
.career-page { align-items: start; }
.legal-meta,
.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(18,50,65,.05);
}
.legal-meta {
  padding: 18px 20px;
  margin: 22px 0;
  color: var(--muted);
}
.legal-card {
  padding: 30px;
}
.legal-card h2 {
  margin: 28px 0 10px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.7;
}
.legal-card a,
.legal-meta a { color: var(--blue); font-weight: 800; }
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
  padding: 12px;
  border: 1px solid rgba(0,59,130,.14);
  border-radius: 12px;
  background: rgba(242,245,247,.72);
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}
.consent-field input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
}
.consent-field a {
  color: var(--blue);
  font-weight: 800;
}
.form-status {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--blue-dark);
  font-size: .88rem;
  line-height: 1.35;
}
.form-status.success {
  background: rgba(76,195,42,.12);
  color: var(--green-dark);
}
.form-status.error {
  background: rgba(210,72,72,.1);
  color: #8a2424;
}
.form-status a {
  color: var(--blue);
  font-weight: 800;
}
.lead-form button[disabled] {
  cursor: wait;
  opacity: .72;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(220px, .9fr) auto auto;
  gap: 10px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 12px 30px rgba(18,50,65,.14);
}
.cookie-banner h2 {
  margin: 0 0 2px;
  color: var(--blue-dark);
  font-size: .86rem;
}
.cookie-banner p {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.25;
}
.cookie-banner a {
  color: var(--blue);
  font-weight: 800;
  font-size: .72rem;
}
.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  min-width: 0;
  color: var(--blue-dark);
  font-size: .72rem;
  font-weight: 700;
}
.cookie-options label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}
.cookie-actions .btn {
  padding: 7px 10px;
  font-size: .72rem;
  min-height: 34px;
  border-radius: 8px;
}

.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.86);
  padding: 48px 0 24px;
}
.site-footer .brand {
  width: max-content;
  padding: 6px 10px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--white);
}
.site-footer .brand-logo {
  width: 170px;
  max-height: 54px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer-grid h3 { margin: 0 0 14px; color: white; font-size: 1rem; }
.footer-grid a, .footer-grid p { display: block; margin: 0 0 8px; color: rgba(255,255,255,.76); }
.footer-grid .footer-legal-id {
  margin-top: 14px;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255,255,255,.68);
}
.footer-grid .footer-legal-id strong { color: rgba(255,255,255,.88); }
.footer-disclaimer {
  margin-top: 16px;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 32px; padding-top: 20px; font-size: .9rem; color: rgba(255,255,255,.66); }

.guided-chat {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 65;
  width: min(360px, calc(100vw - 32px));
  font-family: inherit;
}
.guided-chat-toggle {
  width: 100%;
  display: grid;
  gap: 2px;
  justify-items: start;
  padding: 12px 16px;
  border: 1px solid rgba(76,195,42,.42);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 43, 92, .22);
  cursor: pointer;
  text-align: left;
}
.guided-chat-toggle span {
  font-size: .92rem;
  font-weight: 900;
}
.guided-chat-toggle strong {
  font-size: .76rem;
  font-weight: 700;
  color: rgba(255,255,255,.76);
}
.guided-chat-panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: 100%;
  max-height: min(72vh, 620px);
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 22px 54px rgba(0,43,92,.22);
}
.guided-chat-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.guided-chat-head p {
  margin: 0 0 3px;
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.guided-chat-head h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.15rem;
}
.guided-chat-close {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--blue-dark);
  cursor: pointer;
  font-weight: 900;
}
.guided-chat-form {
  display: grid;
  gap: 10px;
}
.guided-chat-form label {
  display: grid;
  gap: 5px;
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 800;
}
.guided-chat-form input,
.guided-chat-form select,
.guided-chat-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(0,59,130,.18);
  border-radius: 10px;
  padding: 9px 11px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}
.guided-chat-form textarea {
  resize: vertical;
  min-height: 74px;
}
.guided-chat-consent {
  grid-template-columns: auto 1fr !important;
  align-items: flex-start;
  gap: 8px !important;
  color: var(--muted) !important;
  font-size: .74rem !important;
  font-weight: 600 !important;
  line-height: 1.35;
}
.guided-chat-consent input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 2px;
}
.guided-chat-form .btn {
  width: 100%;
  min-height: 42px;
}
.guided-chat-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}
.guided-chat-status.success { color: var(--green-dark); font-weight: 800; }
.guided-chat-status.error { color: #8a2424; font-weight: 800; }
.guided-chat-status a { color: var(--blue); text-decoration: underline; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-feedback {
  white-space: pre-line;
}

@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }
  .menu {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .menu.open { display: flex; }
  .menu a, .menu-link { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; width: 100%; }
  .menu-item { width: 100%; }
  .submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 6px;
    box-shadow: none;
    background: var(--bg);
  }
  .has-submenu.open .submenu { display: block; }
  .has-submenu:hover .submenu { display: none; }
  .has-submenu.open:hover .submenu { display: block; }
  .submenu a { padding: 10px 12px; border-bottom: 0; }
  .nav { min-height: 72px; }
  .hero .container, .landing-hero .container, .niche-hero .container, .split { grid-template-columns: 1fr; }
  .porto-proof { grid-template-columns: 1fr; }
  .date-certa-grid { grid-template-columns: 1fr; }
  .date-certa-cards { grid-template-columns: 1fr; }
  .glossario-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .authority-panel { grid-template-columns: 1fr; }
  .authority-grid { grid-template-columns: 1fr 1fr; }
  .hero .container, .landing-hero .container { min-height: auto; padding: 36px 0; }
  .landing-hero { background: var(--bg); }
  .landing-hero .hero-copy { margin-left: 0; margin-top: 0; }
  .hero-media { min-height: 360px; border-radius: var(--radius); box-shadow: inset 0 80px 80px rgba(250,250,248,.22); }
  .landing-hero > .hero-media {
    position: relative !important;
    inset: auto !important;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 34px;
  }
  .trust-strip, .grid-2, .grid-3, .grid-4, .grid-5, .profile-grid, .proof-band, .steps, .solution-list, .solution-photo-grid, .footer-grid, .post-row, .operator-logo-grid, .image-feature-grid, .platform-logos { grid-template-columns: 1fr 1fr; }
  .trust-callout { grid-template-columns: 1fr; }
  .radar-featured-post { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: minmax(190px, 1fr) auto; align-items: center; }
  .cookie-options { grid-column: 1 / -1; }
  .cookie-actions { justify-content: flex-start; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 58px 0; }
  .career-section { padding-top: 34px; }
  .google-reviews-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }
  .google-reviews-track {
    grid-auto-columns: 100%;
  }
  .google-review-card {
    min-height: 220px;
    padding: 20px;
  }
  .review-nav {
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
  .review-actions .btn {
    width: 100%;
  }
  .brand-logo { width: 148px; max-height: 48px; }
  .hero h1, .page-title { font-size: 2.15rem; }
  .actions .btn, .site-header .whatsapp { width: 100%; }
  .site-header .whatsapp { display: none; }
  .authority-panel { padding: 24px; }
  .authority-grid, .routine-grid { grid-template-columns: 1fr; }
  .routine-grid { max-width: none; margin-left: 0; }
  .trust-strip, .grid-2, .grid-3, .grid-4, .grid-5, .profile-grid, .niche-form-grid, .proof-band, .steps, .solution-list, .solution-photo-grid, .footer-grid, .post-row, .logo-rail, .operator-logo-grid, .image-feature-grid { grid-template-columns: 1fr; }
  .radar-featured-post { padding: 20px; }
  .radar-image-placeholder { min-height: 200px; }
  .radar-article-image { min-height: 220px; }
  .home-radar-section {
    padding: 38px 0 42px;
  }
  .home-radar-section .section-head {
    margin-bottom: 16px;
  }
  .home-radar-carousel {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 8px;
  }
  .home-radar-slide {
    grid-template-columns: 1fr;
  }
  .home-radar-image-link,
  .home-radar-image {
    min-height: 150px;
    aspect-ratio: 16 / 9;
  }
  .home-radar-content {
    min-height: 230px;
    padding: 16px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .home-radar-content h3 {
    font-size: 1.08rem;
    line-height: 1.18;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .home-radar-content p {
    font-size: .9rem;
  }
  .radar-carousel-nav {
    width: 30px;
    height: 30px;
    font-size: 1.25rem;
  }
  .radar-risk-box,
  .radar-action-box,
  .radar-conversation-box,
  .radar-editorial-note { padding: 18px; }
  .proof-band > div { border-left: 0; border-top: 1px solid var(--line); }
  .proof-band > div:first-child { border-top: 0; }
  .lead-form { padding: 22px; }
  .landing-hero .hero-copy { padding: 20px; }
  .landing-hero .hero-copy h1,
  .landing-hero .hero-copy .page-title {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
    line-height: 1.08;
  }
  .landing-hero .hero-copy p { font-size: .98rem; }
  .niche-hero .hero-copy { padding: 20px; }
  .niche-form-grid .field-full { grid-column: auto; }
  .landing-hero > .hero-media { min-height: 260px; }
  .platform-logos { grid-template-columns: 1fr; }
  .platform-logo { min-height: 64px; font-size: 1.08rem; }
  .glossario-search-card { padding: 16px; }
  .glossario-grid { grid-template-columns: 1fr; gap: 12px; }
  .glossario-letter-head { align-items: flex-start; flex-direction: column; }
  .glossario-index-link { min-width: 34px; min-height: 34px; }
  .glossario-term { padding: 16px; }
  .legal-card { padding: 22px; }
  .legal-footer-links { flex-direction: column; gap: 8px; }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    max-height: 34vh;
    overflow: auto;
    gap: 7px;
    padding: 10px;
    border-radius: 10px;
  }
  .cookie-banner h2 { font-size: .82rem; }
  .cookie-banner p { display: none; }
  .cookie-banner p,
  .cookie-banner a { font-size: .68rem; line-height: 1.2; }
  .cookie-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 9px;
    min-width: 0;
    font-size: .68rem;
  }
  .cookie-options label { gap: 4px; }
  .cookie-actions {
    display: grid;
    grid-template-columns: .9fr .9fr 1.15fr;
    gap: 6px;
  }
  .cookie-actions .btn { width: 100%; }
  .cookie-actions .btn {
    min-height: 32px;
    padding: 6px 6px;
    font-size: .66rem;
  }
  .guided-chat {
    left: 10px;
    right: 10px;
    bottom: 68px;
    width: auto;
  }
  .guided-chat-toggle {
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    padding: 10px 13px;
    border-radius: 14px;
  }
  .guided-chat-toggle span { font-size: .86rem; }
  .guided-chat-toggle strong { display: none; }
  .guided-chat-panel {
    right: 0;
    bottom: 54px;
    max-height: 68vh;
    padding: 14px;
    border-radius: 15px;
  }
  .guided-chat-head h2 { font-size: 1rem; }
  .guided-chat-form {
    gap: 8px;
  }
  .guided-chat-form input,
  .guided-chat-form select,
  .guided-chat-form textarea {
    min-height: 39px;
    padding: 8px 10px;
  }
  .guided-chat-form textarea {
    min-height: 58px;
  }
}

.partner-identity {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 26px;
  align-items: center;
}
.proauto-logo-card {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.proauto-logo-card img {
  max-width: 250px;
  max-height: 130px;
  object-fit: contain;
}
.partner-copy h2 {
  margin-top: 0;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.feature-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  padding: 18px;
}
.feature-list strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

@media (max-width: 960px) {
  .partner-identity, .feature-list { grid-template-columns: 1fr; }
}

/* Portal seguro de envio de documentos */
.portal-doc-body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(76, 195, 42, .12), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, var(--bg) 58%, #eef5fb 100%);
  color: var(--text);
}

.portal-doc-page {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 18px 14px 28px;
}

.portal-doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.portal-doc-logo {
  width: 172px;
  max-width: 58vw;
  height: auto;
}

.portal-doc-header span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 59, 130, .08);
  color: var(--blue);
  font-size: .84rem;
  font-weight: 800;
}

.portal-doc-card {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(0, 59, 130, .13);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 43, 92, .13);
}

.portal-doc-progress {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}

.portal-doc-progress strong {
  color: var(--blue);
}

.portal-doc-progress-bar {
  height: 8px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 59, 130, .1);
}

.portal-doc-progress-bar i {
  display: block;
  width: 16%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width .25s ease;
}

.portal-step {
  display: none;
}

.portal-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.portal-step.is-active {
  display: block;
}

.portal-step h1,
.portal-step h2 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: .98;
  letter-spacing: 0;
}

.portal-step p {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.45;
}

.portal-step label {
  display: block;
  margin: 18px 0 8px;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 1rem;
}

.portal-step input[type="text"],
.portal-step input[type="tel"] {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(0, 59, 130, .22);
  border-radius: 14px;
  padding: 0 16px;
  color: var(--text);
  background: var(--white);
  font: inherit;
  font-size: 1.08rem;
}

.portal-step input:focus {
  outline: 3px solid rgba(76, 195, 42, .25);
  border-color: var(--green-dark);
}

.portal-primary-btn,
.portal-secondary-btn {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 14px;
  padding: 15px 18px;
  font: inherit;
  font-size: 1.04rem;
  font-weight: 900;
  cursor: pointer;
}

.portal-primary-btn {
  margin-top: 22px;
  background: var(--green);
  color: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(76, 195, 42, .25);
}

.portal-primary-btn:disabled {
  cursor: wait;
  opacity: .72;
}

.portal-secondary-btn {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(0, 59, 130, .18);
}

.portal-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.portal-upload-actions,
.portal-row-actions {
  display: grid;
  gap: 12px;
}

.portal-step[data-doc-step] .portal-row-actions {
  display: none;
}

.portal-step[data-doc-step].has-selected-file .portal-row-actions {
  display: grid;
}

.portal-preview {
  display: none;
  margin-top: 16px;
  border: 1px dashed rgba(0, 59, 130, .3);
  border-radius: 16px;
  padding: 14px;
  background: var(--bg-alt);
  color: var(--blue-dark);
  font-weight: 800;
}

.portal-preview.has-file {
  display: grid;
  gap: 10px;
}

.portal-preview img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
}

.portal-preview span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-weight: 700;
}

.portal-legibility-question {
  margin: 4px 0 0 !important;
  color: var(--blue-dark) !important;
  font-size: 1rem !important;
  font-weight: 900;
}

.portal-message {
  display: none;
  margin-top: 16px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  line-height: 1.35;
}

.portal-message.is-error,
.portal-message.is-success {
  display: block;
}

.portal-message.is-error {
  background: #fff0f0;
  color: #9f1d1d;
  border: 1px solid rgba(159, 29, 29, .2);
}

.portal-message.is-success {
  background: rgba(76, 195, 42, .11);
  color: var(--blue-dark);
  border: 1px solid rgba(76, 195, 42, .28);
}

.portal-final-step {
  text-align: center;
}

.portal-final-step h1 {
  color: var(--green-dark);
}

.portal-doc-security {
  max-width: 420px;
  margin: 16px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
  line-height: 1.4;
}

@media (min-width: 620px) {
  .portal-doc-page {
    padding-top: 32px;
  }

  .portal-doc-card {
    padding: 30px;
  }

  .portal-upload-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  .portal-doc-card {
    padding: 16px;
    border-radius: 18px;
  }

  .portal-step h1,
  .portal-step h2 {
    font-size: 1.8rem;
  }

  .portal-doc-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-radar-track {
    transition: none;
  }
}
