:root {
  --naranja: #c2410c;
  --naranja-cta: #8f2f12;
  --azul: #003a67;
  --azul-medio: #004e89;
  --azul-claro: #eaf2f8;
  --gris-claro: #f8f9fa;
  --superficie: #fffdf8;
  --superficie-2: #f4f0e8;
  --texto: #172033;
  --texto-suave: #2d3748;
  --blanco: #fffdf8;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
  font-size: 18px;
}
body {
  font-family: 'Nunito', sans-serif;
  color: var(--texto);
  background: var(--gris-claro);
  overflow-x: hidden;
  font-size: 1rem;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 78, 137, 0.1);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: auto;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}
.nav-tagline {
  color: var(--azul);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-left: 12px;
  border-left: 1px solid rgba(0, 78, 137, 0.16);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--azul);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--naranja);
}
.nav-login {
  background: #004e89;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.88rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}
.nav-cta {
  background: var(--naranja);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}

/* MODAL GOOGLE REGISTRO */
.auth-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 3000;
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}
.auth-modal-card {
  position: relative;
  background: white;
  width: 90%;
  max-width: 420px;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  font-family: 'Nunito', sans-serif;
}
.auth-modal-head {
  text-align: center;
  margin-bottom: 20px;
}
.auth-modal-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}
.auth-modal-title {
  font-family: 'Playfair Display', serif;
  color: #004e89;
  margin: 0 0 6px;
  font-size: 1.4rem;
}
.auth-modal-subtitle {
  color: #666;
  font-size: 0.88rem;
  margin: 0;
}
.auth-modal-field {
  margin-bottom: 16px;
}
.auth-modal-field-spacious {
  margin-bottom: 20px;
}
.auth-modal-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 6px;
}
.auth-required {
  color: #e53e3e;
}
.auth-modal-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}
.auth-modal-error {
  color: #e53e3e;
  font-size: 0.8rem;
  margin: 4px 0 0;
  display: none;
}
.auth-parental-warning {
  display: none;
  background: #fff8e1;
  border: 1px solid #f6c90e;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: #856404;
}
.auth-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #333;
}
.auth-checkbox {
  margin-top: 3px;
  accent-color: #004e89;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.auth-modal-link {
  color: #004e89;
  font-weight: 700;
}
.auth-modal-submit {
  width: 100%;
  padding: 14px;
  background: #004e89;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.auth-main-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}
.auth-main-card {
  position: relative;
  background: white;
  width: 90%;
  max-width: 400px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  font-family: 'Nunito', sans-serif;
}
.auth-main-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}
.auth-main-title {
  font-family: 'Playfair Display', serif;
  color: #004e89;
  margin-bottom: 10px;
  text-align: center;
}
.auth-main-subtitle {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 25px;
}
.auth-main-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-main-control {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-family: 'Nunito', sans-serif;
}
.auth-main-select {
  color: #333;
  font-weight: 600;
}
.auth-main-group {
  display: none;
  flex-direction: column;
}
.auth-main-location-group {
  gap: 10px;
}
.auth-main-compact-group {
  gap: 6px;
}
.auth-main-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--naranja);
  margin: 4px 0 0;
}
.auth-main-warning {
  font-size: 0.8rem;
  color: #c0392b;
  font-weight: 700;
  margin: 0;
}
.auth-main-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
}
.auth-main-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--naranja);
  cursor: pointer;
}
.auth-main-terms-label {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
  cursor: pointer;
}
.auth-main-terms-link {
  color: #004e89;
  font-weight: 800;
  text-decoration: underline;
}
.auth-main-hidden-action {
  display: none;
}
.auth-main-submit {
  background: var(--naranja);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 6px;
  transition: 0.3s;
  font-family: 'Nunito', sans-serif;
}
.auth-main-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}
.auth-main-divider-line {
  flex: 1;
  height: 1px;
  background: #e8eff7;
}
.auth-main-divider-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 700;
}
.auth-main-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px;
  border: 1.5px solid #e8eff7;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #1a1a2e;
  transition: all 0.2s;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 80px 60px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 78, 137, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--naranja);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--naranja);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--azul);
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--azul);
}
.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .hero-microcopy {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--azul);
  font-size: 0.92rem;
  font-weight: 800;
}
.btn-primary {
  background: var(--naranja);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--azul);
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid var(--azul);
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--azul);
  color: white;
  transform: translateY(-3px);
}
.hero-image {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 78, 137, 0.2);
}
.hero-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-stat {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-stat-1 {
  bottom: 30px;
  left: -30px;
}
.hero-stat-2 {
  top: 30px;
  right: -20px;
}
.hero-stat .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.hero-stat-1 .icon {
  background: rgba(255, 107, 53, 0.12);
}
.hero-stat-2 .icon {
  background: rgba(0, 78, 137, 0.1);
}
.hero-stat .stat-text .num {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--azul);
  display: block;
}
.hero-stat .stat-text .label {
  font-size: 0.75rem;
  color: #888;
  font-weight: 600;
}

