/* ═══════════════════════════════════════════════════
    styles.css
   ═══════════════════════════════════════════════════ */

:root {
  --blue: #1f4e79;
  --blue-dk: #163858;
  --blue-lt: #2b6cb0;
  --orange: #ff6b00;
  --orange-dk: #e05f00;
  --green: #2ecc71;
  --green-dk: #27ae60;
  --wa: #25d366;
  --wa-dk: #1db954;
  --white: #ffffff;
  --gray: #f4f5f7;
  --gray-md: #e8e9ec;
  --text: #1a1a2e;
  --text-2: #4a4a6a;
  --text-3: #9090a8;

  --font-title: "Poppins", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-full: 100px;

  --sh-orange: 0 4px 20px rgba(255, 107, 0, 0.35);
  --sh-wa: 0 4px 20px rgba(37, 211, 102, 0.3);
  --sh-card: 0 2px 20px rgba(31, 78, 121, 0.08);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.22s;
  --sticky-h: 76px;
}

/* ── Reset ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: var(--sticky-h);
}
img,
video {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
}

/* ── Utilities ──────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 680px;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}

/* ── Backgrounds ────────────────────────────────────── */
.bg-white {
  background: var(--white);
  padding: 52px 0;
}
.bg-gray {
  background: var(--gray);
  padding: 52px 0;
}
.bg-blue {
  background: var(--blue);
  padding: 52px 0 40px;
}
.bg-blue-dk {
  background: var(--blue-dk);
  padding: 20px 0;
}

/* ── Typography ─────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
h2 {
  font-size: clamp(20px, 5.5vw, 26px);
  color: var(--text);
}
h3 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 0.4rem;
}
p {
  font-size: 15px;
  margin-bottom: 1rem;
  color: var(--text-2);
}
.lead {
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
}

/* ── Section tag ────────────────────────────────────── */
.section-tag {
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.section-tag.centered {
  margin: 0 auto 14px;
}

/* ══════════════════════════════════════════════════════
   SVG ICON SIZES
══════════════════════════════════════════════════════ */
.ic-btn {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.ic-cred {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--blue);
  fill: none;
}
.ic-star {
  width: 14px;
  height: 14px;
  color: #f4a017;
  fill: #f4a017;
}
.ic-badge-check {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  stroke: var(--green-dk);
  fill: none;
}
.ic-alert-inline {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #c0392b;
  fill: none;
}
.ic-lock {
  width: 13px;
  height: 13px;
  stroke: rgba(255, 255, 255, 0.4);
  fill: none;
  display: inline-block;
  vertical-align: middle;
}

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 17px 22px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  min-height: 56px;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  text-align: center;
}
.btn-block {
  width: 100%;
  display: flex;
}
.btn-large {
  font-size: 17px;
  min-height: 62px;
  padding: 20px 24px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--sh-orange);
}
.btn-primary:active {
  transform: scale(0.97);
  background: var(--orange-dk);
}
@media (hover: hover) {
  .btn-primary:hover {
    background: var(--orange-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 107, 0, 0.42);
  }
}

.btn-wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: var(--sh-wa);
}
.btn-wa:active {
  transform: scale(0.97);
  background: var(--wa-dk);
}
@media (hover: hover) {
  .btn-wa:hover {
    background: var(--wa-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
  }
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 16px;
}
.micro-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  padding: 32px 0 40px;
}
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.profile-pic {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.hero-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin: 0;
}
.hero-role {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  letter-spacing: 0.04em;
}

.main-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 5vw + 1rem, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 auto 28px;
  max-width: 850px;
  text-wrap: balance;
  padding: 0 10px;
}
.main-title em {
  font-style: normal;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.main-title em::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: -2px;
  right: -2px;
  height: 5px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.25;
  z-index: -1;
}

/* ══════════════════════════════════════════════════════
   VIDEO PLAYER PERSONALIZADO
══════════════════════════════════════════════════════ */
.video-wrapper {
  margin: 0 0 28px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  background: #000;
}
.vp {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a1929;
  overflow: hidden;
  cursor: pointer;
}
.vp video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.vp.started .vp-hint {
  display: none;
}

