/* ==========================================================================
   Secciones de la home
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO  (Figma 187:71)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 64px;
  background: var(--gradient-hero);
  color: var(--color-white);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* --- Nav ---------------------------------------------------------------- */

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  width: 236px;
  height: auto;
  object-fit: contain;
}

.nav__right {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-left: 32px;
}

.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 15px;
  font-weight: var(--fw-medium);
}

.nav__links > li {
  position: relative;
}

.nav__links a {
  display: block;
  white-space: nowrap;
  color: var(--color-white);
  transition: color 0.2s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--color-red);
}

/* --- Submenú de Protecciones -------------------------------------------- */

.nav__item--tiene-submenu {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Flecha del desplegable */
.nav__submenu-toggle {
  display: flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
}

.nav__submenu-toggle::before {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav__item--tiene-submenu:hover .nav__submenu-toggle,
.nav__submenu-toggle[aria-expanded="true"] {
  color: var(--color-red);
}

.nav__submenu {
  position: absolute;
  top: 100%;
  left: -18px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 268px;
  margin-top: 14px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  background: var(--color-card-dark);
  border: 1px solid rgba(209, 172, 97, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

/* Puente invisible para que el ratón pueda bajar del padre al submenú */
.nav__submenu::before {
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  content: "";
}

.nav__item--tiene-submenu:hover .nav__submenu,
.nav__item--tiene-submenu:focus-within .nav__submenu,
.nav__submenu-toggle[aria-expanded="true"] + .nav__submenu {
  visibility: visible;
  opacity: 1;
}

.nav__submenu a {
  padding: 11px 14px;
  font-size: 13.5px;
  white-space: nowrap;
  border-radius: 6px;
}

.nav__submenu a:hover,
.nav__submenu a[aria-current="page"] {
  color: var(--color-white);
  background: var(--color-red);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle span::before {
  transform: translateY(-8px);
}

.nav__toggle span::after {
  transform: translateY(6px);
}

.nav__toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav__toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-45deg);
}

/* --- Copy del hero ------------------------------------------------------ */

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 600px;
}

.hero__title {
  font-size: 54px;
  font-weight: var(--fw-bold);
  line-height: 1.06;
}

.hero__title .light {
  font-weight: var(--fw-medium);
}

.hero__title .dot {
  color: var(--color-red);
}

.hero__lead {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-gray-500);
}

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

/* --- Stats -------------------------------------------------------------- */

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat {
  display: flex;
  gap: 14px;
  align-items: center;
}

.stat__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--color-white);
}

.stat__label {
  font-size: 13px;
  color: var(--color-gray-500);
}

.hero__stats .divider {
  width: 1px;
  height: 44px;
  background: var(--color-gold-light);
}

/* --------------------------------------------------------------------------
   CONFÍAN EN NOSOTROS  (Figma 187:133)
   -------------------------------------------------------------------------- */

.partners {
  padding: 34px 0;
  background: var(--color-gray-100);
}

.partners__label {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.partners__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.partners__logos img {
  height: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   QUIÉNES SOMOS  (Figma 187:141)
   -------------------------------------------------------------------------- */

.about {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: linear-gradient(180deg, var(--color-section-light) 0%, var(--color-gray-100) 100%);
}

.about__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 265px;
  height: 100%;
  opacity: 0.08;
  pointer-events: none;
}

.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 44px;
  align-items: flex-start;
}

.about__intro {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.about__title {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 0.96;
  color: var(--color-navy);
}

.red-underline {
  width: 56px;
  height: 4px;
  background: var(--color-red);
  border: 0;
  border-radius: 2px;
  margin: 0;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15.5px;
  line-height: 1.66;
  color: #525c6b;
}

.about__text strong {
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
}

/* --- Tarjetas de feature ------------------------------------------------ */

.about__features {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.feature {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: center;
  min-height: 155px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #e5e8eb;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(13, 23, 41, 0.06);
}

.feature__tile {
  position: relative;
  flex: 0 0 132px;
  align-self: stretch;
  min-height: 155px;
  overflow: hidden;
}

/* Barra dorada que separa la miniatura del texto */
.feature__tile::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold-dark));
}