/* SECTIONS */
.section {
  padding: 80px 80px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--naranja);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--azul);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* PROPÓSITO · MISIÓN · VISIÓN */
.pmv-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 80px 60px;
}
.pmv-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pmv-header {
  text-align: center;
  margin-bottom: 56px;
}
.pmv-header .section-title {
  margin-top: 8px;
}
.pmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pmv-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 36px 28px 32px;
  box-shadow: 0 8px 40px rgba(0, 78, 137, 0.09);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pmv-card-purpose {
  border-top: 5px solid #ff6b35;
}
.pmv-card-featured {
  background: #004e89;
  box-shadow: 0 8px 40px rgba(0, 78, 137, 0.25);
  transform: translateY(-12px);
}
.pmv-card-vision {
  border-top: 5px solid #004e89;
}
.pmv-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.pmv-icon-purpose {
  background: rgba(255, 107, 53, 0.1);
}
.pmv-icon-featured {
  background: rgba(255, 255, 255, 0.15);
}
.pmv-icon-vision {
  background: rgba(0, 78, 137, 0.08);
}
.pmv-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--naranja);
  margin-bottom: 6px;
}
.pmv-kicker-featured {
  color: rgba(255, 255, 255, 0.6);
}
.pmv-kicker-vision {
  color: #004e89;
}
.pmv-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #004e89;
  margin-bottom: 14px;
  line-height: 1.3;
}
.pmv-title-featured {
  color: white;
}
.pmv-quote {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.75;
  font-weight: 700;
  font-style: italic;
  border-left: 3px solid #004e89;
  padding-left: 14px;
  margin: 0;
}
.pmv-card-purpose .pmv-quote {
  font-size: 1rem;
  border-left-color: #ff6b35;
}
.pmv-quote-featured {
  color: rgba(255, 255, 255, 0.9);
  border-left-color: #ff6b35;
}
.pmv-text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.pmv-text-featured {
  color: rgba(255, 255, 255, 0.7);
}

/* INSTAGRAM */
.instagram-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef6fc 100%);
  padding: 60px 80px;
  text-align: center;
}
.instagram-inner {
  max-width: 480px;
  margin: 0 auto;
}
.instagram-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--naranja);
  margin-bottom: 12px;
}
.instagram-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--azul);
  margin-bottom: 12px;
}
.instagram-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}
.instagram-qr-card {
  display: inline-block;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 78, 137, 0.12);
  margin-bottom: 24px;
}
.instagram-qr {
  width: 180px;
  height: 180px;
  display: block;
  border-radius: 8px;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--naranja);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

/* ADS */
.ads-banner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px 20px;
}
.adsbygoogle {
  display: block;
}