.vp-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 20;
  transition: opacity 0.4s var(--ease);
}
.vp-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.vp-overlay:not(.hidden) ~ .vp-bar {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(10px);
}

.vp-play-big {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5);
  animation: playPulse 2.2s ease-in-out infinite;
  transition: transform 0.2s var(--ease);
}
.vp-play-big:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 0 0 14px rgba(255, 107, 0, 0.18);
}
.vp-play-big:active {
  transform: scale(0.95);
}
@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5);
  }
  60% {
    box-shadow: 0 0 0 18px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}
.vp-hint {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.4;

  margin: 0;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.vp-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 40px 14px 10px;
  z-index: 15;

  opacity: 0;
  transform: translateY(20px); /* Empieza un poco más abajo */
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  pointer-events: none;
}
.vp.show-controls .vp-bar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vp.hide-cursor {
  cursor: none;
}

.vp-progress-wrap {
  padding: 8px 0 4px;
  cursor: pointer;
}
.vp-progress-bg {
  height: 3px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  overflow: hidden;
  transition: height 0.15s var(--ease);
}
.vp-progress-wrap:hover .vp-progress-bg {
  height: 5px;
}
.vp-progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}
.vp-controls-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vp-ctrl {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  opacity: 0.85;
  transition:
    opacity 0.15s,
    background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.vp-ctrl:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.vp-ctrl svg {
  display: block;
}
.vp-time {
  font-family: var(--font-title);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  flex: 1;
  letter-spacing: 0.03em;
  user-select: none;
}
.vp-ctrl-right {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

/* ══════════════════════════════════════════════════════
   CTA QUICK
══════════════════════════════════════════════════════ */
.cta-quick {
  padding: 18px 0 24px;
}
.cta-quick .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* ══════════════════════════════════════════════════════
   PROBLEMA
══════════════════════════════════════════════════════ */
.symptom-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.symptom-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-md);
  border-radius: var(--r-md);
  padding: 13px 16px;
  box-shadow: var(--sh-card);
}
.sym-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(31, 78, 121, 0.08);
}
.sym-ic {
  width: 20px;
  height: 20px;
  color: var(--blue);
  fill: none;
  stroke-width: 2.5px;
}

.tried-block {
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-sm);
  padding: 20px 18px;
  box-shadow: var(--sh-card);
}
.tried-title {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 12px;
}
ul.cross-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
ul.cross-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}
.ic-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #e74c3c;
}
.ic-cross svg {
  stroke: #e74c3c;
}
.pain-point {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}
.pain-point strong {
  color: var(--orange);
}

/* ══════════════════════════════════════════════════════
   EXPLICACIÓN
══════════════════════════════════════════════════════ */
.insight-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8f3;
  border: 1px solid #ffd4b0;
  border-radius: var(--r-md);
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  margin-top: 20px;
  text-align: left;
}
.insight-pill span {
  line-height: 1.5;
}
.insight-pill strong {
  color: var(--blue);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   MÉTODO
══════════════════════════════════════════════════════ */
.steps-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-md);
  border-radius: var(--r-md);
  padding: 18px 16px;
  box-shadow: var(--sh-card);
}

.step-number {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  opacity: 0.12;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
  letter-spacing: -2px;
}
.step-content {
  flex: 1;
}
.step-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  background: rgba(234, 88, 12, 0.1);
  border-radius: 10px;
  margin-bottom: 12px;
}
.step-ic {
  width: 20px;
  height: 20px;
  color: var(--orange-dk);
  stroke-width: 2.5;
  fill: none;
}
.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4%;
  letter-spacing: 0;
}
.step-content p {
  font-size: 13px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.55;
}
.step-arrow {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  color: var(--orange);
  opacity: 0.6;
}
.step-arrow svg {
  stroke: var(--text-3);
}

/* ══════════════════════════════════════════════════════
   AUTORIDAD
══════════════════════════════════════════════════════ */
.authority-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.authority-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--gray-md);
  box-shadow: 0 6px 24px rgba(31, 78, 121, 0.12);
}
.authority-role {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 12px;
}
.authority-text h2 {
  margin-bottom: 4px;
}
.creds {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--gray);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.cred strong {
  font-weight: 700;
  color: var(--black); /* O un color más oscuro para que resalte del gris */
}