.feature__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(14, 35, 64, 0) 30%,
    rgba(14, 35, 64, 0.35) 60%,
    rgba(14, 35, 64, 0.92) 100%
  );
}

.feature__num {
  position: absolute;
  bottom: 14px;
  left: 13px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--color-white);
}

.feature__num::after {
  display: block;
  width: 25px;
  height: 3px;
  margin-top: 4px;
  background: var(--color-red);
  content: "";
}

.feature__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 24px 16px 0;
  min-width: 0;
}

.feature__body h3 {
  font-size: 16.5px;
  font-weight: var(--fw-bold);
  color: var(--color-navy);
}

.feature__body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--color-gray-700);
}

/* --------------------------------------------------------------------------
   ¿QUÉ ES UNA PÓLIZA?  (Figma 187:180)

   El banner es una composición de ancho completo con un overlay diagonal fijo,
   así que en escritorio se escala proporcionalmente con unidades `cqw`
   (1cqw = 1% del ancho de la sección; a 1440px coincide 1:1 con Figma).
   Por debajo de 960px se reordena en vertical.
   -------------------------------------------------------------------------- */

.banner-poliza {
  container-type: inline-size;
  position: relative;
  aspect-ratio: 1440 / 380;
  overflow: hidden;
  background: var(--color-black);
}

.banner-poliza__photo,
.banner-poliza__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-poliza__photo {
  filter: brightness(0.75);
}

.banner-poliza__copy,
.banner-poliza__info {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.banner-poliza__copy {
  top: 3.68cqw;
  left: 5cqw;
  width: 25cqw;
  gap: 1.25cqw;
}

.banner-poliza__copy .eyebrow {
  font-size: 0.833cqw;
  letter-spacing: 0.139cqw;
}

.banner-poliza__copy h2 {
  font-size: 1.875cqw;
  font-weight: var(--fw-bold);
  line-height: 1.13;
  color: var(--color-white);
}

.banner-poliza__copy h2 .accent {
  color: var(--color-red);
}

.banner-poliza__lead {
  font-size: 0.972cqw;
  line-height: 1.54;
  color: var(--color-gray-500);
}

.banner-poliza__copy .btn {
  padding: 0.972cqw 1.667cqw 0.972cqw 1.944cqw;
  font-size: 1.042cqw;
  gap: 0.7cqw;
}

.banner-poliza__copy .btn__icon {
  width: 1.25cqw;
  height: 1.25cqw;
  flex: 0 0 1.25cqw;
}

/* --- Columna derecha "Te garantiza" ------------------------------------- */

.banner-poliza__info {
  top: 3.89cqw;
  left: 76.8cqw;
  width: 20cqw;
  gap: 0.972cqw;
}

.banner-poliza__info h3 {
  font-size: 1.597cqw;
  font-weight: var(--fw-bold);
  color: var(--color-navy);
}

.banner-poliza__info-lead {
  font-size: 0.903cqw;
  line-height: 1.48;
  color: var(--color-gray-700);
}

.guarantees {
  display: flex;
  flex-direction: column;
  gap: 0.833cqw;
  width: 100%;
}

.guarantees li {
  display: flex;
  gap: 0.833cqw;
  align-items: center;
  padding-bottom: 0.833cqw;
  font-size: 0.972cqw;
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  border-bottom: 1px solid #cccfd4;
}

.guarantees li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.guarantees__icon {
  display: flex;
  flex: 0 0 2.778cqw;
  width: 2.778cqw;
  height: 2.778cqw;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-red);
  border-radius: 0.625cqw;
}

.guarantees__icon img {
  width: 1.389cqw;
  height: 1.389cqw;
}

