/* ══════════════════════════════════════════════════════════
   PAÑIWE — MAIN CSS  |  Mobile First
   ══════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --nav-h: 80px;
  --brand: #900870;
  --brand-hover: #c95794;
  --utilitario: #bb9bac;
  --white: #fff;
  --text: #281323;
  --overlay: rgb(40 19 35 / 72%);
  --radius: 16px;
  --transition: 0.25s ease;
  --ff-title: "Zalando Sans", sans-serif;
  --ff-body: "IBM Plex Sans JP", sans-serif;
  --bg-degrade: linear-gradient(
    180deg,
    rgba(187, 155, 172, 1) 0%,
    rgba(187, 155, 172, 1) 51%,
    rgba(149, 120, 137, 1) 74%,
    rgba(112, 85, 102, 1) 88%,
    rgba(40, 19, 35, 1) 100%
  );
  --section-gap: 72px;
  --card-bg: #fdf6fa;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ══════════════════════════════
   CONTENEDOR
══════════════════════════════ */

.boxer {
  margin: 0 auto;
  max-width: 1300px;
  width: 92%;
}

/* ══════════════════════════════
   UTILIDADES — TEXTOS
══════════════════════════════ */

.txt-principal  { color: var(--brand); }
.txt-second     { color: var(--brand-hover); }
.txt-dark       { color: var(--text); }
.txt-white      { color: var(--white); }

.txt-center { text-align: center; }
.txt-left   { text-align: left; }
.txt-right  { text-align: right; }

/* ══════════════════════════════
   UTILIDADES — FONDOS
══════════════════════════════ */

.bg-principal  { background: var(--brand); }
.bg-dark       { background: var(--text); }
.bg-white      { background: var(--white); }
.bg-second     { background: var(--brand-hover); }
.bg-degrade    { background: var(--bg-degrade); }
.bg-utilitario { background: var(--utilitario); }
.bg-light      { background: var(--card-bg); }

/* ══════════════════════════════
   UTILIDADES — SOMBRA
══════════════════════════════ */