/* SERVICIOS */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.servicio-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.servicio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--naranja);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 78, 137, 0.12);
  border-color: transparent;
}
.servicio-card:hover::before {
  transform: scaleX(1);
}
.servicio-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}
.servicio-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 10px;
}
.servicio-card p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.6;
}
.ayuda-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto 48px;
}
.ayuda-grid-categorias {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ayuda-card {
  background: #f0f4f8;
  border: 1px solid rgba(0, 78, 137, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
button.ayuda-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.ayuda-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 78, 137, 0.1);
}
.ayuda-card:focus-visible {
  outline: 3px solid rgba(255, 107, 53, 0.45);
  outline-offset: 4px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 78, 137, 0.1);
}
.ayuda-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0, 78, 137, 0.12));
}
.ayuda-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff;
  color: var(--azul);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0, 78, 137, 0.08);
}
.ayuda-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1.25;
  margin-bottom: 7px;
}
.ayuda-card p {
  font-size: 0.9rem;
  color: #5f6f82;
  line-height: 1.65;
  margin: 0;
  font-weight: 600;
}
.ayuda-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--azul);
  line-height: 1.25;
  margin-bottom: 8px;
}
.ayuda-card small {
  display: block;
  font-size: 0.88rem;
  color: #5f6f82;
  line-height: 1.55;
  font-weight: 700;
}
.ayuda-card-destacada {
  padding: 26px 22px;
  min-height: 172px;
}
.ayuda-card-simple {
  padding: 20px 18px;
  align-items: center;
  min-height: 86px;
}
.ayuda-card-simple h3 {
  margin-bottom: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
}
.ayuda-note {
  text-align: center;
  background: #fff8f5;
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 760px;
  margin: 0 auto 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}
.ayuda-note p {
  font-size: 0.95rem;
  color: var(--azul);
  font-weight: 700;
  margin: 0;
}

/* COMO FUNCIONA — REDISEÑADO (Punto 1) */
.como-funciona {
  background: linear-gradient(135deg, var(--azul) 0%, #003a6b 100%);
  color: white;
}
.como-funciona .section-title {
  color: white;
}
.como-funciona .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.como-funciona .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.pasos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.pasos-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(16.6% + 30px);
  right: calc(16.6% + 30px);
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}
.paso {
  text-align: center;
  padding: 20px 28px;
  position: relative;
  z-index: 1;
}
.paso-num {
  width: 76px;
  height: 76px;
  background: var(--naranja);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  color: white;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
  transition: transform 0.3s;
}
.paso:hover .paso-num {
  transform: scale(1.1);
}
.paso-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.paso h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.paso p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}
.paso-detalle {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.paso-detalle span {
  color: var(--naranja);
  font-weight: 800;
}

/* BANNER SEGURIDAD (Punto 2) */
.banner-seguridad {
  background: linear-gradient(135deg, #e8f4fd 0%, #d4eaf7 100%);
  border-left: 5px solid var(--azul);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 40px auto 0;
}
.banner-seguridad .seg-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--azul);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.banner-seguridad .seg-text p:first-child {
  font-weight: 900;
  color: var(--azul);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.banner-seguridad .seg-text p:last-child {
  font-size: 0.85rem;
  color: #4a5568;
  line-height: 1.5;
}

.confianza-section {
  background: #fff;
  padding: 76px 40px;
}
.confianza-inner {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
  border: 1px solid rgba(255, 107, 53, 0.18);
  border-radius: 24px;
  padding: 44px 48px;
  box-shadow: 0 18px 52px rgba(0, 78, 137, 0.08);
}
.confianza-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--azul);
  line-height: 1.2;
  margin: 10px 0 22px;
}
.confianza-inner p {
  font-size: 1.02rem;
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: 16px;
}
.confianza-inner p:last-child {
  margin-bottom: 0;
}
.confianza-inner strong {
  color: var(--azul);
}

/* ROLES (Punto 5) */
.roles-section {
  background: var(--gris-claro);
  padding: 64px 80px;
}
.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.rol-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.rol-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 20px 20px;
}
.rol-card.pide::after {
  background: var(--naranja);
}
.rol-card.ayuda::after {
  background: var(--azul);
}
.rol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 78, 137, 0.1);
}
.rol-emoji {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.rol-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--azul);
  margin-bottom: 10px;
}
.rol-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.rol-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
}
.rol-tag.pide {
  background: rgba(255, 107, 53, 0.1);
  color: var(--naranja);
}
.rol-tag.ayuda {
  background: rgba(0, 78, 137, 0.08);
  color: var(--azul);
}
.roles-unificado {
  text-align: center;
  margin-top: 28px;
  font-size: 0.95rem;
  color: #666;
  font-weight: 600;
}
.roles-unificado strong {
  color: var(--azul);
}