/* --------------------------------------------------------------------------
   PROTECCIONES  (Figma 187:230)
   -------------------------------------------------------------------------- */

.protecciones {
  padding: 76px 0 76px;
  background: var(--color-white);
}

.protecciones__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 44px;
  text-align: center;
}

.protecciones__title {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-navy);
}

.protecciones__lead {
  font-size: 15px;
  color: var(--color-gray-700);
}

.protecciones__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- Tarjeta ------------------------------------------------------------ */

.proteccion {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1186px;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(14, 23, 41, 0.12);
}

.proteccion--reverse {
  flex-direction: row-reverse;
  margin-left: auto;
}

.proteccion__image {
  position: relative;
  flex: 0 0 480px;
  min-height: 346px;
  overflow: hidden;
}

.proteccion__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.proteccion__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(14, 35, 64, 0) 9%,
    rgba(14, 35, 64, 0.35) 45%,
    rgba(14, 35, 64, 0.92) 100%
  );
}

/* Barra dorada entre imagen y texto */
.proteccion__image::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 8px;
  content: "";
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold-dark));
}

.proteccion--reverse .proteccion__image::before {
  right: auto;
  left: 0;
}

.proteccion__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  min-width: 0;
  padding: 44px 50px;
}

.proteccion__header {
  display: flex;
  gap: 14px;
  align-items: center;
}

.proteccion__num {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-red);
}

/* El padding vertical hace que la barra roja mida 46px con el título en una
   línea (como en Figma) y crezca sola cuando el texto se parte en dos. */
.proteccion__name {
  padding: 8px 0 8px 14px;
  font-size: 24px;
  font-weight: var(--fw-bold);
  line-height: 1.25;
  color: var(--color-navy);
  border-left: 3px solid var(--color-red);
}

.proteccion__text p {
  font-size: 15px;
  line-height: 1.83;
  color: var(--color-gray-700);
}

.proteccion__text strong {
  font-weight: var(--fw-semibold);
  color: var(--color-red);
}

.btn--card {
  align-self: flex-start;
  padding: 12px 24px;
  gap: 8px;
  font-size: 14px;
}

.btn--card .btn__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

/* --------------------------------------------------------------------------
   NUESTRAS SOLUCIONES INCLUYEN  (Figma 187:411)
   -------------------------------------------------------------------------- */

.soluciones {
  padding: 40px;
  background: linear-gradient(180deg, var(--color-navy) 0%, #0b1d37 50%, var(--color-hero-bg) 100%);
}

.soluciones__bento {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.soluciones__row {
  display: flex;
  gap: 12px;
}

.sol__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Tile grande -------------------------------------------------------- */

.sol-head {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 12px;
}

.sol-head .sol__bg {
  object-position: bottom;
}

.sol-head::after,
.sol::after {
  position: absolute;
  inset: 0;
  content: "";
}

.sol-head::after {
  background: linear-gradient(180deg, rgba(14, 35, 64, 0.34), rgba(5, 8, 15, 0.87));
}

.sol-head__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 340px;
  padding: 48px;
}

.sol-head__body h2 {
  max-width: 600px;
  font-size: 34px;
  font-weight: var(--fw-regular);
  line-height: 1.18;
  color: var(--color-white);
}

.sol-head__body h2 strong {
  font-weight: var(--fw-bold);
}

.eyebrow--wide {
  letter-spacing: 3px;
}

.red-underline--wide {
  width: 60px;
  height: 4px;
  border-radius: 0;
}

.red-underline--sm {
  width: 40px;
  height: 3px;
  border-radius: 0;
}

/* --- Tiles pequeños ----------------------------------------------------- */

.sol {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 320px;
  overflow: hidden;
  border-radius: 12px;
}

.sol::after {
  background: linear-gradient(180deg, rgba(14, 35, 64, 0.35), rgba(5, 8, 15, 0.92));
}

.sol__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 320px;
  padding: 32px;
  color: var(--color-white);
}