.shadow-box { box-shadow: 0 3px 14px 2px #0c0c0c24; }

/* ══════════════════════════════
   TIPOGRAFÍA
══════════════════════════════ */

h1 {
  font-size: clamp(30px, 7vw, 56px);
  line-height: 1.08;
  font-family: var(--ff-title);
}

h2 {
  font-size: clamp(26px, 5.5vw, 48px);
  line-height: 1.1;
  font-family: var(--ff-title);
}

h3 {
  font-size: clamp(22px, 4.5vw, 36px);
  line-height: 1.15;
  font-family: var(--ff-title);
}

h4 {
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.2;
  font-family: var(--ff-title);
}

p { line-height: 1.65; }

.ff-title { font-family: var(--ff-title); }

.fz-14 { font-size: 14px; }
.fz-16 { font-size: 16px; }
.fz-18 { font-size: 18px; }
.fz-20 { font-size: 20px; }
.fz-24 { font-size: 24px; }
.fz-32 { font-size: 32px; }
.fz-40 { font-size: 40px; }

/* ══════════════════════════════
   LABEL DECORATIVO
══════════════════════════════ */

.label-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ══════════════════════════════
   ESPACIADO
══════════════════════════════ */

.pb-8  { padding-bottom: 8px; }
.pb-16 { padding-bottom: 16px; }
.pb-24 { padding-bottom: 24px; }
.pb-32 { padding-bottom: 32px; }
.pb-40 { padding-bottom: 40px; }
.pb-48 { padding-bottom: 48px; }
.pb-56 { padding-bottom: 56px; }
.pb-80 { padding-bottom: 80px; }

.pt-16 { padding-top: 16px; }
.pt-24 { padding-top: 24px; }
.pt-60 { padding-top: 60px; }
.pt-80 { padding-top: 80px; }

.px-16 { padding-left: 16px; padding-right: 16px; }
.px-24 { padding-left: 24px; padding-right: 24px; }
.px-32 { padding-left: 32px; padding-right: 32px; }

.py-16 { padding-top: 16px; padding-bottom: 16px; }
.py-24 { padding-top: 24px; padding-bottom: 24px; }
.py-32 { padding-top: 32px; padding-bottom: 32px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-80 { margin-top: 80px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-80 { margin-bottom: 80px; }

/* ══════════════════════════════
   BORDER RADIUS
══════════════════════════════ */

.radius-8  { border-radius: 8px; }
.radius-16 { border-radius: 16px; }
.radius-32 { border-radius: 32px; }
.radius-56 { border-radius: 56px; }

/* ══════════════════════════════
   BOTONES
══════════════════════════════ */

.btn-principal,
.btn-second2,
.btn-second3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  /* font-family: var(--ff-body); */
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition);
  width: 100%;
  white-space: nowrap;
}

.btn-principal:hover,
.btn-second2:hover,
.btn-second3:hover,
.btn-principal:focus-visible,
.btn-second2:focus-visible,
.btn-second3:focus-visible {
  transform: translateY(-2px);
 /* box-shadow: 0 6px 20px rgba(144, 8, 112, 0.25);*/
  outline: none;
}

/* Relleno principal */
.btn-principal {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-principal:hover,
.btn-principal:focus-visible {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}

/* Contorno blanco — fondos oscuros */
.btn-second2 {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-second2:hover,
.btn-second2:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

/* Contorno principal — fondos claros */
.btn-second3 {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-second3:hover,
.btn-second3:focus-visible {
  background: rgba(144, 8, 112, 0.07);
  color: var(--brand-hover);
  border-color: var(--brand-hover);
}

/* Icono flecha dentro del botón */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  border-bottom: 1px solid rgba(144, 8, 112, 0.08);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(40, 19, 35, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nav-logo .logo-mark {
  width: 34px;
  height: 34px;
  background: var(--brand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

/* Menú de escritorio — oculto en mobile */
.nav-menu {
  display: none;
  list-style: none;
  gap: 0.15rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(144, 8, 112, 0.08);
  color: var(--brand);
  outline: none;
}

.nav-menu a.active {
  color: var(--brand);
  font-weight: 600;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-dropdown:hover > a svg,
.nav-dropdown:focus-within > a svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(40, 19, 35, 0.15);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  list-style: none;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu li a:hover {
  background: rgba(144, 8, 112, 0.08);
  color: var(--brand);
}

.nav-right {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--brand);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  transition: opacity var(--transition);
}

.icon-close { display: none; }
.icon-hamburger { display: block; }

body.menu-open .icon-hamburger { display: none; }
body.menu-open .icon-close     { display: block; }

/* Mobile panel */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 2rem;
  display: flex;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
}

body.menu-open .nav-mobile {
  transform: translateX(0);
  visibility: visible;
}

.nav-mobile a.item-link {
  text-decoration: none;
  color: var(--text);
  padding: 0.75rem 1.5rem;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.nav-mobile .item-link:hover {
  font-weight: 600;
  background: rgba(144, 8, 112, 0.08);
  color: var(--brand);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */

.hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 64px;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(144, 8, 112, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand-hover);
  padding: 6px 14px;
  border-radius: 56px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border: 1px solid var(--brand-hover)
}

.hero-badge svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.hero-title {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-desc {
  color: white;
  margin-bottom: 32px;
  font-size: 0.97rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-stamp {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: var(--brand);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  max-width: 140px;
  box-shadow: 0 8px 24px rgba(144, 8, 112, 0.35);
}

/* ══════════════════════════════
   CHECK LIST  (íconos ✓)
══════════════════════════════ */

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--brand);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ══════════════════════════════
   SECCIÓN GENÉRICA
══════════════════════════════ */

.section {
  padding: var(--section-gap) 0;
}

.section-header {
  margin-bottom: 48px;
}

/* ══════════════════════════════
   TARJETAS
══════════════════════════════ */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid rgba(144, 8, 112, 0.1);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: 0 12px 40px rgba(144, 8, 112, 0.12);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(144, 8, 112, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--brand);
  stroke: var(--brand);
}

.card h4 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: var(--text);
}

/* ══════════════════════════════
   COMPLIANCE + PROTECCIÓN (2 col en desktop)
══════════════════════════════ */

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.compliance-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(144, 8, 112, 0.12);
  transition: box-shadow var(--transition), transform var(--transition);
}

.compliance-card:hover {
  box-shadow: 0 12px 40px rgba(144, 8, 112, 0.12);
  transform: translateY(-4px);
}

.compliance-card .card-icon {
  margin-bottom: 24px;
}

.compliance-card h3 {
  margin-bottom: 12px;
}

.compliance-card > p {
  color: var(--text);
  margin-bottom: 24px;
}

.cert-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cert-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  padding: 8px 12px;
  background: rgba(144, 8, 112, 0.05);
  border-radius: 8px;
}

.cert-check-list li svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  stroke: var(--brand);
  flex-shrink: 0;
}

/* ══════════════════════════════
   EQUIPOS — grid con imagen
══════════════════════════════ */

.equipos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.equipos-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.equipo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.9rem;
  border: 1px solid rgba(144, 8, 112, 0.1);
  transition: background var(--transition);
}

.equipo-item:hover {
  background: rgba(144, 8, 112, 0.07);
}

.equipo-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand);
  flex-shrink: 0;
}

.equipos-img {
  position: relative;
}

.equipos-img img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.equipos-note,
.info-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(144, 8, 112, 0.07);
  border-left: 4px solid var(--brand);
  border-radius: 0 12px 12px 0;
  font-size: 0.92rem;
  color: var(--text);
}

