/* ============================================================
   DRA. PAMELA MIR — SITIO WEB V2.0
   Archivo organizado por secciones para facilitar modificaciones.
   ============================================================ */

/* ========================= VARIABLES ========================= */
:root {
  --aqua: #a7e1e3;
  --pink: #f9d9de;
  --hot: #f15b8e;
  --teal: #075256;
  --teal-2: #0b7679;
  --ink: #1f2937;
  --muted: #687084;
  --line: #d8f3f4;
  --soft: #f7fbfb;
  --white: #ffffff;

  --shadow-sm: 0 12px 30px rgba(5, 82, 86, 0.07);
  --shadow-md: 0 18px 48px rgba(5, 82, 86, 0.1);
  --shadow-lg: 0 22px 70px rgba(5, 82, 86, 0.11);

  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 44px;

  --serif: "Cormorant Garamond", serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --header-height: 96px;
  --container: 1180px;
}

/* ========================= RESET / BASE ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-soft {
  padding: 92px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
}

.section-bleed {
  position: relative;
  overflow: hidden;
}

/* ========================= TIPOGRAFÍA ========================= */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.22em;
  color: var(--hot);
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--teal);
}

h1 {
  font-size: clamp(3.4rem, 7vw, 7.8rem);
}

h2 {
  font-size: clamp(2.45rem, 4vw, 4.65rem);
}

h1 em,
h2 em {
  color: var(--hot);
  font-style: normal;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ========================= BOTONES ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn-primary {
  color: #ffffff;
  background: var(--hot);
  box-shadow: 0 18px 44px rgba(241, 91, 142, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(241, 91, 142, 0.34);
}

.btn-light {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.78);
  border-color: #b8e8ea;
  backdrop-filter: blur(10px);
}

.btn-light:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.btn.small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.86rem;
}

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

.actions.center {
  justify-content: center;
}

/* ========================= HEADER ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 52px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(167, 225, 227, 0.38);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  max-height: 78px;
  object-fit: contain;
  object-position: center;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  color: #313a4c;
  font-weight: 800;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--hot);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-btn {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #dff2f3;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--teal);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* ========================= HERO ========================= */
.hero {
  min-height: 760px;
  padding: 96px 0 72px;
  background:
    radial-gradient(
      circle at 86% 18%,
      rgba(249, 217, 222, 0.55),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      rgba(167, 225, 227, 0.24) 0%,
      #ffffff 22%,
      #ffffff 100%
    );
}

.aura-left {
  position: absolute;
  top: 185px;
  left: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--aqua);
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.86fr)
    minmax(360px, 0.98fr)
    minmax(220px, 0.42fr);
  align-items: stretch;
  gap: 28px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 620px;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3.15rem, 5vw, 6.1rem);
  line-height: 0.94;
}

.hero-copy p {
  max-width: 510px;
  margin: 20px 0 26px;
  font-size: 1.02rem;
}

.decor-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: var(--hot);
  font-size: 1.5rem;
}

.decor-line span {
  width: 70px;
  height: 1px;
  background: var(--pink);
}

.trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.trust strong {
  display: block;
  color: var(--teal);
}

.trust span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(167, 225, 227, 0.22),
    rgba(249, 217, 222, 0.16)
  );
  box-shadow: var(--shadow-lg);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
  transform: none;
  filter: none;
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.22) 95%
  );
}

.float-card {
  position: absolute;
  right: 16px;
  bottom: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(167, 225, 227, 0.55);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

.float-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
}

.float-card span {
  display: block;
  margin: 4px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-strip {
  position: relative;
  z-index: 3;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(167, 225, 227, 0.5);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.feature-strip article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 18px 8px;
  border-bottom: 1px solid #e8eded;
}

.feature-strip article:last-child {
  border-bottom: 0;
}

.feature-strip article > span {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(167, 225, 227, 0.45),
    rgba(249, 217, 222, 0.35)
  );
  color: var(--teal);
  font-size: 1.2rem;
}

.feature-strip strong,
.feature-strip small {
  display: block;
}