.sol__icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius);
}

.sol__icon img {
  width: 22px;
  height: 22px;
}

.sol__body h3 {
  font-size: 25px;
  font-weight: var(--fw-bold);
  line-height: 1.16;
}

.sol__body p {
  font-size: 16px;
  line-height: 1.5;
}

.sol__body a {
  font-weight: var(--fw-semibold);
  color: var(--color-red);
}

.sol__body a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   PROCESO 4 PASOS  (Figma 187:443)
   -------------------------------------------------------------------------- */

.proceso {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: linear-gradient(270deg, var(--color-gray-100) 0%, var(--color-section-light) 50%);
}

.proceso__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 306px;
  height: 100%;
  opacity: 0.08;
  pointer-events: none;
}

.proceso__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.proceso__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.proceso__heading {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.proceso__title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 0.96;
  color: var(--color-navy);
}

/* --- Timeline ----------------------------------------------------------- */

.timeline {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

/* Línea vertical que une los pasos */
.timeline::before {
  position: absolute;
  top: 23px;
  bottom: 41px;
  left: 22px;
  width: 2px;
  content: "";
  background: #ced2d8;
}

.step {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
}

.step__num {
  display: flex;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 50%;
}

.step__ring {
  display: flex;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  background: var(--color-section-light);
  border: 1.5px solid var(--color-red);
  border-radius: 50%;
}

.step__ring img {
  width: 30px;
  height: 30px;
}

.step__body h3 {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
}

.step__body p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-gray-700);
}

/* --------------------------------------------------------------------------
   VÍDEO  (Figma 187:500)
   -------------------------------------------------------------------------- */

.video {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: #000b1d;
}

.video__thumb {
  position: absolute;
  top: 14px;
  left: 44.4%;
  width: 55.6%;
  height: 554px;
}

.video__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 11, 29, 0.54), rgba(0, 11, 29, 0.54)),
    linear-gradient(90deg, #000b1d 0%, rgba(0, 11, 29, 0) 14%);
}

.video__play {
  position: absolute;
  top: 50%;
  left: 44%;
  z-index: 1;
  display: flex;
  width: 104px;
  height: 104px;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.video__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.video__play img {
  width: 37px;
  height: 37px;
}

.video__inner {
  position: relative;
  z-index: 2;
}

.video__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  max-width: 50%;
}

.video__copy h2 {
  font-size: 34px;
  font-weight: var(--fw-bold);
  line-height: 1.18;
  color: var(--color-white);
}

.video__copy blockquote {
  max-width: 440px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-500);
}

.video__link {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.video__link-icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  border-radius: 50%;
}

.video__link-icon img {
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   TESTIMONIOS  (Figma 187:515)
   -------------------------------------------------------------------------- */

.testimonios {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: linear-gradient(180deg, var(--color-section-light), var(--color-gray-100));
}

.testimonios__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 354px;
  height: 100%;
  opacity: 0.08;
  pointer-events: none;
}

.testimonios__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonios__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.testimonios__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.testimonios__title {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-navy);
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  width: 100%;
  max-width: 748px;
  margin: 0;
  padding: 48px 64px;
  text-align: center;
  background: var(--color-white);
  border: 1px solid #e5e8eb;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(13, 23, 41, 0.08);
}

.quote-card__mark {
  font-size: 80px;
  font-weight: var(--fw-bold);
  line-height: 0.7;
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote-card blockquote {
  margin: 0;
  font-size: 21px;
  line-height: 1.55;
  color: var(--color-gray-700);
}

.quote-card figcaption {
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
}

.testimonios__dots {
  width: 142px;
  height: 9px;
}

/* --------------------------------------------------------------------------
   CONVERSIÓN CTA  (Figma 187:537)

   Igual que el banner de póliza: el overlay diagonal es fijo, así que en
   escritorio la composición escala con `cqw` sobre el ancho del banner (1240px).
   -------------------------------------------------------------------------- */

.cta {
  position: relative;
  padding: 80px 0;
  background: var(--color-white);
}

.cta__banner {
  container-type: inline-size;
  position: relative;
  aspect-ratio: 1240 / 380;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-black);
}

