/* ─────────────────────────────────────────────
   style.css — RemPro
   ───────────────────────────────────────────── */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0C0C0C;
  --white: #FAFAFA;
  --accent: #1354F5;
  --accent-light: #EBF0FF;
  --accent-dark: #0D3DB8;
  --gray-100: #F4F4F2;
  --gray-200: #E8E8E4;
  --gray-400: #AEAEAD;
  --gray-600: #6B6B69;
  --gray-800: #2E2E2D;
  --success: #0E9E6E;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --font: 'Outfit', sans-serif;
  --serif: 'Instrument Serif', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,250,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 5vw;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-image {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.08));
}

@media (max-width: 580px) {
  .nav-logo-image {
    height: 44px;
  }
}

.nav-logo-text {
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover { color: var(--black); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  text-decoration: none;
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background .2s;
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { background: var(--gray-100); }

.btn-primary {
  text-decoration: none;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5vw 80px;
  gap: 60px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(19,84,245,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge span { width: 6px; height: 6px; background: #4ADE80; border-radius: 50%; }

.hero-title {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  font-family: var(--serif);
  font-weight: 400;
  color: rgba(255,255,255,.55);
  font-size: 0.93em;
}

.hero-desc {
  color: rgba(255,255,255,.55);
  font-size: 17px;
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary {
  background: var(--accent);
  color: white;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-hero-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-hero-ghost {
  color: rgba(255,255,255,.65);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  transition: border-color .2s, color .2s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,.35); color: white; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
  font-weight: 400;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── HERO IMAGE ─── */
.hero-image {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  transform: translateY(70px);

  filter:
    drop-shadow(0 25px 50px rgba(0,0,0,.55))
    drop-shadow(0 0 35px rgba(19,84,245,.22));
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 640px;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(19,84,245,.22) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* ─── SECTION SHARED ─── */
section { padding: 100px 5vw; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--gray-400);
}

.section-desc {
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
}

/* ─── QUE ES ─── */
.que-es {
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--gray-200);
}

.que-es-points {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.que-es-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  transition: border-color .2s, box-shadow .2s;
}

.que-es-point:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(19,84,245,.06);
}

.point-icon {
  width: 36px; height: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.point-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.point-text span {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ─── QUE ES — IMAGE ─── */
.quees-image {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ─── POR QUE ─── */
.por-que {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.por-que-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.por-que-header .section-desc { margin: 0 auto; text-align: center; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: default;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.feature-card:nth-child(1) .feat-icon-bg { background: #EBF0FF; }
.feature-card:nth-child(2) .feat-icon-bg { background: #DCFCE7; }
.feature-card:nth-child(3) .feat-icon-bg { background: #FEF9C3; }
.feature-card:nth-child(4) .feat-icon-bg { background: #FCE7F3; }

.feat-icon-bg {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.feature-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ─── COMO FUNCIONA ─── */
.como-funciona {
  background: white;
  border-top: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.steps-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--gray-200);
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 0 32px;
  position: relative;
  z-index: 1;
}

.step-item:last-child { padding-bottom: 0; }

.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: border-color .3s, color .3s, background .3s;
}

.step-item.active .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.step-content { padding-top: 8px; }

.step-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.step-content p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.55;
  max-width: 320px;
}

/* ─── COMO — PHONE VISUAL ─── */
.como-visual {
  position: sticky;
  top: 100px;
}

.phone-frame {
  position: relative;
  background: #101010;
  border-radius: 46px;
  padding: 14px;
  width: 315px;
  height: 640px;
  margin: 0 auto;
  box-shadow:
    0 35px 80px rgba(0,0,0,.35),
    inset 0 0 0 2px rgba(255,255,255,.04);
}

.phone-3d {
  transform: perspective(1000px) rotateY(-14deg) rotateX(4deg);
  transform-style: preserve-3d;
}

.phone-3d::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 35%);
  pointer-events: none;
  z-index: 3;
}

.phone-notch {
  width: 76px;
  height: 5px;
  background: rgba(255,255,255,.18);
  border-radius: 99px;
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background: #07111f;
  position: relative;
}

.phone-app-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.04);
}


.plan-head span {
  display: block;
  font-size: 10px;
  color: #111;
}

.plan-head strong {
  font-size: 15px;
  font-weight: 800;
}


.plan-body h4 {
  font-size: 34px;
  line-height: 1;
  color: #69cdf4;
  font-weight: 800;
}

.plan-body h4 span {
  font-size: 15px;
}

.plan-body p,
.plan-body small {
  display: block;
  color: #8f8f8f;
  font-size: 12px;
}


.plan-body strong {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}


/* ─── QUIENES SOMOS ─── */
.quienes {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.06);
  color: white;
}

.quienes .section-title { color: white; }
.quienes .section-eyebrow { color: #60A5FA; }

.quienes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quienes-text .section-desc { color: rgba(255,255,255,.55); max-width: 480px; }

.quienes-quote {
  margin-top: 36px;
  padding: 24px;
  border-left: 2px solid var(--accent);
  background: rgba(255,255,255,.03);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quienes-quote p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  font-style: italic;
  font-family: var(--serif);
}

.quienes-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color .2s, background .2s;
}

.value-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
}

.value-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}

.value-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.value-card p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
}

/* ─── CTA FINAL ─── */
.cta-final {
  background: var(--accent);
  text-align: center;
  padding: 100px 5vw;
}

.cta-final-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: block;
  margin-bottom: 16px;
}

.cta-final h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  color: white;
  margin-bottom: 20px;
}

.cta-final h2 em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  color: rgba(255,255,255,.55);
}

.cta-final p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.cta-final-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-white {
  background: white;
  color: var(--accent);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn-cta-outline {
  background: transparent;
  color: white;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.35);
  cursor: pointer;
  transition: border-color .2s;
}
.btn-cta-outline:hover { border-color: white; }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: rgba(255,255,255,.5);
  padding: 60px 5vw 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo-mark {
  width: 40px; height: 40px;
  font-size: 16px;
  background: white;
  color: var(--black);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-logo {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 14px;
  background: transparent;
  padding: 0;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.4);
  max-width: 240px;
  margin-top: 8px;
}

.footer-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.footer-col ul a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255,255,255,.25);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,.5); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero,
  .que-es,
  .como-funciona,
  .quienes-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding-top: 110px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quienes-values {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 580px) {

  .hero-title {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-stats {
    gap: 18px;
  }
}

@media (max-width: 580px) {
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp .6s ease both;
}

.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .2s; }
.hero-content > *:nth-child(3) { animation-delay: .3s; }
.hero-content > *:nth-child(4) { animation-delay: .4s; }
.hero-content > *:nth-child(5) { animation-delay: .5s; }