/* TESTIMONIOS (Punto 4) */
.testimonios-section {
  padding: 80px 80px;
  background: white;
}
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonio-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid #eee;
  position: relative;
  transition: all 0.3s;
}
.testimonio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 78, 137, 0.1);
  border-color: transparent;
}
.testimonio-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(255, 107, 53, 0.1);
  line-height: 1;
}
.testimonio-estrellas {
  color: #ffb800;
  font-size: 1rem;
  margin-bottom: 14px;
}
.testimonio-texto {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonio-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonio-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.testimonio-avatar.naranja {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
}
.testimonio-avatar.azul {
  background: linear-gradient(135deg, #004e89, #006bb3);
}
.testimonio-avatar.verde {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}
.testimonio-info strong {
  font-size: 0.9rem;
  color: var(--azul);
  display: block;
  font-weight: 800;
}
.testimonio-info span {
  font-size: 0.78rem;
  color: #999;
  font-weight: 600;
}
.testimonio-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 4px;
}
.testimonio-badge.vecino {
  background: rgba(255, 107, 53, 0.1);
  color: var(--naranja);
}
.testimonio-badge.ziver {
  background: rgba(0, 78, 137, 0.08);
  color: var(--azul);
}

/* TABLA Y FOOTER */
.ziver-unis {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.uni-tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.btn-ziver {
  background: var(--naranja);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.45);
  width: 100%;
}
.btn-ziver:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(255, 107, 53, 0.55);
}
.ziver-nota {
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}
.cta-final {
  background: linear-gradient(135deg, #004e89 0%, #003a67 100%);
  padding: 72px 40px;
  text-align: center;
}
.cta-final-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta-final .section-label {
  color: rgba(255, 255, 255, 0.72);
}
.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.12;
  margin: 10px 0 14px;
}
.cta-final p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto 30px;
}
.cta-final-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-final .btn-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.8);
}
.cta-final .btn-secondary:hover {
  background: white;
  color: var(--azul);
}
footer {
  background: var(--texto);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}
.footer-logo img {
  width: auto;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}