.cta__photo,
.cta__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__photo {
  object-position: bottom;
  filter: brightness(0.7);
}

.cta__epicenter {
  position: absolute;
  top: 15.32cqw;
  left: 8.871cqw;
  width: 6.452cqw;
  height: 6.452cqw;
}

.cta__copy,
.cta__contact {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta__copy {
  top: 5.565cqw;
  left: 4.516cqw;
  width: 26.94cqw;
  gap: 1.452cqw;
}

.cta__copy h2 {
  font-size: 2.419cqw;
  font-weight: var(--fw-bold);
  line-height: 1.1;
  color: var(--color-white);
}

.cta__copy h2 .accent {
  color: var(--color-red);
}

.cta__copy > p {
  font-size: 1.129cqw;
  line-height: 1.52;
  color: var(--color-gray-500);
}

.cta__copy > p strong {
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.cta__copy .btn {
  padding: 1.129cqw 1.774cqw 1.129cqw 2.097cqw;
  gap: 0.806cqw;
  font-size: 1.129cqw;
}

.cta__copy .btn__icon {
  width: 1.452cqw;
  height: 1.452cqw;
  flex: 0 0 1.452cqw;
}

.cta__stats {
  display: flex;
  gap: 1.29cqw;
}

.cta__stats strong {
  display: block;
  font-size: 1.048cqw;
  font-weight: var(--fw-bold);
  color: var(--color-red);
}

.cta__stats span {
  font-size: 0.887cqw;
  color: var(--color-gray-500);
}

/* --- Bloque "Hablemos" -------------------------------------------------- */

.cta__contact {
  top: 4.435cqw;
  left: 75.4cqw;
  width: 23.63cqw;
  gap: 1.29cqw;
}

.cta__contact h3 {
  font-size: 1.855cqw;
  font-weight: var(--fw-bold);
  color: var(--color-navy);
}

.cta__contact > p {
  font-size: 1.048cqw;
  line-height: 1.48;
  color: var(--color-gray-700);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.968cqw;
  width: 100%;
}

.contact-list li {
  display: flex;
  gap: 0.887cqw;
  align-items: center;
  padding-bottom: 0.968cqw;
  font-size: 1.129cqw;
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  border-bottom: 1px solid #cccfd4;
}

.contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

/* Antes llevaba la dirección completa y se reducía para que cupiera; ahora que
   el enlace dice «Correo Electrónico» va al mismo tamaño que el resto. */
.contact-list__email {
  font-size: 1.129cqw;
}

.contact-list__icon {
  display: flex;
  flex: 0 0 3.065cqw;
  width: 3.065cqw;
  height: 3.065cqw;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-red);
  border-radius: 0.726cqw;
}

.contact-list__icon img {
  width: 1.452cqw;
  height: 1.452cqw;
}

/* Algunos iconos ya traen el aro dibujado dentro del propio SVG */
.contact-list__icon--bare {
  border: 0;
}

.contact-list__icon--bare img {
  width: 3.065cqw;
  height: 3.065cqw;
}

/* --- Emblema y tira de beneficios --------------------------------------- */

.cta__shield {
  position: relative;
  z-index: 2;
  display: block;
  width: 74px;
  height: 84px;
  margin: -42px auto -42px;
}

.benefits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  margin-top: 16px;
  padding: 22px 44px;
  background: var(--color-card-dark);
  border-radius: var(--radius-lg);
}

.benefits li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 0;
  text-align: center;
}

.benefits li + li {
  border-left: 1px solid var(--color-gold);
}

