:root {
  --bg: #051736;
  --surface: rgba(239, 248, 255, 0.72);
  --surface-soft: rgba(233, 244, 255, 0.64);
  --line: rgba(184, 212, 235, 0.52);
  --ink: #0f1a2e;
  --muted: #5a6679;
  --primary: #10756d;
  --primary-2: #0c5f94;
  --shadow: 0 20px 48px rgba(3, 15, 31, 0.35);
}

* {
  box-sizing: border-box;
}

.landing-body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.landing-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.landing-backdrop-slide {
  position: absolute;
  inset: -6% -2%;
  opacity: 0;
  transform: translateY(5%);
  background-size: cover;
  background-position: center 58%;
  filter: saturate(1.05) brightness(0.62);
  transition:
    opacity 1.15s ease,
    transform 9.5s linear;
}

.landing-backdrop-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.landing-backdrop-slide.is-exiting {
  opacity: 0;
  transform: translateY(-3%);
}

.landing-backdrop-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 10, 24, 0.64) 0%, rgba(3, 13, 31, 0.78) 62%, rgba(3, 10, 24, 0.84) 100%);
}

.landing-backdrop-shine {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(980px 520px at 8% -15%, rgba(66, 150, 255, 0.18), transparent 65%),
    radial-gradient(920px 500px at 92% -12%, rgba(111, 247, 210, 0.14), transparent 65%);
}

header,
main,
footer,
.cookie-banner {
  position: relative;
  z-index: 2;
}

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

.topbar {
  position: relative;
  top: 0;
  z-index: 50;
  padding: 10px 0 4px;
  background: transparent;
  border-bottom: 0;
}

.nav-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.logo {
  color: #f8fbff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
}

.brand-with-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.brand-with-mark img {
  width: min(176px, 30vw);
  height: auto;
  object-fit: contain;
  margin-bottom: -20px;
}

.brand-with-mark span {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: #f7fbff;
  -webkit-text-stroke: 1px rgba(4, 10, 18, 0.92);
  text-shadow: 0 1px 2px rgba(4, 10, 18, 0.85);
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: #f4f8ff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 18, 34, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 22px rgba(2, 8, 18, 0.18);
  backdrop-filter: blur(8px) saturate(120%);
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  transform: translateY(-1px);
  background: rgba(10, 18, 34, 0.48);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 26px rgba(2, 8, 18, 0.24);
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.nav-back {
  text-decoration: none;
  color: #f4f8ff !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 18, 34, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 22px rgba(2, 8, 18, 0.18);
  backdrop-filter: blur(8px) saturate(120%);
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  white-space: nowrap;
}

.nav-back:visited {
  color: #f4f8ff !important;
}

.nav-back:hover,
.nav-back:focus-visible {
  transform: translateY(-1px);
  background: rgba(10, 18, 34, 0.48);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 26px rgba(2, 8, 18, 0.24);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 18, 34, 0.35);
  color: #f4f8ff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(2, 8, 18, 0.18);
  backdrop-filter: blur(8px) saturate(120%);
}

.nav-toggle svg {
  display: block;
}

.nav-menu {
  display: none;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(90deg, var(--primary) 0%, #0f9887 100%);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: #1e3044;
  border-color: #b8c7d8;
}

.btn.ghost {
  background: #f7fbff;
  color: #1f3f57;
  border-color: #aac0d5;
}

.btn.wa {
  background: linear-gradient(90deg, #22c863 0%, #14a55d 100%);
  color: #fff;
}

main {
  padding-bottom: 20px;
}

.hero {
  padding: 26px 0 6px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.itp-card,
.section,
.instagram-card,
.contact-card,
.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px) saturate(128%);
}

.hero-copy {
  padding: clamp(20px, 4.5vw, 32px);
  background:
    linear-gradient(154deg, rgba(8, 20, 44, 0.58) 0%, rgba(8, 24, 54, 0.44) 62%, rgba(8, 44, 58, 0.30) 100%);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  align-items: center;
  text-align: center;
}

.kicker {
  display: inline-block;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f5f80;
  background: rgba(219, 240, 255, 0.56);
  border: 1px solid rgba(148, 191, 219, 0.72);
  border-radius: 999px;
  padding: 8px 12px;
}

h1 {
  margin: 12px 0;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.hero-title-compact {
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  line-height: 1.03;
  color: rgba(248, 252, 255, 0.98);
  text-wrap: balance;
  max-width: 15ch;
}

.hero-copy h1 {
  color: rgba(248, 252, 255, 0.98);
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
}

.sub {
  margin: 0;
  color: rgba(248, 252, 255, 0.96);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 90%;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.hero-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
  text-align: left;
  width: min(100%, 620px);
}

.hero-points li {
  color: rgba(244, 249, 255, 0.88);
  font-weight: 600;
  line-height: 1.45;
}

.hero-points li::before {
  content: "✓ ";
  color: #41d3b5;
}

.hero-kicker-bottom {
  margin-top: 14px;
  align-self: center;
  color: rgba(232, 247, 255, 0.96);
  background: rgba(8, 22, 40, 0.22);
  border-color: rgba(163, 211, 240, 0.42);
}

.hero-channel-grid {
  width: min(100%, 860px);
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-channel-card {
  display: grid;
  gap: 8px;
  padding: 18px 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(163, 211, 240, 0.28);
  background: rgba(255, 255, 255, 0.52);
  text-align: center;
}

.hero-channel-kicker {
  color: #c4513f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-channel-card strong {
  color: #111924;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-channel-card p {
  margin: 0;
  color: #5f6876;
  font-size: 0.9rem;
  line-height: 1.45;
}

.itp-card {
  padding: 22px;
  background:
    linear-gradient(170deg, rgba(12, 28, 58, 0.74) 0%, rgba(15, 39, 73, 0.72) 100%);
  display: flex;
  flex-direction: column;
  color: rgba(248, 252, 255, 0.96);
}

.itp-card h2,
.itp-card .itp-caption {
  text-align: center;
  color: rgba(248, 252, 255, 0.96);
}

.itp-caption {
  margin: 8px 0 14px;
  color: rgba(235, 244, 252, 0.9);
  font-size: 0.94rem;
}

.itp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.itp-field {
  display: grid;
  gap: 7px;
  align-content: start;
}

.itp-field label {
  display: block;
  margin-bottom: 0;
  min-height: 2.2em;
  display: flex;
  align-items: flex-end;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(245, 250, 255, 0.94);
}

.itp-form input,
.itp-form select,
.itp-form button {
  width: 100%;
}

.itp-form input,
.itp-form select {
  border: 1px solid #b6cde0;
  border-radius: 14px;
  min-height: 44px;
  padding: 0 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
  color: #0e1727;
  align-self: end;
}

.itp-form input::placeholder {
  color: rgba(14, 23, 39, 0.48);
}

.rgpd-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: #2f445d;
}

.rgpd-check input {
  margin-top: 4px;
  width: auto;
}

.rgpd-check a {
  color: #0d6a9b;
  font-weight: 700;
}

.itp-form .full,
.itp-form .full-check {
  grid-column: span 2;
}

.field-wide {
  grid-column: span 2;
}

.result-box {
  display: none;
  margin-top: 12px;
  border: 1px dashed #8faac1;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 14px;
  padding: 12px;
  color: #173b56;
  font-size: 0.94rem;
}

.result-box.visible {
  display: block;
}

.result-box p {
  margin: 8px 0 0;
}

.result-error {
  border-color: #d58f8f;
  background: #fff5f5;
  color: #7f2222;
}

.result-warn {
  border-color: #d4b16d;
  background: #fffaf2;
  color: #6d4a13;
}

.result-success {
  border-color: #78c2a8;
  background: #f3fffb;
  color: #174f3d;
}

.mini-whatsapp {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(180, 205, 226, 0.6);
  border-radius: 16px;
  padding: 14px;
}

.mini-whatsapp h3 {
  margin: 0;
  font-size: 1.1rem;
}

.wa-title-centered {
  text-align: center;
}

.mini-whatsapp p {
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.98) !important;
  text-align: center;
}

.wa-subline {
  text-align: center;
  font-size: 0.88rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.98) !important;
}

.mini-whatsapp-actions {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.mini-whatsapp-actions .btn {
  flex: 1;
  min-height: 42px;
  font-size: 0.82rem;
  padding: 0 10px;
  white-space: nowrap;
}

.mini-whatsapp .btn.wa {
  animation: doraPulse 2.2s ease-in-out infinite;
  box-shadow: 0 14px 28px rgba(24, 148, 74, 0.18);
}

.section {
  margin-top: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.landing-body .section {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.section#tramites,
.section#reviews {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.section#tramites .section-head h2,
.section#tramites .section-head p,
.section#reviews .section-head h2,
.section#reviews .section-head p {
  color: rgba(255, 255, 255, 0.98);
}

.section#tramites .section-head p,
.section#reviews .section-head p {
  opacity: 0.84;
}

.section#how .section-head h2,
.section#how .section-head p,
.section#professionals .section-head h2,
.section#professionals .section-head p,
.catalog-page .section-head h1,
.catalog-page .section-head h2,
.catalog-page .section-head p {
  color: rgba(255, 255, 255, 0.98) !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
  text-wrap: balance;
}

.section#how .section-head p,
.section#professionals .section-head p,
.catalog-page .section-head p {
  opacity: 0.88 !important;
}

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

.catalog-page .section-head,
.contact-page .legal-card {
  text-align: center;
}

.catalog-page .catalog-head {
  display: grid;
  justify-items: center;
}

.catalog-page .section-head p {
  max-width: 940px;
  margin-inline: auto;
}

.catalog-page .catalog-head h1,
.catalog-page .catalog-head p {
  text-align: center;
}

.catalog-page .catalog-card {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.9) 0%, rgba(239, 246, 255, 0.86) 100%);
  border: 1px solid rgba(177, 199, 220, 0.4);
  box-shadow: 0 16px 34px rgba(2, 8, 18, 0.1);
  backdrop-filter: blur(10px) saturate(115%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.catalog-page .catalog-card .top-card-content {
  background: transparent;
  flex: 1;
}

.section-head-inline {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.section-head-btn {
  margin-top: 8px;
  white-space: nowrap;
  margin-inline: auto;
}

.section-head-inline > div {
  width: 100%;
}

.top-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  grid-auto-rows: 1fr;
}

.catalog-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.catalog-block {
  margin-top: 22px;
}

.report-block {
  margin-top: 30px;
}

.report-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  grid-auto-rows: 1fr;
}

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

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

.catalog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.catalog-card .top-card-content {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  flex: 1;
}

.catalog-price {
  margin: 0;
  color: #0f4f7c;
  font-weight: 700;
  font-size: 0.9rem;
}

.top-card {
  display: block;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.12) 0%, rgba(232, 242, 251, 0.08) 100%);
  border: 1px solid rgba(188, 209, 227, 0.28);
  border-radius: 16px;
  overflow: hidden;
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
  backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 14px 30px rgba(20, 40, 60, 0.1);
}

.top-card:hover {
  transform: translateY(-4px);
  border-color: #9eb3c7;
  box-shadow: 0 14px 28px rgba(20, 40, 60, 0.14);
}

.top-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: var(--thumb-focus, center center);
  transform: scale(var(--thumb-zoom, 1));
  transform-origin: center center;
  display: block;
  border-bottom: 1px solid #ccd8e4;
  background: rgba(240, 247, 255, 0.18);
  box-sizing: border-box;
  padding: 0;
}

.top-card-content {
  padding: 8px 12px 10px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.top-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.top-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.section#tramites .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section#tramites .section-head p {
  max-width: 820px;
  margin-inline: auto;
}

.section#tramites .section-head-btn {
  margin-top: 12px;
}

.section#tramites .top-grid {
  margin-top: 20px;
}

.section#tramites .top-grid > .top-card {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.9) 0%, rgba(239, 246, 255, 0.86) 100%);
  border: 1px solid rgba(177, 199, 220, 0.4);
  box-shadow: 0 16px 34px rgba(2, 8, 18, 0.1);
  backdrop-filter: blur(10px) saturate(115%);
}

.section#tramites .top-card-content {
  background: transparent;
  backdrop-filter: none;
}

.section#reviews .reviews-head,
.section#reviews .reviews-cta {
  margin-inline: auto;
}

.section#reviews .reviews-carousel {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.section#reviews .review-card {
  background: transparent;
}

.landing-body .legal-card {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.landing-body .legal-card h2 {
  text-align: center;
}

.landing-body .legal-card .hero-points {
  width: min(100%, 960px);
  margin-inline: auto;
}

.catalog-card .top-card p {
  margin-top: 0;
}

.report-card h3 {
  min-height: 2.5em;
}

.report-card .top-card-content {
  min-height: 218px;
}

.catalog-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(18, 96, 149, 0.12);
  color: #0d5b87;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.reviews-layout {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  color: #eef5fb;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 0;
  border-radius: 0;
  padding: 6px 12px 8px;
  min-height: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.review-card h3 {
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
  color: #f1f6fb;
}

.review-card .stars {
  color: #f2a500;
  margin: 8px 0;
  font-size: 1.05rem;
  text-align: center;
}

.review-card p {
  margin: 0;
  color: rgba(241, 246, 251, 0.88);
  line-height: 1.6;
  text-align: center;
}

.reviews-carousel {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
}

.review-nav {
  display: none;
}

.reviews-cta {
  margin: 20px auto 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-head {
  text-align: center;
  margin-inline: auto;
  max-width: 760px;
}

.reviews-head p {
  margin-inline: auto;
}

@keyframes doraPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 14px 28px rgba(24, 148, 74, 0.16);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 18px 36px rgba(24, 148, 74, 0.28);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 14px 28px rgba(24, 148, 74, 0.16);
  }
}

