: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;
}

.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: 8px;
  margin-top: 22px;
  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: 18px;
  align-self: flex-start;
  color: rgba(232, 247, 255, 0.96);
  background: rgba(8, 22, 40, 0.22);
  border-color: rgba(163, 211, 240, 0.42);
}

.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-dora-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: 18px;
  border: 1px solid rgba(27, 54, 82, 0.18);
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.92) 0%, rgba(230, 238, 247, 0.92) 100%);
  box-shadow: 0 20px 42px rgba(4, 13, 28, 0.18);
  justify-self: center;
}

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

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

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

animated-avatar.ia-dora-avatar {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px solid #2b4660;
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.94) 0%, rgba(230, 239, 248, 0.9) 100%);
  box-shadow: 0 20px 42px rgba(4, 13, 28, 0.16);
}

.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: flex-start;
  justify-content: space-between;
  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: 2px;
  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);
}

.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-dora-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 {
    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;
}