.benefits strong {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.benefits span {
  font-size: 12.5px;
  color: var(--color-gray-500);
}

/* --------------------------------------------------------------------------
   DESCARGAR APP  (Figma 187:672)
   -------------------------------------------------------------------------- */

.app {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
}

.app__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(87, 13, 18, 0.9) 0%,
    rgba(61, 8, 13, 0.93) 55%,
    rgba(26, 3, 6, 0.96) 100%
  );
}

.app__sparkle {
  position: absolute;
  top: 0;
  right: 0;
  width: 990px;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: screen;
}

.app__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 56px;
  align-items: center;
}

.app__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  flex: 1 1 auto;
  min-width: 0;
}

.app__badge {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-red);
  background: var(--color-white);
  border-radius: 20px;
}

.app__copy h2 {
  font-size: 40px;
  font-weight: var(--fw-bold);
  line-height: 1.12;
  color: var(--color-white);
}

.app__tagline {
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-white);
}

.app__lead {
  font-size: 16px;
  line-height: 1.55;
  color: #ebedf2;
}

.app__cta-label {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.app__stores {
  display: flex;
  gap: 9px;
  align-items: center;
}

.app__stores img {
  height: 54px;
  width: auto;
}

.app__note {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

/* El mockup marca la altura de toda la sección: a 480 px dejaba unos 250 px de
   aire sobre y bajo el texto, que sólo mide 344. */
.app__phones {
  flex: 0 0 330px;
}

.app__phones img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   RED DE SOLUCIONES  (Figma 187:690)
   -------------------------------------------------------------------------- */

.red {
  padding: 76px 0;
  background: var(--color-white);
}

.red__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 48px;
  text-align: center;
}

.red__title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-navy);
}

.red__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 51px;
  align-items: center;
  justify-content: center;
}

.red__logos img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   COMENTARIO  (Figma 187:708)
   -------------------------------------------------------------------------- */

.comentario {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  display: flex;
  align-items: center;
  padding: 56px 0;
  background: var(--color-hero-bg);
}

.comentario__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comentario::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(14, 35, 64, 0.5), rgba(5, 8, 15, 0.9));
}

.comentario__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.comentario__icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius);
}

.comentario__icon img {
  width: 22px;
  height: 22px;
}

.comentario h2 {
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
}

.comentario p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-gray-500);
}

.comentario a {
  font-weight: var(--fw-semibold);
  color: var(--color-red);
}

.comentario strong {
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   FOOTER  (Figma 371:87)
   -------------------------------------------------------------------------- */

.footer {
  position: relative;
  padding: 48px 0 40px;
  background: var(--color-black);
}

.footer__divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9px;
  object-fit: cover;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer__logo {
  width: 269px;
  height: auto;
}

.footer__claim {
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  text-align: right;
  color: var(--color-white);
}

.footer__claim .accent {
  color: var(--color-red);
}

.footer__rule {
  height: 1px;
  margin: 28px 0;
  background: var(--color-gray-500);
  border: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--color-gray-500);
}

.footer__bottom a {
  font-weight: var(--fw-medium);
}