.feature-strip strong {
  color: var(--teal);
  font-size: 0.84rem;
  line-height: 1.35;
}

.feature-strip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ========================= SECCIONES GENERALES ========================= */
.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head p {
  margin-top: 12px;
}

/* ========================= SERVICIOS ========================= */
.service-grid.compact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-pill {
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid #e6f4f5;
  border-radius: var(--radius-sm);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-pill span {
  margin-bottom: 7px;
  color: var(--hot);
  font-size: 2rem;
}

.service-pill strong {
  color: #202b3e;
}

.service-pill:hover {
  transform: translateY(-7px);
  border-color: var(--aqua);
  box-shadow: 0 24px 50px rgba(5, 82, 86, 0.1);
}

/* ========================= FERTILIDAD ========================= */
.fertility {
  padding: 76px 0;
  background: #ffffff;
}

.fertility-panel {
  position: relative;
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(340px, 1.1fr) minmax(
      250px,
      310px
    );
  align-items: center;
  gap: 32px;
  padding: 48px;
  overflow: hidden;
  border: 1px solid #e2f6f7;
  border-radius: 28px;
  background: linear-gradient(110deg, #f6fdfd 0%, #ffffff 50%, #fceff2 100%);
  box-shadow: var(--shadow-lg);
}

.fertility-copy {
  min-width: 0;
}

.fertility-copy h2 {
  font-size: clamp(2.6rem, 3.3vw, 3.4rem);
}

.fertility-copy p {
  margin: 18px 0 25px;
}

.fertility-process {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.process-card {
  min-width: 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border: 1px solid #e4f4f5;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(5, 82, 86, 0.08);
  color: #344054;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.process-logo {
  grid-column: 1 / -1;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 10px;
  border: 1px dashed #d8eef0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.process-logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.fertility-photo-wrap {
  align-self: stretch;
  min-width: 0;
  display: flex;
  align-items: flex-end;
}

.fertility-doctor {
  width: 100%;
  height: 100%;
  min-height: 390px;
  max-height: 430px;
  object-fit: cover;
  object-position: center 8%;
  border-radius: 30px 30px 0 0;
  filter: drop-shadow(0 20px 44px rgba(5, 82, 86, 0.14));
}

/* ========================= SOBRE MÍ ========================= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 70px;
}

.about-photo {
  overflow: hidden;
  border-radius: 28px;
  background: #f7fbfb;
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 8%;
}

.about-copy {
  position: relative;
}

.about-copy::after {
  content: "PM";
  position: absolute;
  top: -70px;
  right: 10px;
  z-index: -1;
  color: var(--pink);
  font-family: var(--serif);
  font-size: 12rem;
  opacity: 0.25;
}

.about-copy p {
  margin-top: 18px;
}

.about-copy .btn {
  margin-top: 24px;
}

/* ========================= ETAPAS ========================= */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--aqua));
}

.timeline div {
  position: relative;
  text-align: center;
}

.timeline span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid #d9f4f5;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  font-size: 1.6rem;
}

.timeline strong {
  color: var(--teal);
  font-size: 0.92rem;
}