.hero-visual {
  animation: fadeUp .7s .3s ease both;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  color: var(--black);
  width: 100%;
  max-width: 820px;
  max-height: 85vh;
  overflow: hidden;
  border-radius: 24px;
  padding: 32px;
  position: relative;
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.modal-body {
  overflow-y: auto;
  max-height: 65vh;
  padding-right: 10px;
}

.modal-body h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 18px;
}

.modal-body p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: none;
  background: transparent;
  font-size: 34px;
  cursor: pointer;
}

.faq-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 18px 20px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--black);
}

.faq-item p {
  margin: 0;
}

.footer-bottom-actions {
  display: flex;
  align-items: center;
}

.footer-create-account {
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s ease;
  box-shadow: 0 8px 20px rgba(19,84,245,.22);
}

.footer-create-account:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
@media (max-width: 580px) {
  .quees-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
  }
}

.login-screen {
  width: 100%;
  height: 100%;
  background: #07111f;
  overflow: hidden;
  border-radius: 34px;
}
.phone-frame {
  position: relative;
  background: #0b0b0b;
  border-radius: 48px;
  padding: 10px;
  width: 340px;
  height: 690px;
  margin: 0 auto;

  box-shadow:
    0 40px 90px rgba(0,0,0,.45),
    0 0 0 2px rgba(255,255,255,.03),
    inset 0 0 0 2px rgba(255,255,255,.03);
}

.phone-3d {
  transform:
    perspective(1400px)
    rotateY(-16deg)
    rotateX(5deg)
    rotateZ(-1deg);

  transform-style: preserve-3d;
}
.como-visual::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(19,84,245,.18) 0%,
    transparent 70%
  );

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.login-card h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 800;
}


.login-input input {
  width: 100%;
  height: 50px;
  border: none;
  background: #f3f3f3;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
}

.password-input {
  position: relative;
}

.password-input span {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 15px;
  opacity: .55;
}

.login-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 10px;
  background: #69cdf4;
  color: #111;
  font-weight: 700;
  margin-top: 8px;
  cursor: pointer;
}

.login-link {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: #69cdf4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 900px) {

  /* ocultar person1 */
  .hero-visual {
    display: none !important;
  }

  /* ocultar person2 */
  .que-es-visual {
    display: none !important;
  }

  /* convertir secciones a una sola columna */
  .hero,
  .que-es,
  .como-funciona,
  .quienes-inner {
    grid-template-columns: 1fr;
  }

  /* centrar hero */
  .hero {
    text-align: center;
    padding-top: 110px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas,
  .hero-stats {
    justify-content: center;
  }
}