/* Portada panorámica: fotografía de fondo y degradado para la lectura. */
.intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: white;
}
.intro-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.intro-background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 63%;
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(0deg, #04152675, transparent 40%),
    linear-gradient(
      90deg,
      #051829f5 0%,
      #051829e8 28%,
      #051829b5 49%,
      #05182938 73%,
      #05182912 100%
    );
}
.intro-layout {
  min-height: clamp(620px, calc(100svh - 178px), 820px);
  display: flex;
  align-items: center;
  padding-block: 80px 88px;
}
.intro-copy {
  width: 100%;
  max-width: 760px;
}
.intro-signature {
  position: relative;
  isolation: isolate;
  flex-shrink: 0;
  margin: 165px clamp(16px, 5vw, 96px) 0 auto;
  padding-left: 32px;
  color: #fff;
  text-shadow: 0 2px 16px #031321;
}
.intro-signature::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -35px -45px;
  background: radial-gradient(
    ellipse,
    #041526b8 0%,
    #04152650 45%,
    transparent 72%
  );
  pointer-events: none;
}
.intro-signature-name {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.intro-signature-role {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
  font-size: 0.8125rem;
  color: #e0eef7;
}
.intro-signature-role::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #68d8f4;
}
.intro-eyebrow {
  color: #c0d9e7;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  font-weight: 500;
  margin-bottom: 25px;
}
.intro h1 {
  font-size: clamp(3.1rem, 5.1vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 500;
  text-wrap: balance;
}
.intro h1 strong {
  color: #68d8f4;
  font-weight: 500;
}
.intro-description {
  color: #d4e0e8;
  font-size: 1.0625rem;
  line-height: 1.85;
  max-width: 460px;
  margin-top: 27px;
}
.intro-actions {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.intro-actions .button {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 7px;
  font-size: 0.9375rem;
  gap: 24px;
}
.intro-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid #acc9dd80;
  border-radius: 7px;
  background: #061c3180;
  color: #f0f5f9;
  font-size: 0.9375rem;
  font-weight: 500;
}
.intro-whatsapp svg {
  width: 18px;
  height: 18px;
}
.intro-note {
  color: #b7cbda;
  font-size: 0.8125rem;
  margin-top: 20px;
}
@media (max-width: 1100px) {
  .intro-copy {
    max-width: 650px;
  }
  .intro::before {
    background: linear-gradient(
      90deg,
      #051829f5,
      #051829c9 48%,
      #05182938 100%
    );
  }
}
@media (max-width: 850px) {
  .intro-layout {
    min-height: 610px;
    padding-block: 65px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .intro-signature {
    margin: 34px 0 0;
    padding-left: 0;
  }
  .intro-signature-name {
    font-size: 1.5rem;
  }
  .intro h1 {
    font-size: clamp(3rem, 7vw, 4.2rem);
  }
  .intro-copy {
    max-width: 590px;
  }
  .intro-background img {
    object-position: 42% 60%;
  }
}
@media (max-width: 600px) {
  .intro-layout {
    min-height: min(690px, calc(100svh - 61px));
    align-items: flex-start;
    padding-block: 58px 74px;
  }
  .intro::before {
    background:
      linear-gradient(90deg, #04182999, #04182942),
      linear-gradient(180deg, #041829ed 0%, #041829d9 48%, #0418297a 100%);
  }
  .intro-background img {
    object-position: 36% center;
  }
  .intro-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
  }
  .intro h1 {
    font-size: clamp(2.45rem, 10vw, 3.6rem);
    line-height: 1.14;
  }
  .intro-description {
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 23px;
    max-width: 390px;
  }
  .intro-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 390px;
    gap: 11px;
    margin-top: 27px;
  }
  .intro-actions .button,
  .intro-whatsapp {
    min-height: 51px;
    padding: 13px 18px;
    font-size: 0.9375rem;
  }
  .intro-note {
    font-size: 0.8125rem;
    margin-top: 18px;
  }
}