.instagram-card {
  padding: 24px;
  background:
    linear-gradient(
      140deg,
      rgba(255, 255, 255, 0.76) 0%,
      rgba(248, 246, 255, 0.64) 30%,
      rgba(255, 246, 247, 0.6) 62%,
      rgba(244, 251, 255, 0.66) 100%
    );
}

.instagram-card p {
  color: var(--muted);
  margin: 10px 0 14px;
}

.instagram-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.instagram-link {
  text-decoration: none;
  color: #193756;
  font-weight: 700;
  border: 1px solid rgba(186, 206, 224, 0.9);
  background: rgba(255, 255, 255, 0.68);
  border-radius: 12px;
  padding: 10px 14px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.ig-icon {
  color: #c12b8c;
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.brand-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  line-height: 1;
}

.brand-stack img {
  width: min(168px, 30vw);
  height: auto;
  object-fit: contain;
  margin-bottom: -5px;
}

.brand-stack span {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f7fbff;
  -webkit-text-stroke: 1px rgba(4, 10, 18, 0.92);
  text-shadow: 0 1px 2px rgba(4, 10, 18, 0.85);
}

.contact-card,
.legal-card {
  padding: 24px;
}

.contact-page .contact-card,
.contact-page .instagram-card,
.contact-page .legal-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact-wa-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-pill {
  border: 1px solid #bccdde;
  background: #f7fbff;
  border-radius: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: #193b5b;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.contact-email-list {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.contact-page .contact-email-inline {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-page .contact-email-inline a {
  color: #105f92;
  font-weight: 700;
}

.contact-legal-floating {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 10px 0 18px;
  color: rgba(248, 252, 255, 0.98);
  text-shadow: 0 2px 12px rgba(2, 8, 18, 0.34);
}

.contact-legal-floating p {
  max-width: 980px;
  color: rgba(233, 242, 252, 0.86);
  margin: 10px 0 14px;
}

.contact-legal-floating a {
  color: #14314e;
}

.contact-card a,
.legal-card a {
  color: #105f92;
  font-weight: 700;
}

.legal-card p {
  color: var(--muted);
  margin: 10px 0 14px;
}

.ia-page .legal-card {
  text-align: center;
}

.ia-page .legal-card .hero-points {
  width: min(100%, 940px);
  margin-inline: auto;
  padding-left: 18px;
  transform: translateX(22px);
}

.ia-page .legal-card .hero-points li {
  text-align: left;
}

.ia-page .legal-card .hero-actions {
  justify-content: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.legal-links a,
.legal-links button {
  border: 1px solid #bccdde;
  background: #fff;
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 700;
  color: #193b5b;
  text-decoration: none;
}

.legal-links button {
  cursor: pointer;
}

.footer {
  margin-top: 10px;
  padding: 18px 0 34px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, 94vw);
  background: rgba(15, 29, 45, 0.95);
  color: #e8f0ff;
  border: 1px solid rgba(158, 181, 210, 0.35);
  border-radius: 14px;
  padding: 14px;
  display: none;
  z-index: 80;
}

.cookie-banner a {
  color: #9ad1ff;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner p {
  margin: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  border: 1px solid #7ba2c5;
  background: #183551;
  color: #fff;
  border-radius: 10px;
  min-height: 38px;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-actions button:first-child {
  background: #0f8a76;
  border-color: #4dc2af;
}

.footer-links {
  justify-content: center;
  margin-top: 10px;
}

.tramite-card {
  padding: 24px;
}

.selected-service-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  align-items: stretch;
  border: 1px solid #c7d8e9;
  background: #f7fbff;
  border-radius: 14px;
  padding: 10px;
}

.selected-service-strip img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.selected-service-strip p {
  margin: 8px 0 0;
  color: #35526d;
}

.tramite-title {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.tramite-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.tramite-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #20364f;
}

.tramite-form input,
.tramite-form button {
  width: 100%;
}

.tramite-form input {
  border: 1px solid #b6cde0;
  border-radius: 12px;
  min-height: 44px;
  padding: 0 12px;
  font: inherit;
  background: #fff;
}

.tramite-form input[type="file"] {
  padding: 8px;
}

.full-span {
  grid-column: span 2;
}

.docs-block h3 {
  margin: 0;
}

.docs-block p {
  margin: 8px 0 0;
  color: var(--muted);
}

.docs-strict-note {
  margin-top: 2px;
  border: 1px solid #d7e7f4;
  border-radius: 12px;
  background: #f4f9ff;
  padding: 12px 14px;
  color: #20364f;
  font-weight: 600;
  line-height: 1.45;
}

.field-required {
  color: #0d628f;
  font-weight: 800;
}

.field-optional {
  color: #5b6f85;
  font-weight: 600;
}

.service-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #c4d5e8;
  min-height: 440px;
}

.service-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--thumb-focus, center center);
  transform: scale(var(--thumb-zoom, 1));
  transform-origin: center center;
  display: block;
}

.service-hero-overlay {
  position: absolute;
  inset: auto 20px 20px 20px;
  background: rgba(7, 20, 34, 0.72);
  border: 1px solid rgba(173, 203, 232, 0.35);
  border-radius: 16px;
  padding: 18px;
  color: #f3f7ff;
}

.service-hero-overlay h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.service-hero-overlay p {
  margin: 10px 0 0;
}

.hero-price {
  color: #7bd2ff;
}

.service-docs-card {
  margin-top: 16px;
}

.service-docs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.service-doc-item {
  border: 1px solid #c6d6e8;
  border-radius: 12px;
  background: #f9fcff;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.doc-alt-note {
  color: #4c6075;
  font-size: 0.78rem;
  line-height: 1.45;
}

.doc-required {
  color: #0c7a42;
  font-weight: 700;
  font-size: 0.85rem;
}

.doc-optional {
  color: #4d5f73;
  font-weight: 700;
  font-size: 0.85rem;
}

.ia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.ia-highlight-card,
.ia-nova-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.ia-highlight-card {
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.92) 0%, rgba(242, 248, 255, 0.84) 55%, rgba(234, 245, 255, 0.86) 100%);
  width: min(1120px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ia-highlight-card p {
  max-width: 1040px;
}

.ia-highlight-card .ia-copy {
  color: rgba(11, 18, 35, 0.98);
  text-align: center;
}

.ia-highlight-card .ia-copy p {
  color: rgba(11, 18, 35, 0.82);
  max-width: 1040px;
}

.nova-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 420px);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  text-align: left;
  overflow: hidden;
}

.nova-card .nova-copy {
  display: grid;
  justify-items: start;
  gap: 10px;
  max-width: 600px;
}

.nova-title {
  margin: 4px 0 0;
  line-height: 0.98;
}

.nova-title span {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  letter-spacing: -0.02em;
  text-transform: none;
}

.nova-title em {
  font-style: normal;
}

.nova-title small {
  display: block;
  margin-top: 6px;
  color: #0e6387;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.1rem, 2.6vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.nova-card p {
  max-width: 570px;
  margin: 0;
}

.nova-card .hero-actions {
  justify-content: flex-start;
  margin-top: 8px;
}

animated-avatar.nova-visual {
  display: block;
  width: min(100%, 300px);
  aspect-ratio: 1 / 1;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  justify-self: center;
}

.ia-page .ia-nova-card {
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 18px;
  align-items: center;
}

.ia-page .ia-nova-copy {
  padding-left: 18px;
}

.ia-page .ia-nova-card p {
  color: rgba(11, 18, 35, 0.84);
}

animated-avatar.ia-nova-avatar {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.how-grid,
.professionals-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

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

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

.workflow-card,
.professional-card,
.professional-callout {
  border-radius: 18px;
  border: 1px solid rgba(165, 194, 221, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(235, 243, 251, 0.76) 100%);
  box-shadow: 0 22px 46px rgba(4, 13, 28, 0.16);
  padding: 20px;
}

.workflow-card h3,
.workflow-card p,
.professional-card h3,
.professional-card p,
.professional-callout strong,
.professional-callout p {
  text-wrap: balance;
}

.professional-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.workflow-card__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.workflow-card {
  min-height: 100%;
}

.workflow-card .card-kicker,
.professional-card .card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(14, 99, 135, 0.12);
  color: #0e6387;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workflow-card h3,
.professional-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
}

.workflow-card__head h3 {
  flex: 1;
  margin-top: 2px;
}

.workflow-card__head .card-kicker {
  margin-top: 0;
  flex: 0 0 auto;
  white-space: nowrap;
}

.workflow-card p,
.professional-card p,
.professional-callout p {
  margin: 0;
  color: rgba(11, 18, 35, 0.8);
  line-height: 1.55;
}

.professional-card--center .card-kicker {
  margin-inline: auto;
}

.professional-card h3 {
  max-width: 21ch;
}

.professional-card p {
  max-width: 32ch;
}

.professional-card--center p {
  max-width: 31ch;
}