.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}
footer .footer-logo,
footer .footer-logo span {
  background: var(--azul) !important;
  color: #fff !important;
}
footer p {
  font-size: 0.85rem;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 100%;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.footer-links a:hover {
  color: var(--naranja);
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--azul);
  border-radius: 3px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

/* Trust bar mobile */
@media (max-width: 600px) {
  #trust-bar-inner {
    gap: 20px !important;
  }
  #trust-bar-inner .trust-divider {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ayuda-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  nav {
    padding: 14px 24px;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(0, 78, 137, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    list-style: none;
  }
  .nav-links a,
  .nav-links button {
    display: block;
    width: 100%;
    padding: 14px 28px;
    text-align: left;
    font-size: 0.95rem;
    border: none;
    background: none;
  }
  .nav-links a:hover,
  .nav-links button:hover {
    background: rgba(0, 78, 137, 0.05);
  }
  .nav-auth {
    display: list-item !important;
  }
  .nav-auth button {
    width: 100% !important;
    text-align: left !important;
    border-radius: 0 !important;
    padding: 14px 28px !important;
  }
  .nav-cta {
    border-radius: 0 !important;
    box-shadow: none !important;
    background: var(--naranja) !important;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: center;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  /* Punto 3: botones hero bien grandes en mobile */
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
    font-size: 1.05rem;
    padding: 18px 32px;
  }
  .hero-image {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }
  .hero-image img {
    object-position: center center;
  }
  .hero-stat-1 {
    left: -10px;
  }
  .hero-stat-2 {
    right: -10px;
  }
  .section {
    padding: 60px 24px;
  }
  .pasos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pasos-grid::before {
    display: none;
  }
  .roles-section {
    padding: 60px 24px;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .testimonios-section {
    padding: 60px 24px;
  }
  .testimonios-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 40px 24px;
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .banner-seguridad {
    margin: 32px 24px 0;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .servicios-grid {
    grid-template-columns: 1fr;
  }
  .ayuda-grid {
    grid-template-columns: 1fr;
  }
  .ayuda-card-destacada {
    min-height: auto;
  }
  .confianza-section {
    padding: 56px 20px;
  }
  .confianza-inner {
    padding: 32px 24px;
    border-radius: 18px;
  }
  .cta-final {
    padding: 58px 24px;
  }
  .cta-final-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-final-actions .btn-primary,
  .cta-final-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
  #pmv-grid {
    grid-template-columns: 1fr !important;
  }
  .nav-tagline {
    font-size: 0.72rem;
    max-width: 96px;
    white-space: normal;
    line-height: 1.1;
    padding-left: 8px;
  }
}

/* ACCESIBILIDAD VISUAL HOLAZIVO */
body,
section,
nav,
[style*='background:white'],
[style*='background: white'],
[style*='background:#fff'],
[style*='background:#ffffff'],
[style*='background:#FFFFFF'] {
  background-color: var(--superficie) !important;
}

nav {
  background: rgba(255, 253, 248, 0.97) !important;
  border-bottom-color: rgba(0, 58, 103, 0.14) !important;
}

.hero,
.roles-section,
.confianza-section,
.testimonios-section,
[style*='#f8f9fa'],
[style*='#eef6fc'] {
  background: var(--gris-claro) !important;
}

p,
li,
summary,
label,
input,
select,
button,
a {
  font-size: 1rem;
}

.nav-links a,
.nav-links button {
  font-size: 1rem !important;
  color: var(--azul) !important;
}

.hero p,
.section-subtitle,
.servicio-card p,
.ayuda-card p,
.paso p,
.confianza-inner p,
.rol-card p,
.testimonio-texto,
.roles-unificado,
.banner-seguridad .seg-text p:last-child,
details p,
footer p,
[style*='font-size:0.9rem'],
[style*='font-size:0.95rem'],
[style*='font-size:0.875rem'],
[style*='font-size:0.85rem'] {
  font-size: 1rem !important;
  color: var(--texto-suave) !important;
  line-height: 1.75 !important;
}

.section-label,
[style*='color:#FF6B35'],
[style*='color: var(--naranja)'] {
  color: var(--azul) !important;
}

.hero-badge {
  background: var(--azul-claro);
  color: var(--azul);
  border-radius: 999px;
}

.hero-badge::before {
  animation: none !important;
  background: var(--naranja);
}

.btn-primary,
.btn-ziver,
.nav-cta,
#btn-auth-submit,
#btn-auth-next,
[style*='background:#FF6B35'],
[style*='background: var(--naranja)'] {
  min-height: 56px !important;
  background: var(--naranja-cta) !important;
  color: #fff !important;
  border: 2px solid var(--naranja-cta) !important;
  border-radius: 999px !important;
  padding: 16px 28px !important;
  font-size: 1rem !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.nav-links .nav-cta,
.nav-links .nav-cta:hover,
#btn-registro,
#btn-registro:hover,
.btn-primary,
.btn-primary:hover,
.btn-ziver,
.btn-ziver:hover,
#btn-auth-submit,
#btn-auth-next,
.cta-final .btn-primary,
[style*='background:#FF6B35'],
[style*='background: var(--naranja)'] {
  color: #fff !important;
}

.btn-secondary,
#btn-auth-prev,
#btn-login {
  min-height: 56px !important;
  color: var(--azul) !important;
  background: transparent !important;
  border: 2px solid var(--azul) !important;
  border-radius: 999px !important;
  padding: 16px 28px !important;
  font-size: 1rem !important;
  box-shadow: none !important;
}

.cta-final .btn-secondary,
.cta-final .btn-secondary:hover {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
  background: transparent !important;
}

.cta-final .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ziver:hover,
.nav-cta:hover,
.servicio-card:hover,
.ayuda-card:hover,
.rol-card:hover,
.testimonio-card:hover,
.paso:hover .paso-num {
  transform: none !important;
}

.servicio-card,
.ayuda-card,
.rol-card,
.testimonio-card,
.confianza-inner,
details,
.hero-stat {
  background: var(--superficie) !important;
  border-color: rgba(0, 58, 103, 0.16) !important;
  box-shadow: none !important;
}

#pmv-grid > div:nth-child(2) {
  background: var(--superficie) !important;
  border: 2px solid var(--azul) !important;
  border-top: 5px solid var(--azul) !important;
  transform: none !important;
  box-shadow: none !important;
}

#pmv-grid > div:nth-child(2) h3,
#pmv-grid > div:nth-child(2) p,
#pmv-grid > div:nth-child(2) strong {
  color: var(--texto-suave) !important;
}