.footer__bottom a:hover {
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 959px) {
  .banner-poliza {
    container-type: normal;
    display: grid;
    gap: 32px;
    aspect-ratio: auto;
    padding: 48px 24px;
  }

  .banner-poliza__overlay {
    display: none;
  }

  .banner-poliza__photo {
    filter: brightness(0.35);
  }

  .banner-poliza__copy,
  .banner-poliza__info {
    position: static;
    width: 100%;
    max-width: 560px;
    gap: 18px;
  }

  .banner-poliza__copy .eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .banner-poliza__copy h2 {
    font-size: 28px;
  }

  .banner-poliza__lead {
    font-size: 14px;
  }

  .banner-poliza__copy .btn {
    padding: 14px 24px 14px 28px;
    font-size: 15px;
    gap: 10px;
  }

  .banner-poliza__copy .btn__icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .banner-poliza__info {
    gap: 14px;
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
  }

  .banner-poliza__info h3 {
    font-size: 23px;
  }

  .banner-poliza__info-lead {
    font-size: 13px;
  }

  .guarantees {
    gap: 12px;
  }

  .guarantees li {
    gap: 12px;
    padding-bottom: 12px;
    font-size: 14px;
  }

  .guarantees__icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }

  .guarantees__icon img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1023px) {
  .nav__right {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  /* Panel desplegable del menú móvil */
  .nav--open .nav__right {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--color-card-dark);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }
  .nav--open .nav__links {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    width: 100%;
    font-size: 15px;
  }
  .nav--open .nav__links > li {
    width: 100%;
  }
  /* En móvil el submenú va siempre desplegado: el acordeón obligaba a un toque
     extra sobre un objetivo pequeño y se prestaba a confusión con el enlace del
     padre. El botón de despliegue sobra aquí. */
  .nav--open .nav__item--tiene-submenu {
    flex-wrap: wrap;
  }
  .nav--open .nav__submenu-toggle {
    display: none;
  }
  .nav--open .nav__submenu,
  .nav--open .nav__item--tiene-submenu:hover .nav__submenu,
  .nav--open .nav__item--tiene-submenu:focus-within .nav__submenu {
    position: static;
    display: flex;
    width: 100%;
    min-width: 0;
    margin: 10px 0 0;
    padding: 8px;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }
  .nav--open .nav__submenu::before {
    content: none;
  }
  .nav--open .nav__submenu a {
    white-space: normal;
  }
}