/* ══════════════════════════════
   PROCESO TRAZABLE
══════════════════════════════ */

.section-process {
  padding: var(--section-gap) 0;
  background: white;
}

.timeline-wrapper {
  position: relative;
  margin-top: 56px;
}

/* Línea horizontal — solo desktop */
.timeline-line {
  display: none;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

/* Línea vertical mobile */
.steps::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand), var(--brand-hover));
  opacity: 0.25;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-process.is-visible .step:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.section-process.is-visible .step:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.section-process.is-visible .step:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.3s; }
.section-process.is-visible .step:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.45s; }
.section-process.is-visible .step:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.6s; }

.step-num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 2px solid rgba(144, 8, 112, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: border-color var(--transition), background var(--transition);
}

.section-process.is-visible .step-num {
  border-color: var(--brand);
}

.step-num svg {
  width: 30px;
  height: 30px;
  stroke: var(--brand);
}

.step-content {
  padding-top: 12px;
}

.step-number-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.step-label {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--ff-title);
  color: var(--text);
  margin-bottom: 4px;
}

.step-description {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}

.process-note {
  margin-top: 40px;
  padding: 16px 20px;
  background: rgba(144, 8, 112, 0.07);
  border-left: 4px solid var(--brand);
  border-radius: 0 12px 12px 0;
  font-size: 0.92rem;
  color: var(--text);
}

/* ══════════════════════════════
   RETIRO + FORMULARIO (2 col)
══════════════════════════════ */

.retiro-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.retiro-info h2 {
  font-size: clamp(26px, 5.5vw, 38px);
}

.retiro-info img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
 /* aspect-ratio: 16/9;*/
  margin-top: 28px;
}

/* ══════════════════════════════
   BENEFICIOS — 4 cols
══════════════════════════════ */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 24px 20px;
  border: 1px solid rgba(144, 8, 112, 0.1);
  text-align: left;
  transition: box-shadow var(--transition), transform var(--transition);
}

.benefit-card:hover {
  box-shadow: 0 8px 32px rgba(144, 8, 112, 0.1);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(144, 8, 112, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand);
}

.benefit-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}

/* ══════════════════════════════
   MAPA NACIONAL
══════════════════════════════ */

.nacional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.nacional-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.stat-box {
  background: rgba(144, 8, 112, 0.07);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--ff-title);
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.3;
}

.mapa-wrap {
  display: flex;
  justify-content: center;
}

.mapa-wrap img {
  /*max-width: 300px;*/
  width: 100%;
  border-radius: 24px;
}

/* ══════════════════════════════
   SEGUNDA VIDA (reuso)
══════════════════════════════ */

.segunda-vida-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.segunda-vida-text .highlight-box {
  background: rgba(144, 8, 112, 0.07);
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid var(--brand);
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--text);
}

.segunda-vida-img img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */

.cta-banner {
  padding: 64px 0;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner .boxer {
  position: relative;
  z-index: 1;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-top: 8px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* WhatsApp btn */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--ff-body);
  cursor: pointer;
  text-decoration: none;
  background: #25d366;
  color: var(--white);
  border: 2px solid #25d366;
  width: 100%;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-whatsapp:hover {
  background: #1fba58;
  border-color: #1fba58;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ══════════════════════════════
   RESPONSIVE — TABLET  768px+
══════════════════════════════ */

@media (min-width: 768px) {
  :root { --section-gap: 96px; }

  .boxer { width: 93%; }

  .txt-md-center { text-align: center; }
  .txt-md-left   { text-align: left; }
  .txt-md-right  { text-align: right; }

  .btn-principal,
  .btn-second2,
  .btn-second3,
  .btn-whatsapp { width: auto; }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .hero-ctas {
    flex-direction: row;
  }

  /* Compliance */
  .compliance-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Equipos */
  .equipos-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Process — horizontal en desktop */
  .steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .steps::before { display: none; }

  .timeline-line {
    display: block;
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--brand), var(--brand-hover));
    opacity: 0.25;
    z-index: 0;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
  }

  .step-content { padding-top: 16px; }

  .step-num {
    width: 72px;
    height: 72px;
    position: relative;
    z-index: 1;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Retiro + form */
  .retiro-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Nacional */
  .nacional-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Segunda vida */
  .segunda-vida-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* CTA */
  .cta-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cta-buttons {
    flex-direction: row;
    width: auto;
    flex-shrink: 0;
  }
}

/* ══════════════════════════════
   RESPONSIVE — DESKTOP  1020px+
══════════════════════════════ */

@media (min-width: 1020px) {
  .nav-toggle { display: none !important; }
  .icon-close, .icon-hamburger { display: none !important; }
  .nav-menu  { display: flex; }
  .nav-right { display: flex; }

  .txt-lg-center { text-align: center; }
  .txt-lg-left   { text-align: left; }
  .txt-lg-right  { text-align: right; }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}