#pmv-grid > div:nth-child(2) h3 {
  color: var(--azul) !important;
}

#pmv-grid > div:nth-child(2) p:first-child {
  color: var(--azul) !important;
}

#pmv-grid > div:nth-child(2) .pmv-icon-featured {
  background: var(--azul-claro) !important;
  color: var(--azul) !important;
}

.como-funciona,
.cta-final,
footer,
[style*='background:#004E89'],
[style*='background: linear-gradient(135deg, #004E89'] {
  background: var(--azul) !important;
  color: #fff !important;
}

#trust-bar-inner,
#trust-bar-inner div,
#trust-bar-inner span {
  color: #fff !important;
}

#trust-bar-inner div[style*='color:#FF6B35'],
#trust-bar-inner div[style*='color: #FF6B35'] {
  color: #fff !important;
}

#trust-bar-inner > div:not([style*='width:1px']) {
  color: #fff !important;
}

.como-funciona .section-subtitle,
.como-funciona p,
.cta-final p,
footer p,
footer a,
footer button,
.paso-detalle,
.uni-tag {
  color: rgba(255, 255, 255, 0.9) !important;
}

.paso-num {
  background: var(--superficie) !important;
  color: var(--azul) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: none !important;
}

input,
select {
  min-height: 56px !important;
  padding: 14px 16px !important;
  border: 2px solid rgba(0, 58, 103, 0.22) !important;
  border-radius: 12px !important;
  background: var(--superficie) !important;
  color: var(--texto) !important;
  font-family: 'Nunito', sans-serif !important;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 4px solid rgba(255, 107, 53, 0.35) !important;
  outline-offset: 3px !important;
  border-color: var(--azul) !important;
}

#modal-overlay,
#modal-google-registro {
  background: rgba(23, 32, 51, 0.66) !important;
  backdrop-filter: none !important;
  box-sizing: border-box !important;
  height: 100dvh !important;
  left: 0 !important;
  padding: 18px !important;
  right: 0 !important;
  width: 100vw !important;
}

#modal-overlay > div,
#modal-google-registro > div {
  background: var(--superficie) !important;
  position: relative !important;
  max-width: 520px !important;
  width: min(94vw, 520px) !important;
  max-height: calc(100dvh - 36px) !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  padding: 46px 34px 34px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22) !important;
}

#modal-contenido {
  max-height: calc(100dvh - 126px);
  overflow-y: auto;
  padding-right: 2px;
}

#btn-cerrar-auth {
  align-items: center !important;
  background: var(--superficie) !important;
  border: 1px solid rgba(0, 58, 103, 0.16) !important;
  border-radius: 999px !important;
  color: var(--texto) !important;
  display: inline-flex !important;
  font-size: 1.45rem !important;
  height: 44px !important;
  justify-content: center !important;
  line-height: 1 !important;
  min-width: 44px !important;
  padding: 0 !important;
  position: absolute !important;
  right: 14px !important;
  top: 14px !important;
  z-index: 3 !important;
}

#modal-titulo,
#modal-subtitulo {
  text-align: left !important;
}

#modal-titulo {
  color: var(--azul) !important;
  font-size: 1.75rem !important;
  margin-bottom: 8px !important;
}

#modal-subtitulo {
  color: var(--texto-suave) !important;
  font-size: 1rem !important;
  margin-bottom: 18px !important;
}

.auth-step-box {
  display: none;
  background: var(--azul-claro);
  border: 1px solid rgba(0, 58, 103, 0.16);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.auth-step-count {
  color: var(--azul);
  font-size: 0.9rem;
  font-weight: 900;
  margin: 0 0 4px;
}

.auth-step-helper {
  color: var(--texto-suave);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

.auth-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  position: sticky;
  bottom: 0;
  z-index: 2;
  background: var(--superficie);
  padding-top: 10px;
}

.auth-field-error {
  display: none;
  margin: -5px 0 2px;
  color: #a12814;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
}

.auth-field-error.visible {
  display: block;
}
#auth-form .auth-campo-invalido {
  border-color: #a12814 !important;
  box-shadow: 0 0 0 3px rgba(161, 40, 20, 0.12) !important;
}