/* ========================= GALERÍA ========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.76fr) minmax(0, 0.76fr);
  align-items: stretch;
  gap: 26px;
}

.gallery-copy {
  padding: 44px;
  border: 1px solid #e0f6f7;
  border-radius: 28px;
  background: linear-gradient(135deg, #f2fcfc, #ffffff);
}

.gallery-copy p {
  margin-top: 18px;
}

.portrait-card {
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 0.45s ease;
}

.portrait-card:hover img {
  transform: scale(1.04);
}

.portrait-card.tall img {
  object-position: center 8%;
}

/* ========================= BLOG ========================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid #edf5f5;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(5, 82, 86, 0.07);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 8%;
}

.blog-card span {
  display: block;
  margin: 22px 24px 8px;
  color: var(--hot);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0 24px;
  color: #202b3e;
  font-size: 1.12rem;
  line-height: 1.35;
}

.blog-card a {
  display: block;
  margin: 18px 24px 24px;
  color: var(--teal-2);
  font-weight: 900;
}

/* ========================= CTA ========================= */
.cta-card {
  padding: 58px 28px;
  border: 1px solid #e0f2f3;
  border-radius: 36px;
  background: linear-gradient(
    135deg,
    rgba(167, 225, 227, 0.32),
    rgba(249, 217, 222, 0.42)
  );
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cta-card img {
  width: 100px;
  margin: 0 auto 18px;
}

.cta-card p {
  max-width: 560px;
  margin: 14px auto 26px;
}

/* ========================= FOOTER ========================= */
.footer {
  padding-top: 58px;
  color: #4b5565;
  background: linear-gradient(180deg, #f8fcfc, #eafafa);
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 0.8fr)
    minmax(0, 1fr);
  gap: 40px;
}

.footer img {
  width: 230px;
}

.footer h4 {
  margin: 0 0 14px;
  color: var(--teal);
}

.footer p,
.footer a {
  display: block;
  margin: 8px 0;
  color: #586174;
  font-size: 0.95rem;
}

.whatsapp-box {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(5, 82, 86, 0.08);
  text-align: center;
}

.whatsapp-box span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--aqua);
  font-size: 1.8rem;
}

.footer-bottom {
  margin-top: 40px;
  padding: 18px;
  border-top: 1px solid rgba(167, 225, 227, 0.55);
  color: #687084;
  font-size: 0.84rem;
  text-align: center;
}

/* ========================= ANIMACIONES ========================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ========================= TABLET / LAPTOP ========================= */
@media (max-width: 1120px) {
  .site-header {
    padding-inline: 24px;
  }

  .brand img {
    width: 185px;
  }

  .nav-links {
    gap: 22px;
    font-size: 0.92rem;
  }

  .header-btn {
    padding-inline: 20px;
  }

  .fertility-panel {
    grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.1fr) minmax(
        220px,
        260px
      );
    gap: 24px;
    padding: 38px;
  }

  .process-card {
    padding-inline: 12px;
    font-size: 0.78rem;
  }
}

/* ========================= TABLET VERTICAL ========================= */
@media (max-width: 980px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .menu-toggle {
    order: 3;
    display: block;
    margin-left: auto;
  }

  .header-btn {
    order: 2;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid #e0f3f4;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  }

  .about-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-photo-wrap {
    min-height: 620px;
  }

  .feature-strip {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip article {
    border-right: 1px solid #e8eded;
  }

  .feature-strip article:nth-child(even) {
    border-right: 0;
  }

  .feature-strip article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .fertility-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fertility-copy {
    max-width: 680px;
  }

  .fertility-process {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

  .fertility-photo-wrap {
    min-height: 520px;
  }

  .fertility-doctor {
    max-height: none;
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .timeline::before {
    display: none;
  }

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

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

/* ========================= MÓVIL ========================= */
@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section,
  .section-soft {
    padding: 64px 0;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 150px;
    max-height: 62px;
  }

  .header-btn {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-photo-wrap,
  .hero-visual {
    height: 540px;
    min-height: 540px;
  }

  .float-card {
    right: 12px;
    bottom: 18px;
    left: 12px;
  }

  .feature-strip {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid #e8eded;
  }

  .feature-strip article:nth-last-child(-n + 2) {
    border-bottom: 1px solid #e8eded;
  }

  .feature-strip article:last-child {
    border-bottom: 0;
  }

  .service-grid.compact,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .fertility-panel {
    padding: 28px;
  }

  .fertility-process {
    grid-template-columns: 1fr;
  }

  .process-logo {
    grid-column: auto;
  }

  .fertility-photo-wrap {
    min-height: 460px;
  }

  .about-photo img {
    height: 480px;
  }

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

  .gallery-copy {
    padding: 28px;
  }

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

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ========================= MÓVIL PEQUEÑO ========================= */
@media (max-width: 430px) {
  .brand img {
    width: 132px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .trust {
    align-items: flex-start;
  }

  .feature-strip article {
    padding-inline: 10px;
  }

  .fertility-panel {
    padding: 22px;
  }

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