/* Cambiar el color del icono para que "brille" un poco más */
.ic-cred {
  color: var(--orange);
  flex-shrink: 0; /* Para que no se aplaste si el texto es largo */
}

.cred:hover {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: var(--black);
}

.authority-photo-wrap {
  flex-shrink: 0; /* Esto evita que la imagen se aplaste */
}

/* ══════════════════════════════════════════════════════
   TESTIMONIOS — CARRUSEL INFINITO
══════════════════════════════════════════════════════ */
.testimonials {
  padding-bottom: 40px;
  overflow: hidden;
}
.testimonials h2 {
  color: var(--text);
  margin-bottom: 28px;
}

/* Wrapper: oculta lo que sale de los bordes */
.t-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 0 36px;
}

/* Track: flex row, NO scroll. JS mueve con transform. */
.t-track {
  display: flex;
  gap: 20px;
  padding: 0;
  /* will-change: transform; */
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;

  touch-action: pan-y;
  will-change: transform;
}
.t-track:active {
  cursor: grabbing;
}

/* Tarjeta base */
.t-card {
  flex: 0 0 290px;
  width: 290px;
  background: var(--white);
  border: 1px solid var(--gray-md);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  /* La transición de escala/opacidad la aplica JS inline,
     pero definimos el timing aquí para que sea suave */
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* Estado inicial: JS sobreescribirá en el primer frame */
  transform: scale(0.92);
  opacity: 0.55;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

/* Media zone */
.t-media-wrap {
  width: 100%;
  background: #e8ecf0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
}
.t-media-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8e4f0 0%, #c4d4e5 100%);
}
.t-media-img,
.t-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.t-avatar-initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  color: var(--white);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cuerpo */
.t-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  text-align: center;
}
.t-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 4px;
}
.t-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  padding: 0 5px;
}
.t-name {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.t-sport {
  font-weight: 400;
  color: var(--text-3);
  font-size: 12px;
}
.t-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  color: var(--green-dk);
  background: rgba(46, 204, 113, 0.1);
  border-radius: var(--r-full);
  padding: 4px 10px;
  align-self: center;
  text-align: center;
}

/* Dots */
.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-md);
  border: none;
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    width var(--dur) var(--ease);
  padding: 0;
  flex-shrink: 0;
}
.dot.active {
  background: var(--blue);
  width: 22px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════
   PARA QUIÉN
══════════════════════════════════════════════════════ */
ul.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
ul.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--gray);
  border-radius: var(--r-md);
  padding: 13px 16px;
  line-height: 1.5;
}
.ic-check-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ic-check-wrap svg {
  stroke: var(--green-dk);
  fill: none;
}
.nofor-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8f0;
  border: 1px solid #ffd4a0;
  border-radius: var(--r-md);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}
.nofor-box strong {
  color: #c0392b;
}

/* ══════════════════════════════════════════════════════
   FOOTER CTA
══════════════════════════════════════════════════════ */
.footer-cta {
  padding: 48px 0 40px;
}
.cta-final-h {
  font-family: var(--font-title);
  font-size: clamp(26px, 7vw, 36px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.cta-final-p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  line-height: 1.65;
}
.footer-cta .btn {
  margin-bottom: 12px;
}
.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  font-weight: 500;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 32px;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════
   STICKY BAR
══════════════════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--gray-md);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.sticky-bar.visible {
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   DESKTOP — 640px+
══════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .sticky-bar {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
  .profile-pic {
    width: 110px;
    height: 110px;
  }

  .cta-group {
    flex-direction: row;
    justify-content: center;
  }
  .cta-group .btn {
    flex: 1;
    max-width: 280px;
  }

  .authority-inner {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 32px;
  }
  .authority-img {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
  }
  .cred {
    text-align: left;
  }

  /* Tarjeta algo más ancha en desktop */
  .t-card {
    flex: 0 0 320px;
    width: 320px;
  }

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

/* Mobile pequeño */
@media (max-width: 480px) {
  .main-title {
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .hero-brand {
    margin-bottom: 16px;
  }
  /* Tarjeta más estrecha en móviles pequeños */
  .t-card {
    flex: 0 0 260px;
    width: 260px;
  }
}

.no-break {
  white-space: nowrap;
}