#toast-index {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #166534;
  color: white;
  padding: 16px 22px;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  max-width: 340px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.auth-actions button {
  flex: 1;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
}

#campo-terminos label {
  color: var(--texto) !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

#acepta-terminos {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  accent-color: var(--azul) !important;
}

* {
  animation: none !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

@media (max-width: 600px) {
  html {
    font-size: 18px;
  }
  #modal-overlay > div,
  #modal-google-registro > div {
    padding: 58px 22px 28px !important;
  }
  #modal-contenido {
    max-height: calc(100dvh - 122px);
  }
  .auth-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 12px 18px !important;
  }

  .nav-logo img {
    width: auto !important;
    height: 54px !important;
    max-width: 54px !important;
  }

  .nav-tagline {
    font-size: 0.82rem !important;
    max-width: 118px;
  }

  .hero {
    min-height: auto;
    padding: 94px 20px 44px !important;
    gap: 34px;
  }

  .hero h1 {
    font-size: 2.45rem;
    line-height: 1.08;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary,
  .cta-final-actions .btn-primary,
  .cta-final-actions .btn-secondary {
    max-width: none !important;
    min-height: 58px !important;
  }

  #trust-bar-inner .trust-item {
    min-width: 132px;
  }

  #trust-bar-inner .trust-label {
    font-size: 0.9rem !important;
    line-height: 1.35 !important;
  }

  #toast-index {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    max-width: none !important;
  }
}

#pmv-grid .pmv-kicker,
#campos-ubicacion p,
#campo-nacimiento label {
  font-size: 1rem !important;
  letter-spacing: 0.08em !important;
}

footer a,
footer button {
  font-size: 1rem !important;
}

#btn-login:hover {
  background: #ff6b35 !important;
  border-color: #ff6b35 !important;
}
#google-nacimiento:focus {
  border-color: #004e89 !important;
}
#btn-confirmar-google:hover {
  background: #003a6b !important;
}
#btn-google-login:hover {
  background: #f0f4f8 !important;
}
.instagram-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.45) !important;
}
.footer-register:hover {
  color: #ff6b35 !important;
}
.como-funciona .paso-detalle span {
  color: #fff !important;
}
footer .footer-register {
  background: none;
  border: none;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: color 0.2s;
}
footer .footer-register:hover {
  color: #fff !important;
  text-decoration: underline;
}

.trust-bar {
  background: #004e89;
  padding: 20px 20px;
}

.trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}

.trust-item {
  text-align: center;
  color: white;
}

.trust-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 4px;
}

.trust-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ff6b35;
  line-height: 1;
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.trust-label-offset {
  margin-top: 4px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Ritmo móvil: mantiene el tono humano, pero reduce la longitud percibida. */
@media (max-width: 600px) {
  .section,
  .pmv-section,
  .roles-section,
  .instagram-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .section-header,
  .pmv-header {
    margin-bottom: 32px;
  }

  .section-title,
  .pmv-header .section-title {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .section-subtitle {
    margin-top: 12px;
  }

  .pmv-grid {
    gap: 16px;
  }

  .pmv-card {
    gap: 12px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .pmv-title {
    margin-bottom: 6px;
  }

  .pmv-quote {
    line-height: 1.6;
    padding-left: 12px;
  }

  .pmv-text {
    line-height: 1.6;
  }

  .ayuda-grid {
    gap: 12px;
    margin-bottom: 28px;
  }

  .ayuda-card-destacada {
    padding: 18px 18px;
  }

  .ayuda-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.35rem;
  }

  .ayuda-note {
    padding: 18px 18px;
    margin-bottom: 24px;
  }

  .paso {
    padding: 18px 18px;
  }

  .banner-seguridad {
    margin-top: 24px;
    padding: 20px 18px;
  }

  .confianza-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .confianza-inner {
    padding: 26px 20px;
  }

  .roles-grid {
    gap: 16px;
  }

  .rol-card {
    padding: 24px 20px;
  }

  .roles-unificado {
    margin-top: 18px;
  }

  .instagram-text {
    margin-bottom: 22px;
  }

  .instagram-qr-card {
    margin-bottom: 18px;
    padding: 16px;
  }

  .cta-final {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}
