:root {
  --navy: #071b31;
  --navy2: #0b2947;
  --cyan: #1dd3f8;
  --blue: #1689ff;
  --ink: #10243a;
  --muted: #587086;
  --line: #dbe8f2;
  --soft: #f2f8fc;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(5, 31, 55, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body.fda-site {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
}
.fda-site a {
  color: inherit;
}
.fda-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.fda-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 27, 49, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.fda-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.fda-brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.fda-brand img {
  width: 245px;
  height: auto;
  display: block;
}
.fda-nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.fda-nav nav a {
  color: #ddecf7;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.fda-nav nav a:hover {
  color: var(--cyan);
}
.fda-call,
.fda-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 21px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
  border: 1px solid transparent;
}
.fda-call,
.fda-btn.primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #031625;
  box-shadow: 0 9px 25px rgba(29, 211, 248, 0.22);
}
.fda-btn.ghost {
  border-color: #8fdff2;
  color: inherit;
  background: transparent;
}
.fda-call:hover,
.fda-btn:hover {
  transform: translateY(-2px);
}
.fda-hero {
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, #113f68 0, transparent 40%),
    linear-gradient(135deg, var(--navy), #05111f);
  padding: 72px 0;
}
.fda-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}
.fda-hero-copy h1,
.fda-page-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 15px 0 22px;
  max-width: 780px;
}
.fda-hero-copy p,
.fda-page-hero p {
  font-size: clamp(18px, 2vw, 22px);
  color: #c8dceb;
  max-width: 720px;
}
.fda-kicker {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
}
.fda-hero .fda-kicker,
.fda-page-hero .fda-kicker {
  color: var(--cyan);
}
.fda-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.fda-hero .fda-btn.ghost,
.fda-page-hero .fda-btn.ghost {
  color: #fff;
}
.fda-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  color: #bcd4e6;
  font-size: 14px;
}
.fda-trust li:before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
  margin-right: 7px;
}
.fda-hero-media {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.fda-hero-media img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.fda-section {
  padding: 88px 0;
}
.fda-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 12px 0 18px;
}
.fda-lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 760px;
}
.fda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}
.fda-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(7, 27, 49, 0.05);
  transition: 0.2s;
}
.fda-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #9bdff0;
}
.fda-card h2,
.fda-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 15px 0 10px;
}
.fda-card p {
  color: var(--muted);
}
.fda-card a {
  color: #087da5;
  text-decoration: none;
  font-weight: 850;
}
.fda-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #e9faff;
  font-size: 25px;
}
.fda-band {
  padding: 28px 0;
  background: linear-gradient(135deg, #0b2947, #0f3c62);
  color: #fff;
}
.fda-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fda-stats div {
  display: flex;
  flex-direction: column;
  padding: 15px 24px;
  border-left: 2px solid var(--cyan);
}
.fda-stats strong {
  font-size: 24px;
}
.fda-stats span {
  color: #bcd4e6;
}
.fda-soft {
  background: var(--soft);
}
.fda-two {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.fda-steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.fda-steps li {
  position: relative;
  padding: 0 0 25px 62px;
  counter-increment: step;
}
.fda-steps li:before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--cyan);
  font-weight: 900;
}
.fda-steps b,
.fda-steps span {
  display: block;
}
.fda-steps span {
  color: var(--muted);
}
.fda-panel {
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--navy2), var(--navy));
  color: #fff;
  box-shadow: var(--shadow);
}
.fda-panel h2 {
  font-size: 28px;
}
.fda-panel p {
  color: #c8dceb;
}
.fda-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 25px;
}
.fda-chips span,
.fda-chips a {
  border: 1px solid #bcddeb;
  border-radius: 999px;
  padding: 9px 14px;
  text-decoration: none;
  background: #fff;
  font-weight: 700;
  color: #28516b;
}
.fda-chips a:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.fda-faq details {
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}
.fda-faq summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 18px;
}
.fda-faq details p {
  color: var(--muted);
  max-width: 850px;
}
.fda-page-hero {
  padding: 78px 0;
  background:
    radial-gradient(circle at 80% 0, #174f7a 0, transparent 35%),
    linear-gradient(135deg, var(--navy), #071727);
  color: #fff;
}
.fda-page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
}
.fda-checks {
  list-style: none;
  padding: 0;
}
.fda-checks li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.fda-checks li:before {
  content: "✓";
  color: #009ac2;
  font-weight: 900;
  margin-right: 10px;
}
.fda-article {
  padding: 90px 0;
}
.fda-article .fda-wrap {
  max-width: 850px;
}
.fda-article h1 {
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.fda-article h2 {
  font-size: 30px;
  margin-top: 42px;
}
.fda-form-wrap {
  max-width: 760px;
}
.fda-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fda-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
.fda-form label:nth-of-type(5),
.fda-form .fda-consent,
.fda-form button {
  grid-column: 1/-1;
}
.fda-form input,
.fda-form select,
.fda-form textarea {
  width: 100%;
  border: 1px solid #b9cddd;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}
.fda-form input:focus,
.fda-form select:focus,
.fda-form textarea:focus {
  outline: 3px solid rgba(29, 211, 248, 0.25);
  border-color: var(--blue);
}
.fda-consent {
  display: flex !important;
  grid-template-columns: auto 1fr !important;
  align-items: center;
  font-weight: 600 !important;
}
.fda-consent input {
  width: auto;
}
.fda-hp {
  position: absolute !important;
  left: -9999px !important;
}
.fda-success {
  padding: 22px;
  border-radius: 15px;
  background: #e5f8ed;
  color: #164d2e;
  margin-bottom: 25px;
}
.fda-footer {
  padding: 58px 0 0;
  background: #041424;
  color: #d7e8f4;
}
.fda-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}
.fda-footer img {
  width: 280px;
  height: auto;
}
.fda-footer h2 {
  font-size: 17px;
  color: #fff;
}
.fda-footer a {
  display: block;
  color: #d7e8f4;
  text-decoration: none;
  margin: 8px 0;
}
.fda-footer a:hover {
  color: var(--cyan);
}
.fda-copy {
  margin-top: 45px;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #9fb8ca;
}

/* v1.2 — Contraste de navegación, footer y cobertura enlazada */
.fda-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #cbdde9;
  box-shadow: 0 8px 24px rgba(7, 27, 49, 0.08);
}
.fda-nav nav a {
  color: #102f4d;
}
.fda-nav nav a:hover,
.fda-nav nav a:focus-visible {
  color: #006f96;
}
.fda-call {
  color: #031625;
}
.fda-footer {
  background: #071b31;
  color: #f4f9fc;
}
.fda-footer-brand {
  display: inline-flex !important;
  width: fit-content;
  margin: 0 0 20px !important;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}
.fda-footer-brand img {
  width: 280px;
}
.fda-footer p,
.fda-footer a {
  color: #edf7fd;
}
.fda-footer h2 {
  color: #fff;
}
.fda-footer a:hover,
.fda-footer a:focus-visible {
  color: #55dcfa;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.fda-copy {
  color: #c4d9e8;
  border-top-color: rgba(255, 255, 255, 0.2);
}
.fda-chips a {
  color: #163f5d;
  background: #fff;
  border-color: #8ecbe7;
  text-decoration: none;
}
.fda-chips a:hover,
.fda-chips a:focus-visible {
  color: #fff;
  background: #0a668f;
  border-color: #0a668f;
  transform: translateY(-1px);
}
.fda-coverage-list {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}
.fda-coverage-service {
  padding: 26px;
  border: 1px solid #d5e5ef;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(7, 27, 49, 0.06);
}
.fda-coverage-service h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 22px;
}
.fda-coverage-service h3 a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
@media (max-width: 920px) {
  .fda-nav nav {
    display: none;
  }
  .fda-call {
    font-size: 0;
    padding: 12px;
  }
  .fda-call:after {
    content: "Llamar";
    font-size: 14px;
  }
  .fda-hero-grid,
  .fda-two {
    grid-template-columns: 1fr;
  }
  .fda-hero-media {
    order: -1;
  }
  .fda-hero-media img {
    height: 360px;
  }
  .fda-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fda-brand img {
    width: 210px;
  }
}
@media (max-width: 620px) {
  .fda-wrap {
    width: min(100% - 26px, 1180px);
  }
  .fda-nav {
    min-height: 70px;
  }
  .fda-brand img {
    width: 165px;
  }
  .fda-hero,
  .fda-section,
  .fda-page-hero {
    padding: 58px 0;
  }
  .fda-hero-copy h1 {
    font-size: 43px;
  }
  .fda-grid,
  .fda-stats,
  .fda-footer-grid,
  .fda-form {
    grid-template-columns: 1fr;
  }
  .fda-form label {
    grid-column: 1 !important;
  }
  .fda-hero-media img {
    height: 280px;
  }
  .fda-stats div {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .fda-actions .fda-btn {
    width: 100%;
  }
}

/* v1.1 — Hero claro y contraste accesible */
.fda-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, #e4f7ff 0, transparent 42%),
    linear-gradient(135deg, #fff, #f3f9fd);
  border-bottom: 1px solid var(--line);
}
.fda-hero-copy p,
.fda-page-hero p {
  color: #425d73;
}
.fda-hero .fda-kicker,
.fda-page-hero .fda-kicker {
  color: #006f96;
}
.fda-hero .fda-btn.ghost,
.fda-page-hero .fda-btn.ghost {
  color: var(--navy);
  border-color: #087da5;
  background: #fff;
}
.fda-trust {
  color: #36556d;
}
.fda-trust li:before {
  color: #007ea8;
}
.fda-hero-media {
  box-shadow: 0 24px 60px rgba(7, 27, 49, 0.16);
  border-color: #cddfea;
}
.fda-page-hero {
  background:
    radial-gradient(circle at 85% 0, #e1f6ff 0, transparent 38%),
    linear-gradient(135deg, #fff, #f3f9fd);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.fda-card {
  padding: 0;
  overflow: hidden;
}
.fda-card-media {
  display: block;
  overflow: hidden;
  background: #eef7fb;
}
.fda-card-media img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.fda-card:hover .fda-card-media img {
  transform: scale(1.025);
}
.fda-card-body {
  padding: 24px 28px 28px;
}
.fda-page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}
.fda-page-hero-media {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #cddfea;
  box-shadow: 0 22px 55px rgba(7, 27, 49, 0.14);
}
.fda-page-hero-media img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}
@media (max-width: 920px) {
  .fda-page-hero-grid {
    grid-template-columns: 1fr;
  }
  .fda-page-hero-media {
    order: -1;
  }
  .fda-page-hero-media img {
    height: 330px;
  }
}
@media (max-width: 620px) {
  .fda-page-hero-media img {
    height: 250px;
  }
  .fda-card-media img {
    height: 190px;
  }
}