@media (max-width: 1023px) {

  .hero__title {
    font-size: 40px;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 28px 40px;
    justify-content: flex-start;
  }

  .hero__stats .divider {
    display: none;
  }

  .section-title {
    font-size: 36px;
  }

  .about__inner {
    flex-direction: column;
  }

  .about__intro {
    flex: 1 1 auto;
    max-width: 640px;
  }

  .about__bg {
    display: none;
  }

  .proteccion,
  .proteccion--reverse {
    flex-direction: column;
    max-width: none;
    margin-left: 0;
  }

  .proteccion__image {
    flex: 0 0 240px;
    min-height: 240px;
  }

  .proteccion__image::before,
  .proteccion--reverse .proteccion__image::before {
    top: auto;
    right: 0;
    left: 0;
    width: auto;
    height: 8px;
  }

  .proteccion__text {
    padding: 32px 28px;
  }

  .proteccion__num {
    font-size: 38px;
  }

  .proteccion__name {
    font-size: 20px;
  }

  .proteccion__text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .protecciones__title {
    font-size: 44px;
  }

  .soluciones__row {
    flex-direction: column;
  }

  .proceso__inner {
    flex-direction: column;
    gap: 40px;
  }

  .proceso__heading {
    flex: 1 1 auto;
  }

  .proceso__title {
    font-size: 56px;
  }

  .video__thumb {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    margin-bottom: 40px;
  }

  .video__thumb::after {
    background: linear-gradient(180deg, rgba(0, 11, 29, 0.3), rgba(0, 11, 29, 0.6));
  }

  .video__play {
    left: 50%;
    width: 80px;
    height: 80px;
  }

  .video__copy {
    max-width: none;
  }

  /* El banner de CTA pasa a flujo vertical */
  .cta__banner {
    container-type: normal;
    display: grid;
    gap: 32px;
    aspect-ratio: auto;
    padding: 40px 28px;
  }

  .cta__overlay,
  .cta__epicenter {
    display: none;
  }

  .cta__photo {
    filter: brightness(0.3);
  }

  .cta__copy,
  .cta__contact {
    position: static;
    width: 100%;
    gap: 18px;
  }

  .cta__copy h2 {
    font-size: 28px;
  }

  .cta__copy > p {
    font-size: 14px;
  }

  .cta__copy .btn {
    padding: 14px 22px 14px 26px;
    gap: 10px;
    font-size: 14px;
  }

  .cta__copy .btn__icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .cta__stats {
    gap: 16px;
  }

  .cta__stats strong {
    font-size: 13px;
  }

  .cta__stats span {
    font-size: 11px;
  }

  .cta__contact {
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
  }

  .cta__contact h3 {
    font-size: 23px;
  }

  .cta__contact > p {
    font-size: 13px;
  }

  .contact-list {
    gap: 12px;
  }

  .contact-list li {
    gap: 11px;
    padding-bottom: 12px;
    font-size: 14px;
  }

  .contact-list__email {
    font-size: 14px;
  }

  .contact-list__icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .contact-list__icon img {
    width: 18px;
    height: 18px;
  }

  .contact-list__icon--bare img {
    width: 38px;
    height: 38px;
  }

  .benefits {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px;
  }

  .benefits li {
    flex: 1 1 45%;
  }

  .benefits li + li {
    border-left: 0;
  }

  .app__inner {
    flex-direction: column;
    gap: 40px;
  }

  .app__phones {
    flex: 1 1 auto;
    max-width: 380px;
  }

  .app__sparkle {
    width: 100%;
  }

  .red__title {
    font-size: 40px;
  }

  .red__logos {
    gap: 32px;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__claim {
    text-align: left;
  }
}

@media (max-width: 639px) {
  .hero {
    padding-bottom: 48px;
  }

  .hero__inner {
    gap: 40px;
  }

  .nav__logo img {
    width: 190px;
    height: auto;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .section-title {
    font-size: 30px;
  }

  .about__title {
    font-size: 44px;
  }

  .feature {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .feature__tile {
    flex: 0 0 120px;
    min-height: 120px;
  }

  .feature__tile::before {
    top: auto;
    left: 0;
    width: auto;
    height: 4px;
  }

  .feature__body {
    padding: 20px;
  }

  .partners__logos {
    justify-content: center;
    gap: 24px 32px;
  }

  .soluciones {
    padding: 24px;
  }

  .sol-head__body {
    padding: 32px 24px;
  }

  .sol-head__body h2 {
    font-size: 26px;
  }

  .step {
    flex-wrap: wrap;
    gap: 12px;
  }

  .step__body {
    flex: 1 1 100%;
    padding-left: 66px;
  }

  .timeline::before {
    display: none;
  }

  .quote-card {
    padding: 32px 24px;
  }

  .quote-card blockquote {
    font-size: 17px;
  }

  .testimonios__title {
    font-size: 44px;
  }

  .video__copy h2 {
    font-size: 26px;
  }

  .benefits li {
    flex: 1 1 100%;
  }

  .app__copy h2 {
    font-size: 30px;
  }

  .app__stores {
    flex-wrap: wrap;
  }

  .red__title {
    font-size: 32px;
  }

  .comentario h2 {
    font-size: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* --------------------------------------------------------------------------
   BANNER CTA — variante con antetítulo
   Con el antetítulo el bloque tiene un elemento más y, empezando a 69 cqw,
   el párrafo cae donde el panel oscuro ya se ha estrechado por la diagonal y
   el texto se salía sobre la fotografía. El diseño coloca este bloque a 40 px
   del borde y limita el párrafo a 310 px (Figma 616:107 / 616:110).
   -------------------------------------------------------------------------- */

.cta__copy:has(.eyebrow) {
  top: 3.226cqw;
}

.cta__copy:has(.eyebrow) > p:not(.eyebrow) {
  max-width: 25cqw;
}

/* --------------------------------------------------------------------------
   Reproductor de vídeo
   El iframe sólo existe después de pulsar (ver main.js); al aparecer se retiran
   el velo y el botón de la miniatura.
   -------------------------------------------------------------------------- */

.video__frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.video__thumb--activo::after,
.video__thumb--activo .video__play {
  display: none;
}