.workflow-card .card-links,
.professional-card .card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.workflow-card .card-links a,
.professional-card .card-links a {
  text-decoration: none;
  color: #f4fbff;
  background: linear-gradient(135deg, #0f8a76 0%, #16a191 100%);
  padding: 0 12px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.professional-callout {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  background:
    linear-gradient(130deg, rgba(12, 29, 49, 0.94) 0%, rgba(16, 57, 87, 0.92) 100%);
  color: #eff7ff;
  border-color: rgba(148, 187, 220, 0.22);
  justify-items: center;
  text-align: center;
}

.professional-callout strong {
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.professional-callout p {
  color: rgba(235, 245, 255, 0.88);
  max-width: 1080px;
}

.professional-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}

.professional-pill-row a {
  text-decoration: none;
  color: #f4fbff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 14px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.catalog-page .section-head {
  text-align: center;
  justify-items: center;
}

.catalog-page .section-head p {
  max-width: 980px;
  margin-inline: auto;
}

.ia-floating-panel {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 8px 0 22px;
  color: rgba(250, 253, 255, 0.98);
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.ia-floating-panel h2 {
  color: rgba(250, 253, 255, 0.98);
}

/* 2026-05 editorial public refresh */
:root {
  --bg: #f5f0e8;
  --surface: rgba(255, 253, 248, 0.9);
  --surface-soft: rgba(255, 253, 248, 0.78);
  --line: rgba(194, 180, 164, 0.26);
  --ink: #1a2230;
  --muted: #687181;
  --primary: #c94a39;
  --primary-2: #a93024;
  --shadow: 0 24px 58px rgba(24, 28, 37, 0.08);
}

.landing-body {
  color: var(--ink);
  background: var(--bg);
}

.landing-backdrop-slide {
  opacity: 0;
  transform: translateY(2%);
  filter: saturate(0.72) brightness(1.04);
  mix-blend-mode: multiply;
}

.landing-backdrop-overlay {
  background:
    linear-gradient(180deg, rgba(248, 243, 236, 0.88) 0%, rgba(246, 239, 230, 0.94) 62%, rgba(244, 238, 229, 0.98) 100%);
}

.landing-backdrop-shine {
  background:
    radial-gradient(980px 520px at 8% -15%, rgba(255, 255, 255, 0.62), transparent 65%),
    radial-gradient(900px 480px at 92% -12%, rgba(228, 210, 193, 0.24), transparent 65%);
}

.topbar {
  padding: 18px 0 8px;
}

.nav-row {
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid rgba(198, 184, 168, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(24, 28, 37, 0.08);
  backdrop-filter: blur(18px) saturate(132%);
}

.brand-with-mark span,
.brand-stack span {
  color: #171f29;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.nav-links,
.nav-cta {
  gap: 8px;
}

.nav-links a,
.nav-back {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  color: rgba(33, 42, 54, 0.72);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-back:hover,
.nav-back:focus-visible {
  background: rgba(246, 240, 232, 0.92);
  border-color: rgba(198, 184, 168, 0.2);
  box-shadow: inset 0 -2px 0 rgba(201, 74, 57, 0.2);
  color: #1c2431;
}

.nav-toggle {
  border-color: rgba(198, 184, 168, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #1c2431;
  box-shadow: 0 14px 26px rgba(24, 28, 37, 0.08);
}

.btn {
  min-height: 42px;
  border-radius: 14px;
  letter-spacing: -0.01em;
}

.btn.primary {
  background: linear-gradient(135deg, #c94a39, #a93024);
}

.btn.secondary,
.btn.ghost {
  border-color: rgba(198, 184, 168, 0.28);
  background: rgba(255, 255, 255, 0.88);
  color: #1c2431;
}

.hero {
  padding: 22px 0 12px;
}

.hero-copy,
.itp-card,
.section,
.instagram-card,
.contact-card,
.legal-card,
.ia-highlight-card,
.ia-nova-card,
.workflow-card,
.professional-card,
.professional-callout,
.catalog-page .catalog-card {
  border: 1px solid rgba(198, 184, 168, 0.22) !important;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(246, 239, 230, 0.92)) !important;
  box-shadow: 0 24px 58px rgba(24, 28, 37, 0.08) !important;
  backdrop-filter: blur(18px) saturate(132%);
}

.hero-copy {
  align-items: flex-start;
  text-align: left;
}

.kicker,
.hero-kicker-bottom,
.catalog-tag,
.workflow-card .card-kicker,
.professional-card .card-kicker {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #c34a3d !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}

h1,
h2,
.hero-copy h1,
.hero-title-compact,
.section-head h1,
.section-head h2,
.catalog-page .section-head h1,
.catalog-page .section-head h2,
.section#how .section-head h2,
.section#professionals .section-head h2,
.section#tramites .section-head h2,
.section#reviews .section-head h2,
.service-hero-overlay h1,
.review-card h3 {
  color: #171f29 !important;
  text-shadow: none !important;
}

.sub,
.hero-points li,
.section-head p,
.section#how .section-head p,
.section#professionals .section-head p,
.section#tramites .section-head p,
.section#reviews .section-head p,
.catalog-page .section-head p,
.review-card p,
.contact-legal-floating,
.contact-legal-floating p,
.ia-floating-panel,
.ia-floating-panel p,
.ia-highlight-card .ia-copy p,
.workflow-card p,
.professional-card p,
.professional-callout p {
  color: rgba(30, 39, 53, 0.7) !important;
  text-shadow: none !important;
}

.hero-title-compact {
  max-width: 17ch;
}

.sub,
.hero-actions,
.hero-points {
  width: 100%;
}

.sub {
  max-width: 62ch;
}

.hero-actions,
.workflow-card .card-links,
.professional-card .card-links,
.ia-page .legal-card .hero-actions {
  justify-content: flex-start;
}

.hero-points li::before {
  color: #c94a39;
}

.itp-card,
.itp-card h2,
.itp-card .itp-caption,
.itp-field label,
.mini-whatsapp p,
.wa-subline {
  color: #1a2230 !important;
  text-shadow: none !important;
}

.itp-form input,
.itp-form select,
.tramite-form input,
.tramite-form textarea,
.tramite-form select {
  border-color: rgba(198, 184, 168, 0.34);
  background: rgba(255, 255, 255, 0.98);
}

.result-box,
.mini-whatsapp,
.selected-service-strip,
.service-doc-item,
.docs-strict-note {
  border-color: rgba(198, 184, 168, 0.26);
  background: rgba(255, 255, 255, 0.72);
}

.section,
.landing-body .section,
.section#tramites,
.section#reviews,
.reviews-layout {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(246, 239, 230, 0.92)) !important;
  border: 1px solid rgba(198, 184, 168, 0.22) !important;
  box-shadow: 0 24px 58px rgba(24, 28, 37, 0.08) !important;
  backdrop-filter: blur(18px) saturate(132%);
}

.section-head-inline {
  justify-items: start;
  text-align: left;
}

.section-head-btn {
  margin-top: 0;
  margin-inline: 0;
}

.top-card,
.catalog-page .catalog-card,
.review-card {
  border: 1px solid rgba(198, 184, 168, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(24, 28, 37, 0.06);
}

.top-card:hover {
  border-color: rgba(201, 74, 57, 0.24);
  box-shadow: 0 22px 42px rgba(24, 28, 37, 0.08);
}

.top-card img {
  border-bottom-color: rgba(198, 184, 168, 0.2);
  background: rgba(247, 243, 236, 0.86);
}

.top-card h3,
.professional-card h3,
.workflow-card h3 {
  color: #18202a;
}

.workflow-card .card-links a,
.professional-card .card-links a,
.professional-pill-row a,
.legal-links a,
.legal-links button,
.contact-pill,
.instagram-link {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(198, 184, 168, 0.22);
  color: #1c2431;
  box-shadow: none;
}

.professional-callout {
  color: #18202a;
}

.professional-callout strong {
  color: #18202a;
}

.service-hero-card {
  border-color: rgba(198, 184, 168, 0.22);
  box-shadow: 0 24px 58px rgba(24, 28, 37, 0.08);
}

.service-hero-overlay {
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(198, 184, 168, 0.24);
  color: #18202a;
}

.hero-price {
  color: #c34a3d;
}

.contact-page .contact-card,
.contact-page .instagram-card,
.contact-page .legal-card,
.catalog-page .section-head,
.contact-page .legal-card,
.ia-page .legal-card {
  text-align: left;
  justify-items: start;
}

.contact-legal-floating {
  padding: 8px 0 18px;
}

.footer,
.footer a,
.contact-page .contact-email-inline,
.contact-page .contact-email-inline a,
.legal-card p,
.legal-card a {
  color: rgba(30, 39, 53, 0.72);
}

.cookie-banner {
  background: rgba(24, 31, 43, 0.94);
  border-color: rgba(111, 160, 228, 0.24);
}

@media (max-width: 1100px) {
  .nav-row {
    padding: 14px 16px;
  }

  .nav-links {
    display: none;
  }

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

  .nav-menu {
    display: grid;
    gap: 10px;
    margin-top: 10px;
    padding: 16px;
    border: 1px solid rgba(198, 184, 168, 0.22);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 40px rgba(24, 28, 37, 0.08);
  }

  .nav-menu a {
    color: #1c2431;
    text-decoration: none;
    font-weight: 700;
  }
}

@media (max-width: 820px) {
  .hero-copy,
  .itp-card,
  .section,
  .instagram-card,
  .contact-card,
  .legal-card,
  .ia-highlight-card,
  .ia-nova-card,
  .workflow-card,
  .professional-card,
  .professional-callout,
  .catalog-page .catalog-card {
    border-radius: 24px;
  }

  .section-head-inline,
  .catalog-page .section-head,
  .contact-page .legal-card,
  .contact-page .contact-card,
  .contact-page .instagram-card {
    justify-items: start;
    text-align: left;
  }
}

.ia-floating-panel .hero-points {
  width: min(940px, 100%);
  margin: 18px auto 0;
  transform: translateX(20px);
  color: rgba(250, 253, 255, 0.94);
  text-align: left;
}

.ia-floating-panel .hero-points li {
  color: rgba(250, 253, 255, 0.94);
}

.ia-floating-panel .hero-actions {
  justify-content: center;
}

.status-list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.inline-wa {
  margin-top: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .landing-backdrop-slide {
    transition: opacity 0.2s linear;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .contact-grid,
  .top-grid,
  .catalog-grid,
  .report-grid--four,
  .report-grid--two,
  .service-docs-grid {
    grid-template-columns: 1fr;
  }

  .section-head-inline {
    flex-direction: column;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .review-nav {
    width: 100%;
  }

  .reviews-cta {
    flex-direction: column;
  }

  .how-grid,
  .professionals-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .landing-backdrop-slide {
    background-position: center 68%;
    filter: saturate(1.02) brightness(0.56);
  }

  .nav-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0 0;
    border-radius: 22px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .tramites-page .nav-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 8px 10px;
  }

  .tramites-page .nav-back {
    justify-self: start;
    min-height: 34px;
    padding: 0 10px;
    max-width: 32vw;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.86rem;
  }

  .tramites-page .brand-with-mark {
    justify-self: center;
  }

  .nav-row.has-dropdown-nav .nav-menu {
    display: none;
    width: 100%;
    margin-top: 2px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(6, 15, 28, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 44px rgba(2, 8, 18, 0.36);
    backdrop-filter: blur(12px) saturate(125%);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nav-row.has-dropdown-nav .nav-menu__cta,
  .nav-row.has-dropdown-nav .nav-menu__links,
  .nav-row.has-dropdown-nav .nav-menu__extra {
    display: grid;
    gap: 8px;
  }

  .nav-row.has-dropdown-nav .nav-menu__cta {
    grid-template-columns: 1fr;
  }

  .nav-row.has-dropdown-nav .nav-menu__links,
  .nav-row.has-dropdown-nav .nav-menu__extra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-row.has-dropdown-nav .nav-menu__cta .btn,
  .nav-row.has-dropdown-nav .nav-menu__cta a {
    min-height: 54px;
    border-radius: 16px;
    font-size: 0.95rem;
    width: 100%;
  }

  .nav-row.has-dropdown-nav .nav-menu__extra a {
    min-height: 42px;
    font-size: 0.84rem;
    padding-inline: 12px;
  }

  .nav-row.is-nav-open .nav-menu {
    display: grid;
  }

  .nav-menu__links,
  .nav-menu__cta {
    display: grid;
    gap: 8px;
  }

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

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

  .nav-menu a,
  .nav-menu button {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #f6fbff;
    text-decoration: none;
    font: inherit;
    font-weight: 700;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible,
  .nav-menu button:hover,
  .nav-menu button:focus-visible {
    background: rgba(255, 255, 255, 0.14);
  }

  .brand-with-mark {
    align-items: center;
  }

  .brand-with-mark img {
    width: min(198px, 58vw);
    margin-bottom: -22px;
  }

  .brand-with-mark span {
    font-size: 0.96rem;
    text-align: center;
  }

  .tramites-page .brand-with-mark img {
    width: min(148px, 42vw);
    margin-bottom: -14px;
  }

  .tramites-page .brand-with-mark span {
    font-size: 0.86rem;
  }

  .itp-form {
    grid-template-columns: 1fr;
  }

  .selected-service-strip,
  .nova-card,
  .ia-nova-card {
    grid-template-columns: 1fr;
  }

  .tramite-form {
    grid-template-columns: 1fr;
  }

  .itp-form .full,
  .itp-form .full-check,
  .full-span {
    grid-column: span 1;
  }

  .mini-whatsapp-actions,
  .instagram-list,
  .cookie-actions {
    flex-direction: column;
  }

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

  .mini-whatsapp-actions .btn {
    width: 100%;
  }

  .wa-subline {
    white-space: normal;
  }

  .nova-card,
  .nova-card .nova-copy {
    text-align: center;
    justify-items: center;
  }

  .nova-card .hero-actions {
    justify-content: center;
  }

  animated-avatar.nova-visual,
  animated-avatar.ia-nova-avatar {
    max-width: 360px;
    margin-inline: auto;
  }

  .ia-page .legal-card .hero-points,
  .ia-floating-panel .hero-points {
    padding-left: 0;
    transform: none;
  }

  .top-grid,
  .catalog-grid,
  .report-grid {
    gap: 12px;
  }

  .top-card {
    border-radius: 14px;
  }

  .top-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    padding: 0;
    background: rgba(240, 247, 255, 0.1);
  }

  .top-card-content {
    padding: 6px 10px 8px;
    min-height: 0;
  }

  .top-card h3 {
    font-size: 0.93rem;
  }

  .top-card p {
    margin-top: 4px;
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .catalog-price {
    font-size: 0.86rem;
  }

  .workflow-card,
  .professional-card,
  .professional-callout {
    padding: 18px;
  }

  .workflow-card__head {
    gap: 10px;
  }

  .workflow-card__head h3 {
    font-size: 1rem;
  }

  .workflow-card p,
  .professional-card p,
  .professional-callout p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .professional-card--center p {
    max-width: 100%;
  }

  .professional-pill-row a,
  .workflow-card .card-links a,
  .professional-card .card-links a {
    font-size: 0.8rem;
  }
}
.nav-row.has-dropdown-nav .nav-menu__cta .btn.secondary {
  background: linear-gradient(135deg, #109f94 0%, #16b2a5 55%, #1dc5b6 100%) !important;
  border-color: rgba(111, 238, 225, 0.46) !important;
  color: #f5fffd !important;
  box-shadow: 0 12px 26px rgba(11, 120, 108, 0.32) !important;
}

@media (max-width: 980px) {
  .nav-row.has-dropdown-nav .nav-menu__links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: dense !important;
  }
}

/* Mobile polish layer: landing + ITP UX */
@media (max-width: 820px) {
  .landing-body {
    -webkit-text-size-adjust: 100%;
  }

  .wrap {
    width: min(100% - 16px, 1200px);
  }

  .topbar {
    padding-top: calc(env(safe-area-inset-top, 0px) + 6px);
  }

  .hero {
    padding-top: 8px;
  }

  .hero-grid {
    gap: 12px;
    align-items: stretch;
  }

  .hero-copy,
  .itp-card,
  .section,
  .contact-card,
  .legal-card {
    border-radius: 18px;
  }

  .hero-copy {
    padding: 18px 16px;
  }

  .hero-title-compact {
    font-size: clamp(1.78rem, 8.6vw, 2.34rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .sub {
    font-size: 1rem;
    line-height: 1.45;
    text-wrap: pretty;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 50px;
    border-radius: 14px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points li {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .hero-kicker-bottom {
    letter-spacing: 0.11em;
  }

  .itp-card {
    padding: 18px 16px 16px;
  }

  .itp-card h2 {
    font-size: clamp(2rem, 8vw, 2.52rem);
    line-height: 0.95;
  }

  .itp-caption {
    margin-bottom: 12px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .itp-form {
    gap: 12px;
  }

  .itp-field {
    gap: 7px;
  }

  .itp-field label {
    font-size: 0.93rem;
    line-height: 1.3;
  }

  .itp-form input,
  .itp-form select {
    min-height: 52px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .itp-form button.full {
    min-height: 54px;
    border-radius: 14px;
    font-size: 1.04rem;
  }

  .result-box {
    margin-top: 10px;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .mini-whatsapp {
    margin-top: 12px;
    padding: 14px;
    border-radius: 14px;
  }

  .wa-title-centered {
    font-size: 1.1rem;
  }

  .wa-subline {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .mini-whatsapp-actions .btn {
    min-height: 50px;
    border-radius: 12px;
  }

  .section {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .section-head-inline {
    gap: 12px;
    align-items: stretch;
  }

  .section-head h1,
  .section-head h2 {
    font-size: clamp(1.42rem, 6.5vw, 1.88rem);
    line-height: 1.12;
    text-wrap: balance;
  }

  .section-head p {
    font-size: 0.96rem;
    line-height: 1.5;
    text-wrap: pretty;
  }

  .section-head-btn {
    min-height: 46px;
  }

  .top-grid,
  .how-grid,
  .professionals-grid {
    gap: 10px;
  }

  .top-card,
  .workflow-card,
  .professional-card,
  .professional-callout,
  .review-card,
  .contact-card,
  .legal-card {
    border-radius: 16px;
  }

  .top-card-content {
    padding: 10px 12px 12px;
  }

  .top-card h3 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .top-card p {
    margin-top: 4px;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .workflow-card,
  .professional-card,
  .professional-callout {
    padding: 16px;
    gap: 10px;
  }

  .workflow-card h3,
  .professional-card h3 {
    font-size: 1.04rem;
  }

  .workflow-card p,
  .professional-card p,
  .professional-callout p {
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .workflow-card .card-links a,
  .professional-card .card-links a,
  .professional-pill-row a {
    min-height: 34px;
    font-size: 0.79rem;
  }

  .reviews-carousel {
    gap: 10px;
  }

  .review-card {
    padding: 16px;
  }

  .reviews-cta .btn {
    width: 100%;
    min-height: 46px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 12px, 1200px);
  }

  .nav-row {
    border-radius: 18px;
    gap: 8px;
    padding-top: 4px;
  }

  .brand-with-mark img {
    width: min(186px, 60vw);
    margin-bottom: -18px;
  }

  .brand-with-mark span {
    font-size: 0.9rem;
  }

  .nav-row.has-dropdown-nav .nav-menu {
    padding: 12px;
    border-radius: 16px;
    gap: 10px;
  }

  .nav-row.has-dropdown-nav .nav-menu__links,
  .nav-row.has-dropdown-nav .nav-menu__extra,
  .nav-menu__links,
  .nav-menu__cta {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 16px 14px;
  }

  .hero-title-compact {
    font-size: clamp(1.64rem, 9vw, 2.1rem);
  }

  .sub {
    font-size: 0.96rem;
  }

  .itp-card {
    padding: 16px 14px 14px;
  }

  .itp-card h2 {
    font-size: clamp(1.7rem, 9.8vw, 2.12rem);
  }

  .itp-caption {
    font-size: 0.92rem;
  }

  .itp-form input,
  .itp-form select,
  .itp-form button {
    font-size: 16px;
  }

  .itp-field label {
    font-size: 0.9rem;
  }

  .section {
    padding: 16px 12px;
  }

  .section-head h1,
  .section-head h2 {
    font-size: clamp(1.28rem, 8vw, 1.66rem);
  }

  .section-head p {
    font-size: 0.92rem;
  }

  .workflow-card,
  .professional-card,
  .professional-callout,
  .review-card,
  .contact-card,
  .legal-card {
    padding: 14px;
  }

  .review-nav {
    min-height: 42px;
  }
}

.tramite-form input[readonly],
.tramite-form input[aria-readonly="true"] {
  background: rgba(240, 244, 249, 0.92);
  color: rgba(20, 31, 49, 0.9);
  border-color: rgba(148, 170, 196, 0.72);
  cursor: not-allowed;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.itp-lock-note {
  border: 1px solid rgba(36, 68, 102, 0.16);
  background: linear-gradient(180deg, rgba(243, 247, 251, 0.88) 0%, rgba(232, 240, 249, 0.84) 100%);
  border-radius: 16px;
  padding: 14px 16px;
}

.itp-lock-note strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.itp-lock-note p {
  margin: 0;
  color: rgba(21, 35, 58, 0.8);
  line-height: 1.45;
}

.iae-exemption-toggle {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 16px;
  white-space: normal;
  text-align: left;
}

.iae-exemption-panel {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid rgba(123, 159, 196, 0.26);
  background: rgba(248, 251, 255, 0.84);
  padding: 14px;
}

.iae-exemption-panel[hidden] {
  display: none !important;
}

.iae-exemption-panel label {
  font-weight: 700;
  color: #17304f;
}

.iae-exemption-panel small {
  display: block;
  margin-top: 6px;
  color: rgba(26, 45, 71, 0.76);
}

.iae-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(4, 13, 28, 0.74);
  backdrop-filter: blur(16px);
}

.iae-popup-card {
  width: min(100%, 560px);
  border-radius: 24px;
  border: 1px solid rgba(192, 212, 234, 0.34);
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.98) 0%, rgba(232, 239, 248, 0.98) 100%);
  box-shadow: 0 30px 70px rgba(2, 8, 18, 0.42);
  padding: 22px;
}

.iae-popup-card .card-kicker {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d6a6a;
}

.iae-popup-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: #11233d;
}

.iae-popup-card p {
  color: rgba(18, 30, 49, 0.82);
  line-height: 1.55;
}

.iae-popup-phone {
  font-weight: 800;
  color: #0f4f7d;
}

/* 2026-05 editorial public shell v2 */
body.landing-body {
  --landing-paper: #fcf7f0;
  --landing-card: rgba(255, 252, 247, 0.96);
  --landing-line: rgba(118, 102, 84, 0.16);
  --landing-shadow: 0 24px 60px rgba(39, 31, 22, 0.1);
  background: linear-gradient(180deg, #f7f2ea 0%, #f3ede5 100%);
  color: #19202b;
}

.landing-body .landing-backdrop {
  opacity: 0.2;
  filter: saturate(0.82);
}

.landing-body .landing-backdrop-overlay {
  background:
    linear-gradient(180deg, rgba(247, 242, 234, 0.92) 0%, rgba(247, 242, 234, 0.7) 24%, rgba(247, 242, 234, 0.8) 100%);
}

.landing-body .landing-backdrop-shine {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.72), transparent 38%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.56), transparent 34%);
}

.landing-body .wrap {
  width: min(1460px, calc(100vw - 32px));
}

.landing-body .topbar {
  position: sticky;
  top: 14px;
  z-index: 40;
  padding-top: 18px;
}

.landing-body .nav-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 36px;
  border: 1px solid rgba(149, 130, 111, 0.16);
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 18px 46px rgba(39, 31, 22, 0.08);
  backdrop-filter: blur(18px) saturate(128%);
}

.landing-body .nav-row__lead {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.editorial-brand__wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.editorial-brand__app-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(8, 14, 26, 0.18);
}

.editorial-brand__title {
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111924;
}

.editorial-brand__sub {
  position: relative;
  width: 100%;
  margin-top: 2px;
  padding-top: 3px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: #c94a39;
  text-align: center;
}

.editorial-brand__sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 14px;
  height: 1px;
  background: rgba(201, 74, 57, 0.72);
  transform: translateX(-50%);
}

.landing-body .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-body .nav-links a {
  padding: 0.88rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(149, 130, 111, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: #222a35;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: none;
}

.landing-body .nav-links a:hover,
.landing-body .nav-links a:focus-visible {
  background: rgba(246, 239, 231, 0.94);
  color: #111924;
  transform: translateY(-1px);
}

.landing-body .nav-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.history-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 8px;
  min-height: 44px;
  min-width: 140px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(149, 130, 111, 0.16);
  background: rgba(255, 255, 255, 0.8);
  color: #1e2530;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(39, 31, 22, 0.08);
  white-space: nowrap;
}

.history-back:hover,
.history-back:focus-visible {
  background: rgba(246, 239, 231, 0.96);
  color: #111924;
}

.landing-body .hero,
.landing-body .section {
  padding-top: 26px;
  padding-bottom: 22px;
}

.landing-body .hero-grid,
.landing-body .contact-grid,
.landing-body .ia-grid {
  gap: 22px;
}

.landing-body .hero-copy,
.landing-body .itp-card,
.landing-body .top-card,
.landing-body .workflow-card,
.landing-body .contact-card,
.landing-body .instagram-card,
.landing-body .legal-card,
.landing-body .catalog-block,
.landing-body .service-hero-card,
.landing-body .mini-whatsapp,
.landing-body .ia-highlight-card,
.landing-body .ia-nova-card {
  border: 1px solid var(--landing-line);
  border-radius: 38px;
  background: var(--landing-card);
  box-shadow: var(--landing-shadow);
}

.landing-body .hero-copy,
.landing-body .itp-card {
  padding: clamp(28px, 3vw, 42px);
}

.landing-body .hero-copy,
.landing-body .itp-card,
.landing-body .legal-card,
.landing-body .catalog-block,
.landing-body .service-hero-card,
.landing-body .ia-highlight-card,
.landing-body .ia-nova-card {
  position: relative;
  overflow: hidden;
}

.landing-body .hero-copy::before,
.landing-body .itp-card::before,
.landing-body .legal-card::before,
.landing-body .catalog-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 30%),
    radial-gradient(circle at bottom right, rgba(223, 207, 190, 0.18), transparent 28%);
}

.landing-body .hero-title-compact,
.landing-body .tramite-title,
.landing-body .service-hero-overlay h1,
.landing-body .ia-highlight-card h1 {
  color: #111924;
  font-size: clamp(2.85rem, 4.2vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.landing-body .hero-copy .sub,
.landing-body .itp-caption,
.landing-body .service-hero-overlay p,
.landing-body .legal-card p,
.landing-body .contact-card p,
.landing-body .instagram-card p {
  color: #616a77;
  font-size: 1.05rem;
  line-height: 1.7;
}

.landing-body .hero-points li {
  color: #25303e;
  font-weight: 700;
}

.landing-body .hero-copy,
.landing-body .hero-title-compact,
.landing-body .hero-copy .sub,
.landing-body .hero-kicker-bottom {
  text-align: center;
}

.landing-body .kicker,
.landing-body .section-head h2 + p,
.landing-body .catalog-head p {
  color: #6c727e;
}

.landing-body h2,
.landing-body h3 {
  color: #111924;
}

.landing-body .itp-form input,
.landing-body .itp-form select,
.landing-body .itp-form textarea,
.landing-body .contact-card input,
.landing-body .contact-card textarea {
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(149, 130, 111, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.landing-body .itp-form label,
.landing-body .contact-card label {
  color: #222a35;
  font-weight: 800;
}

.landing-body .btn.primary,
.landing-body .btn.secondary,
.landing-body button.btn,
.landing-body .hero-actions .btn,
.landing-body .mini-whatsapp .btn {
  min-height: 54px;
  border-radius: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.landing-body .btn.primary,
.landing-body button.btn-primary,
.landing-body .hero-actions .btn.primary {
  background: linear-gradient(135deg, #c94a39, #aa3024) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: none;
}

.landing-body .btn.secondary,
.landing-body button.btn-secondary,
.landing-body .hero-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.84) !important;
  border: 1px solid rgba(149, 130, 111, 0.16) !important;
  color: #19202b !important;
}

.landing-body .top-card,
.landing-body .catalog-card {
  padding: 0;
}

.landing-body .workflow-card {
  padding: 14px;
}

.landing-body .footer {
  margin-top: 22px;
  color: #6c727e;
}

@media (max-width: 980px) {
  .hero-channel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .landing-body .nav-row {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .landing-body .nav-row__lead {
    justify-content: space-between;
  }

  .landing-body .nav-links,
  .landing-body .nav-cta {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .landing-body .wrap {
    width: min(100vw - 18px, 100%);
  }

  .landing-body .nav-row {
    padding: 14px 16px;
    border-radius: 28px;
  }

  .landing-body .hero-copy,
  .landing-body .itp-card,
  .landing-body .legal-card,
  .landing-body .catalog-block,
  .landing-body .service-hero-card,
  .landing-body .contact-card,
  .landing-body .instagram-card,
  .landing-body .ia-highlight-card,
  .landing-body .ia-nova-card {
    border-radius: 28px;
  }

  .landing-body .hero-title-compact,
  .landing-body .tramite-title,
  .landing-body .service-hero-overlay h1,
  .landing-body .ia-highlight-card h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }
}

.landing-body .cookie-banner {
  border: 1px solid rgba(149, 130, 111, 0.16);
  border-radius: 22px;
  background: rgba(28, 35, 45, 0.94);
  box-shadow: 0 20px 44px rgba(24, 18, 13, 0.22);
}

.landing-body .cookie-banner p,
.landing-body .cookie-banner a {
  color: #f5f0e8;
}

.landing-body .cookie-actions button {
  min-height: 42px;
  border-radius: 14px;
}

/* 2026-05 desktop validation pass: approved compact public layout. */
@media (min-width: 1101px) {
  .landing-body .nav-row--editorial {
    width: min(100vw - 96px, 1780px);
    display: grid;
    grid-template-columns: minmax(230px, 0.78fr) minmax(260px, 0.72fr) minmax(540px, 1.5fr);
    align-items: center;
    gap: 22px;
    padding: 22px 28px;
    border-radius: 38px;
  }

  .landing-body .nav-row__lead {
    display: grid;
    grid-template-columns: auto minmax(170px, 1fr);
    align-items: center;
    gap: 18px;
    min-width: 0;
  }

  .landing-body .nav-row__lead > .editorial-brand:first-child {
    grid-column: auto;
  }

  .landing-body .editorial-brand {
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    min-width: 176px;
  }

  .landing-body .editorial-brand__title {
    letter-spacing: -0.045em;
  }

  .landing-body .editorial-brand__sub {
    align-self: center;
    letter-spacing: 0.44em;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 850;
  }

  .landing-body .nav-links--primary {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .landing-body .nav-links--primary a {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .landing-body .nav-cta--stacked {
    display: grid;
    grid-template-columns: minmax(160px, 0.85fr) minmax(190px, 1fr) minmax(200px, 1fr);
    align-items: center;
    gap: 14px;
  }

  .landing-body .public-nav-stack {
    display: grid;
    justify-items: center;
    gap: 7px;
  }

  .landing-body .public-nav-subrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .landing-body .public-nav-main {
    width: 100%;
    min-height: 52px !important;
    padding-inline: 18px !important;
    border-radius: 18px !important;
    white-space: nowrap;
    font-size: clamp(0.82rem, 0.75vw, 1rem);
  }

  .landing-body .public-nav-sublink {
    min-height: 34px;
    padding: 4px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(149, 130, 111, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: #9f4034;
    font-family: "Snell Roundhand", "Brush Script MT", cursive;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }

}

@media (min-width: 1180px) {
  .landing-body .hero-grid {
    grid-template-columns: minmax(520px, 0.98fr) minmax(560px, 0.9fr);
    align-items: start;
  }

  .landing-body .itp-card {
    padding: 26px 32px 28px;
  }

  .landing-body .itp-card h2 {
    margin-bottom: 6px;
    font-size: clamp(2.35rem, 3.1vw, 3.25rem);
    line-height: 0.98;
    text-align: center;
  }

  .landing-body .itp-caption {
    max-width: 760px;
    margin: 0 auto 14px;
    font-size: 0.96rem;
    line-height: 1.45;
    text-align: center;
  }

  .landing-body .itp-form {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 9px 12px;
    align-items: end;
  }

  .landing-body .itp-field--third {
    grid-column: span 2;
  }

  .landing-body .itp-field--brand {
    order: 1;
  }

  .landing-body .itp-field--model {
    order: 2;
  }

  .landing-body .itp-field--engine {
    order: 3;
  }

  .landing-body .itp-field--vehicle {
    order: 4;
  }

  .landing-body .itp-field--year {
    order: 5;
  }

  .landing-body .itp-field--price {
    order: 6;
  }

  .landing-body .itp-field--region {
    grid-column: span 4;
    order: 7;
  }

  .landing-body .itp-field--submit {
    grid-column: span 2;
    order: 8;
  }

  .landing-body .itp-form label {
    min-height: 0;
    margin-bottom: 4px;
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .landing-body .itp-form input,
  .landing-body .itp-form select {
    min-height: 45px;
    border-radius: 14px;
    font-size: 0.91rem;
    padding: 0 14px;
  }

  .landing-body .itp-form button.full {
    min-height: 45px;
    border-radius: 14px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .landing-body .itp-inline-reviews {
    margin-top: 14px;
    padding: 15px 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(149, 130, 111, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    text-align: center;
  }

  .landing-body .itp-inline-reviews span,
  .landing-body .itp-inline-reviews p {
    color: #69727f;
    font-weight: 700;
  }

  .landing-body .itp-inline-reviews strong {
    display: block;
    margin: 2px 0;
    color: #e6a129;
    letter-spacing: 0.08em;
  }

  .landing-body .itp-inline-reviews p {
    margin: 0;
    font-size: 0.9rem;
  }

  .landing-body .itp-inline-reviews a {
    min-height: 38px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fff;
    color: #17202d;
    font-weight: 850;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(149, 130, 111, 0.13);
  }

  .landing-body .mini-whatsapp {
    margin-top: 12px;
    padding: 16px 18px;
    border-radius: 24px;
  }

  .landing-body .mini-whatsapp h3 {
    margin-bottom: 4px;
    font-size: 1.26rem;
  }

  .landing-body .mini-whatsapp .wa-subline {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .landing-body .mini-whatsapp-actions {
    gap: 10px;
  }

  .landing-body .mini-whatsapp .btn {
    min-height: 42px;
    border-radius: 16px;
    font-size: 0.84rem;
  }
}

.landing-body #tramites .section-head-inline,
.landing-body #how .section-head-inline,
.landing-body #professionals .section-head-inline,
.landing-body .reviews-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

.landing-body #tramites .section-head-inline > div,
.landing-body #how .section-head-inline > div,
.landing-body #professionals .section-head-inline > div,
.landing-body .reviews-head {
  max-width: 980px;
  margin-inline: auto;
}

.landing-body #how .section-head-inline h2,
.landing-body #how .section-head-inline p,
.landing-body #professionals .section-head-inline h2,
.landing-body #professionals .section-head-inline p {
  color: #111924 !important;
  text-shadow: none !important;
}

.landing-body .section-head-btn {
  justify-self: center;
}

.contact-page .contact-card,
.contact-page .instagram-card,
.contact-page .legal-card {
  text-align: center;
  justify-items: center;
}

.contact-page .contact-wa-row,
.contact-page .instagram-list,
.contact-page .legal-links {
  justify-content: center;
}

.contact-page .contact-email-list {
  padding-left: 0;
  list-style: none;
}

.ia-page .ia-highlight-card,
.ia-page .ia-nova-card,
.ia-page .ia-floating-panel {
  text-align: center;
}

.ia-page .ia-highlight-card,
.ia-page .ia-nova-card {
  align-items: center;
}

.ia-page .dora-whatsapp-visual {
  width: min(380px, 33vw);
  max-height: 640px;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: normal;
  filter: drop-shadow(0 26px 44px rgba(14, 24, 41, 0.18));
}

.ia-page .ia-floating-panel .hero-points {
  max-width: 980px;
  margin: 22px auto;
  text-align: left;
}

.ia-page .ia-floating-panel .hero-actions {
  justify-content: center;
}

.ia-page .dora-badge-wrap {
  margin: 8px 0 6px;
}

.ia-page .dora-badge-visual {
  width: 168px;
  max-width: 46%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  background: transparent;
}

.ia-page .nova-card {
  position: relative;
  overflow: hidden;
}

.ia-page .nova-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 36%, rgba(255, 255, 255, 0) 0 26%, rgba(245, 240, 231, 0.24) 54%, rgba(245, 240, 231, 0.94) 100%);
  pointer-events: none;
}

.ia-page .nova-card > * {
  position: relative;
  z-index: 1;
}

/* 2026-05 mobile nav validation: compact sticky bar with every link inside the menu. */
@media (max-width: 820px) {
  .landing-body .topbar {
    position: sticky;
    top: calc(env(safe-area-inset-top, 0px) + 6px);
    z-index: 90;
    padding: 8px 0 2px;
  }

  .landing-body .nav-row,
  .landing-body .nav-row--editorial {
    width: min(100vw - 18px, 100%);
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 12px 12px 12px 16px !important;
    border-radius: 24px !important;
  }

  .landing-body .nav-row__lead {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    min-width: 0;
  }

  .landing-body .nav-row__lead .history-back,
  .landing-body .nav-row__lead .nav-back {
    display: none !important;
  }

  .landing-body .editorial-brand {
    min-width: 0;
    align-items: flex-start;
    text-align: left;
  }

  .landing-body .editorial-brand__title {
    font-size: clamp(1.18rem, 5.1vw, 1.58rem);
    letter-spacing: -0.025em;
    white-space: nowrap;
  }

  .landing-body .editorial-brand__sub {
    align-self: center;
    padding-left: 0.42em;
    letter-spacing: 0.42em;
    font-size: clamp(0.72rem, 3.4vw, 0.96rem);
    line-height: 1.05;
    text-align: center;
  }

  .landing-body .nav-links,
  .landing-body .nav-links--primary,
  .landing-body .nav-cta,
  .landing-body .nav-cta--stacked {
    display: none !important;
  }

  .landing-body .nav-toggle {
    display: inline-flex !important;
    justify-self: end;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(149, 130, 111, 0.16);
    background: rgba(255, 255, 255, 0.84);
    color: #17202d;
    box-shadow: 0 12px 28px rgba(39, 31, 22, 0.08);
  }

  .landing-body .nav-row.has-dropdown-nav .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: min(72vh, 540px);
    overflow-y: auto;
    overscroll-behavior: contain;
    display: none !important;
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgba(149, 130, 111, 0.18);
    background: rgba(255, 252, 247, 0.98);
    box-shadow: 0 24px 54px rgba(39, 31, 22, 0.16);
    backdrop-filter: blur(18px) saturate(130%);
  }

  .landing-body .nav-row.is-nav-open .nav-menu {
    display: grid !important;
  }

  .landing-body .nav-menu__meta:empty {
    display: none;
  }

  .landing-body .nav-menu__meta,
  .landing-body .nav-menu__links,
  .landing-body .nav-menu__cta {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .landing-body .nav-menu__cta {
    grid-template-columns: 1fr;
  }

  .landing-body .nav-menu__cta .public-nav-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .landing-body .nav-menu__cta .public-nav-subrow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .landing-body .nav-menu a,
  .landing-body .nav-menu button,
  .landing-body .nav-menu .btn,
  .landing-body .nav-menu .public-nav-main,
  .landing-body .nav-menu .public-nav-sublink,
  .landing-body .nav-menu .history-back,
  .landing-body .nav-menu .nav-back {
    width: 100%;
    min-height: 42px !important;
    padding: 0 12px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(149, 130, 111, 0.14) !important;
    background: rgba(255, 255, 255, 0.82) !important;
    color: #17202d !important;
    box-shadow: none !important;
    font-family: "Sora", sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.05 !important;
    text-align: center;
    text-decoration: none;
    white-space: normal;
  }

  .landing-body .nav-menu .btn.primary,
  .landing-body .nav-menu .public-nav-main.primary,
  .landing-body .nav-menu a[href="/login"] {
    background: linear-gradient(135deg, #c94a39, #aa3024) !important;
    color: #fff !important;
  }
}

@media (max-width: 480px) {
  .landing-body .nav-row,
  .landing-body .nav-row--editorial {
    width: min(100vw - 12px, 100%);
    padding: 10px 10px 10px 13px !important;
    border-radius: 22px !important;
  }

  .landing-body .nav-toggle {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.94rem;
  }

  .landing-body .nav-menu__links,
  .landing-body .nav-menu__meta {
    grid-template-columns: 1fr;
  }
}

/* 2026-05 desktop polish: compact hero, coherent centered sections and DORA/NOVA split. */
@media (min-width: 1180px) {
  .landing-body .hero-copy {
    justify-content: flex-start;
    padding: 42px 44px 34px;
  }

  .landing-body .hero-title-compact {
    width: min(100%, 820px);
    max-width: none;
    margin: 0 auto 18px;
    font-size: clamp(2.35rem, 2.55vw, 3.05rem);
    line-height: 0.98;
    letter-spacing: -0.058em;
    text-align: center;
  }

  .landing-body .hero-copy .sub {
    max-width: 820px;
    margin-inline: auto;
    font-size: 0.98rem;
    line-height: 1.55;
    text-align: center;
  }

  .landing-body .hero-points {
    width: min(100%, 820px);
    gap: 7px;
  }

  .landing-body .hero-points li {
    font-size: 0.93rem;
    line-height: 1.36;
  }

  .landing-body .hero-kicker-bottom {
    align-self: center;
    margin-top: auto;
  }

  .landing-body #how .section-head-inline,
  .landing-body #professionals .section-head-inline,
  .landing-body #tramites .section-head-inline {
    justify-items: center;
    text-align: center;
  }

  .landing-body #how .section-head-inline p,
  .landing-body #professionals .section-head-inline p,
  .landing-body #tramites .section-head-inline p {
    max-width: none;
    margin-inline: auto;
    white-space: normal;
    text-align: center;
  }

  .landing-body .workflow-card {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .landing-body .workflow-card__head {
    width: 100%;
    align-items: center;
  }

  .landing-body .workflow-card p {
    max-width: 38ch;
    margin-inline: auto;
  }

  .landing-body .workflow-card .card-links {
    justify-content: center;
  }
}

.center-ia-page .ia-highlight-card,
.center-ia-page .ia-nova-card,
.center-ia-page .ia-floating-panel {
  text-align: center;
}

.center-ia-page .nova-card .nova-copy {
  justify-items: center;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.center-ia-page .nova-card .hero-actions {
  justify-content: center;
}

.center-ia-page .ia-highlight-card p,
.center-ia-page .ia-nova-card p {
  margin-inline: auto;
  text-align: center;
}

.center-ia-page .ia-nova-card {
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 230px;
  align-items: center;
}

.center-ia-page .ia-nova-copy {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding-left: 0;
}

.center-ia-page .ia-nova-copy h2 {
  font-size: clamp(2rem, 3.1vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.center-ia-page .ia-nova-copy p {
  max-width: 780px;
  color: rgba(22, 29, 40, 0.78);
}

.center-ia-page .ia-floating-panel {
  width: min(1280px, 100%);
  padding: 36px 36px 42px;
  border: 1px solid var(--landing-line);
  border-radius: 38px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--landing-shadow);
  color: #17202d;
  text-shadow: none;
}

.center-ia-page .ia-floating-panel h2 {
  color: #111924;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: 0.98;
}

.center-ia-page .ia-floating-panel .hero-points {
  display: grid;
  justify-items: center;
  width: min(100%, 1120px);
  max-width: none;
  margin: 28px auto 30px;
  padding-left: 0;
  text-align: center;
  list-style: none;
}

.center-ia-page .ia-floating-panel .hero-points li {
  width: fit-content;
  max-width: 100%;
  color: #626b77;
  font-size: clamp(1.02rem, 1.3vw, 1.35rem);
  font-weight: 800;
  line-height: 1.34;
  text-align: center;
}

.center-ia-page .ia-floating-panel .hero-actions {
  justify-content: center;
}

/* 2026-05 launch audit: decorative backdrops must never create page overflow. */
html {
  overflow-x: clip;
}

body.landing-body {
  overflow-x: hidden;
}

.landing-backdrop {
  overflow: hidden;
}

/* 2026-05 launch audit: public mobile readability and compact first fold. */
@media (max-width: 820px) {
  .landing-body .hero-grid {
    gap: 14px;
  }

  .landing-body .hero-copy {
    min-height: auto;
    padding: 28px 24px 30px;
  }

  .landing-body .hero-title-compact {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(2rem, 8.2vw, 2.7rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.06em;
  }

  .landing-body .hero-copy .sub {
    font-size: clamp(1rem, 4.4vw, 1.18rem);
    line-height: 1.5;
  }

  .landing-body .hero-points {
    gap: 8px;
  }

  .landing-body .hero-points li {
    font-size: 0.92rem;
    line-height: 1.38;
  }
}

@media (max-width: 480px) {
  .landing-body .hero-copy {
    padding: 24px 20px 28px;
  }

  .landing-body .hero-title-compact {
    font-size: clamp(1.72rem, 8.2vw, 2.05rem) !important;
  }

  .landing-body .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .center-ia-page .ia-nova-card {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 16px;
    min-height: 0;
  }

  .center-ia-page .ia-nova-copy {
    width: 100%;
    max-width: 100%;
  }

  .center-ia-page .ia-nova-copy h2,
  .center-ia-page .ia-nova-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* 2026-05-17 safety pass: compact mobile first fold + denser ITP form. */
@media (max-width: 760px) {
  .landing-body .hero-copy {
    padding: 20px 16px 22px !important;
    gap: 10px;
  }

  .landing-body .hero-title-compact {
    max-width: 18ch;
    margin: 0 auto 10px;
    font-size: clamp(1.28rem, 5.6vw, 1.66rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.03em !important;
    text-wrap: balance;
  }

  .landing-body .hero-copy .sub {
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .landing-body .hero-points li {
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .landing-body .itp-card {
    padding: 18px 14px 16px !important;
  }

  .landing-body .itp-card h2 {
    font-size: clamp(2.1rem, 8.4vw, 2.54rem) !important;
    margin-bottom: 6px !important;
  }

  .landing-body .itp-caption {
    margin-bottom: 10px !important;
    font-size: 0.92rem !important;
    line-height: 1.34 !important;
  }

  .landing-body .itp-form {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 8px !important;
    align-items: end;
  }

  .landing-body .itp-field {
    grid-column: span 1 !important;
  }

  .landing-body .itp-field--brand { order: 1; }
  .landing-body .itp-field--model { order: 2; }
  .landing-body .itp-field--engine { order: 3; }
  .landing-body .itp-field--price { order: 4; }
  .landing-body .itp-field--vehicle { order: 5; }
  .landing-body .itp-field--year { order: 6; }

  .landing-body .itp-field--region,
  .landing-body .itp-field--submit {
    grid-column: 1 / -1 !important;
  }

  .landing-body .itp-form label {
    margin-bottom: 4px !important;
    font-size: 0.76rem !important;
    line-height: 1.18 !important;
  }

  .landing-body .itp-form input,
  .landing-body .itp-form select {
    min-height: 40px !important;
    padding: 0 11px !important;
    border-radius: 13px !important;
    font-size: 0.94rem !important;
  }

  .landing-body .itp-form button.full {
    min-height: 42px !important;
    border-radius: 13px !important;
    font-size: 0.96rem !important;
    padding-inline: 10px !important;
  }

  .landing-body .itp-inline-reviews {
    margin-top: 10px !important;
    padding: 12px !important;
    gap: 8px !important;
    text-align: left !important;
  }

  .landing-body .itp-inline-reviews a {
    justify-self: start;
  }
}

@media (max-width: 390px) {
  .landing-body .itp-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing-body .itp-field {
    grid-column: 1 / -1 !important;
  }
}

/* 2026-05-17 public mobile header hardening: apply dropdown nav to all public pages, not only landing body. */
@media (max-width: 900px) {
  body:not(.portal-theme) .topbar {
    position: sticky;
    top: calc(env(safe-area-inset-top, 0px) + 6px);
    z-index: 90;
    padding: 8px 0 2px;
  }

  body:not(.portal-theme) .nav-row.nav-row--editorial {
    width: min(100vw - 14px, 100%);
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 10px 14px !important;
    border-radius: 22px !important;
  }

  body:not(.portal-theme) .nav-row__lead {
    display: flex;
    align-items: center;
    min-width: 0;
  }

  body:not(.portal-theme) .nav-row__lead .history-back,
  body:not(.portal-theme) .nav-row__lead .nav-back {
    display: none !important;
  }

  body:not(.portal-theme) .editorial-brand {
    min-width: 0;
    align-items: flex-start;
  }

  body:not(.portal-theme) .editorial-brand__title {
    font-size: clamp(1.16rem, 5vw, 1.5rem);
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  body:not(.portal-theme) .editorial-brand__sub {
    align-self: center;
    padding-left: 0;
    letter-spacing: 0.34em;
    font-size: clamp(0.66rem, 3vw, 0.86rem);
  }

  body:not(.portal-theme) .nav-links,
  body:not(.portal-theme) .nav-links--primary,
  body:not(.portal-theme) .nav-cta,
  body:not(.portal-theme) .nav-cta--stacked {
    display: none !important;
  }

  body:not(.portal-theme) .nav-toggle {
    display: inline-flex !important;
    justify-self: end;
  }

  body:not(.portal-theme) .nav-row.has-dropdown-nav .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none !important;
    max-height: min(72vh, 540px);
    overflow-y: auto;
    gap: 10px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 252, 247, 0.98);
    border: 1px solid rgba(149, 130, 111, 0.18);
    box-shadow: 0 22px 50px rgba(39, 31, 22, 0.14);
    z-index: 100;
  }

  body:not(.portal-theme) .nav-row.is-nav-open .nav-menu {
    display: grid !important;
  }

  body:not(.portal-theme) .nav-menu__meta:empty {
    display: none;
  }

  body:not(.portal-theme) .nav-menu__meta,
  body:not(.portal-theme) .nav-menu__links,
  body:not(.portal-theme) .nav-menu__cta {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body:not(.portal-theme) .nav-menu__cta {
    grid-template-columns: 1fr;
  }

  body:not(.portal-theme) .nav-menu__cta .public-nav-subrow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body:not(.portal-theme) .nav-menu a,
  body:not(.portal-theme) .nav-menu button,
  body:not(.portal-theme) .nav-menu .btn,
  body:not(.portal-theme) .nav-menu .public-nav-main,
  body:not(.portal-theme) .nav-menu .public-nav-sublink {
    width: 100%;
    min-height: 40px !important;
    padding: 0 12px !important;
    border-radius: 14px !important;
    font-size: 0.86rem !important;
  }
}

@media (max-width: 520px) {
  body:not(.portal-theme) .nav-menu__meta,
  body:not(.portal-theme) .nav-menu__links {
    grid-template-columns: 1fr;
  }
}

/* 2026-05-29: keep artwork using the per-card framing variables instead of forcing contain. */
.top-card > img,
.catalog-card > img,
.report-card > img {
  width: 100% !important;
  height: clamp(136px, 9.2vw, 170px) !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: var(--thumb-focus, center center) !important;
  transform: scale(var(--thumb-zoom, 1.04)) !important;
  transform-origin: center center !important;
}

/* 2026-05-17 final launch polish: consistent proportions desktop/mobile without touching business logic. */
.landing-body .hero-title-compact br {
  display: none;
}

/* 2026-05-30 mobile completion layer v3: close the unfinished public/mobile pass. */
@media (max-width: 860px) {
  .professional-access-page .itp-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .professional-access-page .itp-form > label,
  .professional-access-page .itp-form > input,
  .professional-access-page .itp-form > select,
  .professional-access-page .itp-form > button,
  .professional-access-page .itp-form > .full-span,
  .professional-access-page .itp-form > .bot-field {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .professional-access-page .itp-form > label {
    min-height: 0 !important;
    margin: 4px 0 2px !important;
    text-align: left !important;
  }

  .professional-access-page .legal-inline-panel {
    width: 100% !important;
    max-width: none !important;
    margin-top: 6px !important;
  }

  .professional-access-page .rgpd-check {
    grid-template-columns: 20px minmax(0, 1fr) !important;
  }

  .professional-access-page .rgpd-check span {
    display: block !important;
    font-size: 0.94rem !important;
    line-height: 1.42 !important;
  }
}

@media (max-width: 640px) {
  body:not(.portal-theme) .nav-row.is-nav-open {
    z-index: 120 !important;
  }

  body:not(.portal-theme) .nav-row.has-dropdown-nav .nav-menu {
    background: #fffaf4 !important;
    box-shadow: 0 24px 54px rgba(39, 31, 22, 0.18) !important;
    backdrop-filter: none !important;
  }

  body:not(.portal-theme) .nav-menu .btn.secondary,
  body:not(.portal-theme) .nav-menu .public-nav-main.btn.secondary,
  body:not(.portal-theme) .nav-menu .public-nav-sublink {
    background: #ffffff !important;
    color: #17202d !important;
    border-color: rgba(149, 130, 111, 0.16) !important;
  }

  body:not(.portal-theme) .nav-menu__cta .public-nav-stack,
  body:not(.portal-theme) .nav-menu__links,
  body:not(.portal-theme) .nav-menu__meta {
    grid-template-columns: 1fr !important;
  }

  .home-page .professional-callout {
    padding: 16px 14px 18px !important;
    gap: 12px !important;
  }

  .home-page .professional-callout p {
    max-width: 32ch !important;
    margin-inline: auto !important;
  }

  .home-page .professional-pill-row {
    margin-top: 4px !important;
    align-items: center !important;
  }

  .home-page .professional-pill-row a:last-child {
    margin-top: 2px !important;
  }

  .footer-grid--legal {
    padding-top: 14px !important;
    padding-bottom: 22px !important;
    gap: 18px !important;
  }

  .footer-legal-copy {
    max-width: 32ch !important;
    padding-inline: 14px !important;
  }

  .footer-grid--legal .footer-links {
    width: min(100%, 360px) !important;
  }

  .footer-grid--legal .footer-links a,
  .footer-grid--legal .footer-links button {
    min-height: 44px !important;
    font-size: 0.94rem !important;
  }

  .contact-page .legal-card .legal-links {
    width: 100% !important;
    max-width: 360px !important;
    margin-inline: auto !important;
  }
}

@media (min-width: 1100px) {
  .landing-body .hero-title-compact {
    max-width: 11.2ch !important;
    margin-inline: 0 !important;
    font-size: clamp(3.02rem, 4.25vw, 4.2rem) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.028em !important;
    text-wrap: balance;
  }

  .landing-body .section#how .section-head p,
  .landing-body .section#professionals .section-head p {
    max-width: 100% !important;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .landing-body .hero-copy {
    padding-inline: 16px !important;
  }

  .landing-body .hero-title-compact {
    max-width: 10.8ch !important;
    font-size: clamp(2rem, 10.1vw, 2.64rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.03em !important;
    text-wrap: balance;
  }

  .landing-body .hero-copy .sub {
    font-size: 1rem !important;
    line-height: 1.42 !important;
  }

  .landing-body .section#how .section-head,
  .landing-body .section#professionals .section-head {
    text-align: center;
  }

  .landing-body .section#how .section-head p,
  .landing-body .section#professionals .section-head p {
    margin-inline: auto;
    max-width: 100% !important;
  }
}

@media (max-width: 760px) {
  .landing-body .itp-form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .landing-body .itp-field {
    grid-column: span 1 !important;
    margin-bottom: 0 !important;
  }

  .landing-body .itp-field--region,
  .landing-body .itp-field--submit {
    grid-column: 1 / -1 !important;
  }

  .landing-body .itp-inline-reviews {
    text-align: center !important;
    align-items: center !important;
  }

  .landing-body .itp-inline-reviews a {
    justify-self: center !important;
  }
}

@media (max-width: 440px) {
  .landing-body .itp-form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* 2026-05-17 desktop editorial tightening requested by product: keep hero balanced in 3 lines and center CTA. */
@media (min-width: 1100px) {
  .landing-body .hero-title-compact br {
    display: block !important;
  }

  .home-page .hero-title-compact .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  .landing-body .hero-title-compact {
    max-width: 18ch !important;
    font-size: clamp(2.1rem, 3.15vw, 3.1rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.022em !important;
    text-wrap: pretty;
  }

  .landing-body .hero-copy .hero-actions {
    justify-content: center !important;
  }
}

/* 2026-05-18 mobile final polish: compact hero, Google-like stars, cookie controls balance, DORA badge insert. */
@media (max-width: 700px) {
  .landing-body .hero-title-compact {
    max-width: 11.8ch !important;
    font-size: clamp(1.56rem, 8vw, 2.06rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.022em !important;
  }

  .landing-body .hero-copy .sub {
    font-size: 0.95rem !important;
    line-height: 1.38 !important;
  }

  .landing-body .itp-inline-reviews strong {
    color: #fbbc04 !important;
    letter-spacing: 0.03em;
  }

  .landing-body .footer-links {
    justify-content: center !important;
  }

  .landing-body #openCookiePrefs {
    justify-self: center !important;
    margin-inline: auto !important;
    font-weight: 600 !important;
  }

  .ia-page .dora-badge-wrap {
    margin: 6px auto 4px !important;
    display: grid !important;
    place-items: center !important;
  }

  .ia-page .dora-badge-visual {
    width: min(62vw, 210px) !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 28px rgba(11, 28, 64, 0.15);
    background: transparent !important;
  }
}

/* 2026-05-23 compact public catalogue/home cards. */
.home-page .section {
  margin-top: 12px;
  padding: clamp(16px, 2.6vw, 28px);
}

.home-page .section-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 0.98;
}

.home-page .section-head p {
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
}

.home-page #tramites .section-head-btn {
  margin-top: 8px;
  min-height: 46px;
  padding-inline: 22px;
}

.home-page #tramites .top-grid {
  gap: 12px;
  margin-top: 18px;
  align-items: stretch;
}

.home-page #tramites .top-grid > .top-card {
  border-radius: 14px;
  overflow: hidden;
  align-self: stretch;
}

.home-page #tramites .top-card > img {
  width: 100% !important;
  height: clamp(154px, 10.2vw, 184px) !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: var(--thumb-focus, center center) !important;
  transform: scale(var(--thumb-zoom, 1.04)) !important;
  transform-origin: center center !important;
  border: 0 !important;
  border-radius: 14px;
  background: #ffffff !important;
}

.home-page #tramites .top-card-content {
  display: none;
}

.home-page #how {
  margin-top: 10px;
}

.catalog-page .section {
  margin-top: 10px;
  padding: clamp(14px, 2.4vw, 24px);
}

.catalog-page .tramite-title {
  font-size: clamp(2.7rem, 5.4vw, 5.2rem) !important;
  line-height: 0.9;
  width: 100%;
  text-align: center !important;
  margin-inline: auto;
}

.catalog-page .catalog-head p {
  max-width: 760px;
  font-size: clamp(0.95rem, 1.45vw, 1.12rem);
  width: 100%;
  text-align: center !important;
  margin-inline: auto;
}

.catalog-page .catalog-block {
  margin-top: 14px;
}

.catalog-page .report-block {
  margin-top: 22px;
}

.catalog-page .catalog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  margin-top: 14px;
}

.catalog-page .catalog-grid > .catalog-card {
  flex: 0 1 calc((100% - 48px) / 5);
  min-width: 0;
}

.catalog-page .report-grid {
  gap: 12px;
  margin-top: 14px;
}

.catalog-page .report-grid--two {
  max-width: calc(50% - 6px);
  margin-inline: auto;
}

.catalog-page .top-card,
.catalog-page .catalog-card,
.catalog-page .report-card {
  border-radius: 14px;
}

.catalog-page .top-card > img,
.catalog-page .catalog-card > img,
.catalog-page .report-card > img {
  width: 100% !important;
  height: clamp(118px, 8.4vw, 158px) !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: var(--thumb-focus, center center) !important;
  transform: scale(var(--thumb-zoom, 1.08)) !important;
  transform-origin: center center !important;
  border: 0 !important;
  border-radius: 13px 13px 0 0;
  background: #ffffff !important;
}

.catalog-page .report-card > img {
  height: clamp(120px, 9vw, 166px) !important;
}

.catalog-page .top-card-content {
  min-height: auto;
  padding: 8px 10px 10px;
}

.catalog-page .catalog-card .top-card-content,
.catalog-page .report-card .top-card-content {
  min-height: 0;
}

.catalog-page .report-card h3 {
  min-height: 0;
}

.catalog-page .top-card h3 {
  font-size: 0.92rem;
  line-height: 1.18;
}

.catalog-page .top-card p {
  margin-top: 4px;
  font-size: 0.78rem;
  line-height: 1.25;
}

.catalog-page .catalog-price {
  font-size: 0.78rem;
}

@media (max-width: 1200px) {
  .catalog-page .catalog-grid > .catalog-card {
    flex-basis: calc((100% - 24px) / 3);
  }

  .catalog-page .report-grid--two {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .home-page #tramites .top-grid,
  .catalog-page .report-grid--four,
  .catalog-page .report-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .catalog-page .catalog-grid > .catalog-card {
    flex-basis: calc((100% - 12px) / 2);
  }
}

@media (max-width: 520px) {
  .home-page #tramites .top-grid,
  .catalog-page .report-grid--four,
  .catalog-page .report-grid--two {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .catalog-page .catalog-grid > .catalog-card {
    flex-basis: 100%;
  }
}

/* 2026-05-25 legal and compliance system */
.legal-page .section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.legal-card--hero {
  display: grid;
  gap: 18px;
}

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

.legal-meta-grid div,
.legal-inline-panel,
.legal-note {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.3);
  border-radius: 18px;
  padding: 14px 16px;
}

.legal-meta-grid span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.68);
  margin-bottom: 6px;
}

.legal-meta-grid strong,
.footer-legal-title {
  color: #fff;
}

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

.legal-card--doc {
  display: grid;
  gap: 14px;
}

.legal-card--doc .btn {
  justify-self: start;
}

.legal-points-tight,
.legal-links--stack {
  display: grid;
  gap: 10px;
}

.legal-inline-panel h3,
.legal-card table th {
  color: #fff;
}

.legal-inline-panel p,
.legal-inline-copy,
.footer-legal-copy p {
  margin-bottom: 0;
}

.legal-inline-copy {
  margin-top: 14px;
  font-size: 0.86rem;
  color: rgba(226, 232, 240, 0.76);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  font-weight: 700;
}

.footer--legal-premium {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(9, 14, 28, 0.72);
  backdrop-filter: blur(12px);
}

.footer-grid--legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.footer-legal-copy {
  display: grid;
  gap: 10px;
  max-width: 980px;
  justify-items: center;
}

.footer-legal-title {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid--legal .footer-links {
  justify-content: center;
  max-width: 980px;
}

@media (max-width: 980px) {
  .legal-meta-grid,
  .legal-doc-grid,
  .legal-section-grid,
  .footer-grid--legal {
    grid-template-columns: 1fr;
  }

  .footer-grid--legal .footer-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .legal-table,
  .legal-table thead,
  .legal-table tbody,
  .legal-table th,
  .legal-table td,
  .legal-table tr {
    display: block;
  }

  .legal-table thead {
    display: none;
  }

  .legal-table tr {
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    padding: 10px 0;
  }

  .legal-table td {
    border-bottom: 0;
    padding: 8px 0;
  }
}

/* 2026-05-28 stability overrides: final visual rules after legacy layers. */
html,
body {
  overflow-x: hidden;
}

.landing-body {
  overflow-x: hidden;
}

.landing-body .hero-copy {
  align-items: center !important;
  justify-items: center !important;
  text-align: center !important;
}

.landing-body .hero-title-compact {
  max-width: 18ch !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.landing-body .hero-copy .sub {
  max-width: 64ch !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.landing-body .hero-points {
  width: min(100%, 760px) !important;
  margin-inline: auto !important;
}

.landing-body .hero-points li {
  text-align: left !important;
}

.landing-body .hero-channel-grid {
  margin-top: 16px !important;
}

.landing-body .hero-kicker-bottom,
.landing-body .section-head,
.landing-body .section-head-inline,
.landing-body .catalog-head,
.landing-body .reviews-head {
  text-align: center !important;
  justify-items: center !important;
}

.landing-body .hero-kicker-bottom {
  margin-top: 12px !important;
  letter-spacing: 0.16em !important;
}

.landing-body .section-head-inline > div,
.landing-body .catalog-head > div,
.landing-body .reviews-head > div {
  max-width: 980px;
  margin-inline: auto;
}

.landing-body .section-head h1,
.landing-body .section-head h2,
.landing-body .section-head-inline h2,
.landing-body .catalog-head h1,
.landing-body .catalog-head h2,
.landing-body .tramite-title {
  max-width: 18ch;
  margin-inline: auto;
  text-align: center !important;
  white-space: normal !important;
}

.landing-body .section-head p,
.landing-body .section-head-inline p,
.landing-body .catalog-head p {
  max-width: 880px !important;
  margin-inline: auto !important;
  text-align: center !important;
  white-space: normal !important;
}

.landing-body .workflow-card__head {
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
}

.landing-body .workflow-card__head h3 {
  flex: 0 1 auto !important;
}

.landing-body .workflow-card .card-links,
.landing-body .professional-pill-row {
  justify-content: center !important;
}

.home-page #tramites .top-card,
.catalog-page .catalog-card,
.catalog-page .report-card {
  overflow: hidden !important;
}

.home-page #tramites .top-card > img,
.catalog-page .catalog-card > img,
.catalog-page .report-card > img {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: var(--thumb-focus, center center) !important;
  transform: scale(var(--thumb-zoom, 1.04)) !important;
  transform-origin: center center !important;
  background: #ffffff !important;
  border-radius: 14px 14px 0 0 !important;
}

.catalog-page .catalog-card > img,
.home-page #tramites .top-card > img {
  height: clamp(136px, 9.2vw, 170px) !important;
}

.catalog-page .report-card > img {
  height: clamp(146px, 10vw, 184px) !important;
}

.catalog-page .top-card-content,
.catalog-page .catalog-card .top-card-content,
.catalog-page .report-card .top-card-content,
.home-page #tramites .top-card-content {
  min-height: 0 !important;
  padding: 12px 14px 16px !important;
}

.catalog-page .report-card h3 {
  min-height: 0 !important;
}

.footer-grid--legal,
.footer-legal-copy {
  justify-items: center !important;
  text-align: center !important;
}

.footer-grid--legal .footer-links,
.landing-body .footer-links {
  justify-content: center !important;
}

/* 2026-05-30 final mobile/public cleanup: isolate broken public layouts without touching portal internals. */
.home-page .hero-channel-grid {
  margin-top: 14px !important;
  gap: 12px !important;
}

.home-page .hero-kicker-bottom {
  margin-top: 8px !important;
}

@media (min-width: 1100px) {
  .home-page #tramites .top-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .home-page #tramites .top-card > img {
    height: clamp(170px, 11vw, 198px) !important;
  }

  .catalog-page .catalog-card > img {
    height: clamp(152px, 10vw, 190px) !important;
  }

  .catalog-page .report-card > img {
    height: clamp(156px, 10.4vw, 196px) !important;
  }
}

@media (max-width: 900px) {
  body:not(.portal-theme) .nav-menu .btn.secondary,
  body:not(.portal-theme) .nav-menu .public-nav-main.btn.secondary,
  body:not(.portal-theme) .nav-menu .public-nav-sublink {
    background: rgba(255, 255, 255, 0.96) !important;
    color: #17202d !important;
    border-color: rgba(149, 130, 111, 0.18) !important;
    box-shadow: none !important;
  }

  body:not(.portal-theme) .nav-menu .btn.primary,
  body:not(.portal-theme) .nav-menu .public-nav-main.btn.primary,
  body:not(.portal-theme) .nav-menu a[href="/login"] {
    background: linear-gradient(135deg, #c94a39, #aa3024) !important;
    color: #fff !important;
  }

  body:not(.portal-theme) .nav-menu .public-nav-subrow {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px !important;
  }
}

@media (max-width: 860px) {
  .professional-access-page .wrap {
    width: min(100% - 20px, 100%);
  }

  .professional-access-page .itp-card {
    padding: 20px 16px 22px !important;
  }

  .professional-access-page .itp-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .professional-access-page .itp-form > label,
  .professional-access-page .itp-form > input,
  .professional-access-page .itp-form > select,
  .professional-access-page .itp-form > button,
  .professional-access-page .itp-form > .full-span,
  .professional-access-page .itp-form > .bot-field {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .professional-access-page .itp-form > label {
    min-height: 0 !important;
    margin: 2px 0 0 !important;
    justify-content: flex-start !important;
    align-items: center !important;
    font-size: 0.95rem !important;
    line-height: 1.25 !important;
    color: #1e2938 !important;
  }

  .professional-access-page .itp-form > input,
  .professional-access-page .itp-form > select {
    min-height: 48px !important;
    font-size: 0.98rem !important;
    padding-inline: 14px !important;
  }

  .professional-access-page .legal-inline-panel {
    padding: 18px !important;
    border-radius: 18px !important;
    background: rgba(241, 245, 249, 0.92) !important;
    border-color: rgba(189, 199, 211, 0.72) !important;
  }

  .professional-access-page .legal-inline-panel h3,
  .professional-access-page .legal-inline-panel p,
  .professional-access-page .legal-inline-panel a {
    color: #243244 !important;
  }

  .professional-access-page .rgpd-check {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: start !important;
    width: 100% !important;
  }

  .professional-access-page .rgpd-check input {
    margin: 2px 0 0 !important;
    justify-self: center !important;
  }

  .professional-access-page .btn.primary.full {
    min-height: 52px !important;
    font-size: 1rem !important;
  }

  .professional-access-page .result-box {
    margin-top: 14px !important;
  }
}

@media (max-width: 640px) {
  .contact-page .legal-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px !important;
    justify-content: stretch !important;
  }

  .contact-page .legal-links a,
  .contact-page .legal-links button {
    width: 100% !important;
    justify-content: center !important;
    min-height: 44px !important;
  }

  .footer-grid--legal {
    gap: 16px !important;
    padding-bottom: 20px !important;
  }

  .footer-legal-copy {
    gap: 12px !important;
    max-width: 34ch !important;
  }

  .footer-legal-title {
    font-size: 1.08rem !important;
    letter-spacing: 0.12em !important;
  }

  .footer-legal-copy p {
    color: rgba(241, 245, 249, 0.92) !important;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  .footer-grid--legal .footer-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px !important;
    width: min(100%, 420px) !important;
  }

  .footer-grid--legal .footer-links a,
  .footer-grid--legal .footer-links button {
    width: 100% !important;
    min-height: 42px !important;
    padding-inline: 10px !important;
    font-size: 0.92rem !important;
    border-radius: 14px !important;
  }

  .footer-grid--legal .footer-links button:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 220px) !important;
  }

  .ia-page .ia-highlight-card.nova-card {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
    justify-items: center !important;
  }

  .ia-page .dora-whatsapp-visual {
    width: min(100%, 284px) !important;
    max-height: 440px !important;
    margin-inline: auto !important;
    object-position: center top !important;
    transform: none !important;
  }
}

@media (min-width: 901px) {
  .ia-page .ia-highlight-card.nova-card {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px) !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .ia-page .dora-whatsapp-visual {
    width: min(318px, 28vw) !important;
    max-height: 560px !important;
    justify-self: end !important;
    align-self: end !important;
    object-position: center bottom !important;
  }
}

/* 2026-05-30 completion layer: unify public mobile polish and asset framing. */
.editorial-brand__wordmark {
  gap: 0 !important;
}

.editorial-brand__sub {
  margin-top: 0 !important;
  padding-top: 1px !important;
  line-height: 1 !important;
}

.editorial-brand__sub::before {
  top: 0 !important;
  width: 12px !important;
}

.ia-page .ia-highlight-card.nova-card {
  overflow: hidden !important;
}

.ia-page .dora-whatsapp-visual {
  display: block !important;
}

@media (min-width: 901px) {
  .ia-page .dora-whatsapp-visual {
    width: min(364px, 29vw) !important;
    max-height: 600px !important;
    justify-self: end !important;
    align-self: end !important;
    margin-right: -18px !important;
    object-position: right bottom !important;
    clip-path: inset(0 0 0 10%);
  }
}

@media (max-width: 640px) {
  .home-page .professional-pill-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    width: min(100%, 320px) !important;
    margin-inline: auto !important;
  }

  .home-page .professional-pill-row a {
    width: 100% !important;
    min-height: 42px !important;
    padding-inline: 12px !important;
  }

  .home-page .professional-pill-row a:last-child {
    grid-column: auto !important;
    width: 100% !important;
    justify-self: stretch !important;
  }

  .professional-access-page .itp-card h2 {
    font-size: clamp(2.1rem, 11vw, 3rem) !important;
    line-height: 0.96 !important;
  }

  .professional-access-page .itp-caption {
    text-align: center !important;
    font-size: 0.95rem !important;
  }

  .professional-access-page .legal-inline-panel {
    max-width: none !important;
  }

  .professional-access-page .rgpd-check span {
    font-size: 0.94rem !important;
    line-height: 1.42 !important;
  }

  .footer-grid--legal {
    padding-top: 8px !important;
  }

  .footer-legal-copy {
    padding-inline: 8px !important;
  }

  .footer-grid--legal .footer-links {
    width: 100% !important;
    max-width: 420px !important;
  }

  .contact-page .legal-card .legal-links {
    max-width: 420px;
    margin-inline: auto;
  }

  .landing-body .nav-row__lead {
    gap: 10px !important;
  }

  .landing-body .editorial-brand__app-icon {
    width: 42px !important;
    height: 42px !important;
    flex-basis: 42px !important;
  }

  .landing-body .nav-row.has-dropdown-nav .nav-menu {
    padding: 12px !important;
    border-radius: 18px !important;
  }

  .landing-body .nav-row.has-dropdown-nav .nav-menu__links,
  .landing-body .nav-row.has-dropdown-nav .nav-menu__extra,
  .landing-body .nav-row.has-dropdown-nav .nav-menu__cta {
    grid-template-columns: 1fr !important;
  }

  .landing-body .nav-row.has-dropdown-nav .nav-menu__cta .btn,
  .landing-body .nav-row.has-dropdown-nav .nav-menu a {
    min-height: 48px !important;
    border-radius: 16px !important;
  }
}

/* 2026-05-30 final mobile closure: fix unfinished public mobile layout. */
@media (max-width: 640px) {
  .landing-body .nav-row__lead {
    justify-content: center !important;
    gap: 0 !important;
  }

  .landing-body .editorial-brand {
    gap: 0 !important;
    margin-inline: auto !important;
  }

  .landing-body .editorial-brand__app-icon {
    display: none !important;
  }

  .landing-body .editorial-brand__wordmark {
    gap: 1px !important;
  }

  .landing-body .editorial-brand__title {
    text-align: center !important;
  }

  .landing-body .editorial-brand__sub {
    margin-top: -2px !important;
    padding-top: 0 !important;
  }

  .home-page #tramites .top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .home-page #tramites .top-card {
    border-radius: 18px !important;
  }

  .home-page #tramites .top-card > img {
    height: 148px !important;
    transform: scale(var(--thumb-zoom, 1)) !important;
  }

  .home-page .professional-callout {
    padding: 18px 16px 20px !important;
  }

  .home-page .professional-callout strong {
    display: block !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  .home-page .professional-callout p {
    text-align: center !important;
    margin-bottom: 12px !important;
  }

  .home-page .hero-channel-grid {
    margin-top: 10px !important;
    gap: 10px !important;
  }

  .home-page .hero-channel-card {
    padding: 16px 14px !important;
  }

  .home-page .hero-kicker-bottom {
    margin-top: 10px !important;
  }

  .professional-access-page main,
  .professional-access-page .section,
  .professional-access-page .wrap,
  .professional-access-page .itp-card {
    overflow: visible !important;
  }

  .professional-access-page .itp-card {
    padding-bottom: 112px !important;
  }

  .professional-access-page .itp-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .professional-access-page .itp-form > label,
  .professional-access-page .itp-form > input,
  .professional-access-page .itp-form > select,
  .professional-access-page .itp-form > button,
  .professional-access-page .itp-form > .full-span,
  .professional-access-page .itp-form > .bot-field {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
  }

  .professional-access-page .itp-form > label {
    margin: 2px 0 0 !important;
    text-align: left !important;
    min-height: 0 !important;
    align-items: flex-start !important;
  }

  .professional-access-page .legal-inline-panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .professional-access-page .rgpd-check {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: start !important;
  }

  .professional-access-page .rgpd-check span {
    display: block !important;
  }

  .contact-page .footer-grid--legal .footer-links {
    display: none !important;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .home-page #tramites .top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .home-page #tramites .top-card > img {
    height: 176px !important;
    transform: scale(var(--thumb-zoom, 1.01)) !important;
  }
}

@media (min-width: 1101px) {
  .home-page #tramites .top-card > img {
    height: 190px !important;
    transform: scale(var(--thumb-zoom, 1.01)) !important;
  }

  .catalog-page .catalog-card > img {
    height: 166px !important;
    transform: scale(var(--thumb-zoom, 1.01)) !important;
  }

  .catalog-page .report-card > img {
    height: 172px !important;
    transform: scale(var(--thumb-zoom, 1.01)) !important;
  }
}

/* 2026-05-31 legal footer interaction fix: keep links above floating widget and overlays. */
.footer--legal-premium,
.footer-grid--legal,
.footer-legal-copy,
.footer-grid--legal .footer-links {
  position: relative;
}

.footer--legal-premium {
  z-index: 58;
}

.footer-legal-copy {
  z-index: 60;
}

.footer-grid--legal .footer-links {
  z-index: 65;
}

/* 2026-05-30 mobile completion layer v5: final public/mobile winner at EOF. */
@media (max-width: 640px) {
  .landing-body .editorial-brand {
    gap: 0 !important;
    margin-inline: auto !important;
    align-items: center !important;
  }

  .landing-body .editorial-brand__app-icon {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    flex: 0 0 0 !important;
  }

  .landing-body .editorial-brand__wordmark {
    gap: 0 !important;
    align-items: center !important;
  }

  .landing-body .editorial-brand__title,
  .landing-body .editorial-brand__sub {
    text-align: center !important;
  }

  .landing-body .editorial-brand__sub {
    margin-top: -4px !important;
  }

  .landing-body .nav-row.has-dropdown-nav .nav-menu {
    padding: 12px !important;
  }

  .landing-body .nav-row.has-dropdown-nav .nav-menu__links,
  .landing-body .nav-row.has-dropdown-nav .nav-menu__extra,
  .landing-body .nav-row.has-dropdown-nav .nav-menu__cta {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .landing-body .nav-row.has-dropdown-nav .nav-menu a,
  .landing-body .nav-row.has-dropdown-nav .nav-menu .btn {
    min-height: 48px !important;
  }

  .home-page .professional-callout {
    padding: 18px 16px 14px !important;
  }

  .home-page .professional-callout p {
    margin-bottom: 10px !important;
  }

  .home-page .professional-pill-row {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
  }

  .professional-access-page .itp-card {
    padding-bottom: 132px !important;
  }

  .professional-access-page .itp-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .professional-access-page .itp-form > label,
  .professional-access-page .itp-form > input,
  .professional-access-page .itp-form > select,
  .professional-access-page .itp-form > button,
  .professional-access-page .itp-form > .full-span,
  .professional-access-page .itp-form > .bot-field {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .professional-access-page .itp-form > label {
    margin: 2px 0 0 !important;
    min-height: 0 !important;
    text-align: left !important;
    line-height: 1.15 !important;
  }

  .professional-access-page .itp-form > input,
  .professional-access-page .itp-form > select {
    min-height: 52px !important;
  }

  .professional-access-page .legal-inline-panel {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 16px !important;
    border-radius: 20px !important;
  }

  .professional-access-page .legal-inline-panel h3,
  .professional-access-page .legal-inline-panel p,
  .professional-access-page .legal-inline-panel a {
    text-align: left !important;
  }

  .professional-access-page .rgpd-check {
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .professional-access-page .rgpd-check input {
    margin: 2px 0 0 !important;
  }

  .professional-access-page .btn.primary.full {
    min-height: 54px !important;
  }

  .professional-access-page .footer-grid--legal .footer-links {
    display: none !important;
  }

  .professional-access-page .footer-grid--legal,
  .professional-access-page .footer-legal-copy {
    text-align: center !important;
  }
}

/* 2026-05-31 stabilization layer v1: close unfinished mobile/public regressions. */
@media (max-width: 640px) {
  .landing-body .nav-row__lead {
    justify-content: center !important;
    gap: 8px !important;
  }

  .landing-body .editorial-brand {
    display: inline-flex !important;
    justify-content: center !important;
    margin-inline: auto !important;
  }

  .landing-body .editorial-brand__app-icon {
    display: none !important;
  }

  .landing-body .editorial-brand__wordmark {
    align-items: center !important;
    gap: 2px !important;
  }

  .landing-body .editorial-brand__sub {
    margin-top: -2px !important;
  }

  .home-page .professional-callout {
    padding: 18px 16px 18px !important;
    gap: 12px !important;
    align-content: start !important;
  }

  .home-page .professional-callout p {
    margin-bottom: 0 !important;
  }

  .home-page .professional-pill-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 8px auto 0 !important;
    gap: 10px !important;
  }

  .home-page .professional-pill-row a {
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .home-page .professional-pill-row a:last-child {
    flex-basis: 100% !important;
    justify-self: center !important;
    width: min(100%, 286px) !important;
  }

  .professional-access-page .itp-card {
    padding: 22px 16px 184px !important;
  }

  .professional-access-page .itp-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .professional-access-page .itp-form > label,
  .professional-access-page .itp-form > input,
  .professional-access-page .itp-form > select,
  .professional-access-page .itp-form > button,
  .professional-access-page .itp-form > .full-span,
  .professional-access-page .itp-form > .bot-field {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .professional-access-page .itp-form > label {
    margin: 2px 0 0 !important;
    min-height: 0 !important;
    line-height: 1.15 !important;
    text-align: left !important;
  }

  .professional-access-page .itp-form > input,
  .professional-access-page .itp-form > select {
    min-height: 54px !important;
    font-size: 16px !important;
  }

  .professional-access-page .legal-inline-panel {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 18px 16px !important;
    border-radius: 20px !important;
  }

  .professional-access-page .legal-inline-panel h3,
  .professional-access-page .legal-inline-panel p,
  .professional-access-page .legal-inline-panel a {
    text-align: left !important;
  }

  .professional-access-page .legal-inline-panel p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  .professional-access-page .rgpd-check {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .professional-access-page .rgpd-check span {
    display: block !important;
    font-size: 0.95rem !important;
    line-height: 1.42 !important;
  }

  .professional-access-page .rgpd-check input {
    margin: 3px 0 0 !important;
  }

  .professional-access-page .btn.primary.full {
    min-height: 56px !important;
    margin-top: 2px !important;
  }

  .footer-grid--legal {
    gap: 14px !important;
    padding: 22px 16px 24px !important;
  }

  .footer-legal-copy {
    max-width: none !important;
    padding-inline: 0 !important;
  }

  .footer-legal-copy p {
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
  }

  .footer-grid--legal .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .footer-grid--legal .footer-links a,
  .footer-grid--legal .footer-links button {
    width: 100% !important;
    min-height: 44px !important;
  }

  .footer-grid--legal .footer-links button:last-child {
    grid-column: 1 / -1 !important;
    width: min(100%, 220px) !important;
  }
}

.ia-page .dora-whatsapp-visual {
  object-fit: contain !important;
  object-position: center bottom !important;
  clip-path: none !important;
}

@media (min-width: 901px) {
  .ia-page .dora-whatsapp-visual {
    width: min(296px, 23vw) !important;
    max-height: 560px !important;
    margin-right: -4px !important;
    justify-self: end !important;
  }
}

@media (max-width: 900px) {
  .ia-page .dora-whatsapp-visual {
    width: min(100%, 264px) !important;
    max-height: 420px !important;
    margin-inline: auto !important;
  }
}
