/* ============================================================
   LaburApp — Landing Page
   Fonts: Sora (headings) · Inter (body)
   ============================================================ */

:root {
  --blue:   #0047A1;
  --blue-2: #0065ff;
  --orange: #FF5A00;
  --dark:   #050914;
  --navy:   #071326;
  --light:  #F7F8FA;
  --text:   #0D0D0D;
  --muted:  #757575;
  --border: #DDE1E9;
  --white:  #FFFFFF;
  --radius: 10px;
  --shadow: 0 18px 45px rgba(7, 19, 38, .12);
  --max:    1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 82px 0; }

.eyebrow {
  color: var(--blue-2);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  margin-bottom: 10px;
}

h1, h2, h3 {
  font-family: 'Sora', system-ui, sans-serif;
  letter-spacing: -.04em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(32px, 4vw, 46px);
  text-align: center;
  margin-bottom: 46px;
}

/* ---- Botones ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--radius);
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: transform .2s ease, opacity .2s ease, border .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #0065ff, var(--blue));
  color: var(--white);
  box-shadow: 0 16px 28px rgba(0, 71, 161, .28);
}

.btn-orange {
  background: linear-gradient(135deg, #ff7a18, var(--orange));
  color: var(--white);
  box-shadow: 0 16px 28px rgba(255, 90, 0, .23);
}

.btn-ghost {
  border-color: rgba(255,255,255,.34);
  color: var(--white);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}

.btn-outline-orange {
  color: var(--orange);
  border-color: rgba(255, 90, 0, .7);
  background: rgba(255, 90, 0, .04);
}

/* ============================================================
   HERO WRAP
   ============================================================ */
.hero-wrap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 45%, rgba(0, 101, 255, .48), transparent 25%),
    radial-gradient(circle at 100% 45%, rgba(255, 90, 0, .55), transparent 28%),
    linear-gradient(135deg, #03070f 0%, #071326 45%, #040812 100%);
  color: var(--white);
}

.hero-wrap::before,
.hero-wrap::after,
.cta-split::before,
.cta-split::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .75;
}

.hero-wrap::before {
  width: 760px; height: 760px;
  border: 2px solid rgba(0, 101, 255, .7);
  border-radius: 50%;
  left: -210px; bottom: -560px;
}

.hero-wrap::after {
  width: 760px; height: 760px;
  border: 2px solid rgba(255, 90, 0, .65);
  border-radius: 50%;
  right: -400px; top: 180px;
}

/* Dot patterns */
.dots {
  position: absolute;
  width: 170px;
  height: 120px;
  background-image: radial-gradient(rgba(0, 101, 255, .8) 1.6px, transparent 1.6px);
  background-size: 18px 18px;
  opacity: .5;
  pointer-events: none;
}

.dots-one { top: 150px; left: 70px; }
.dots-two { right: 85px; bottom: 130px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: relative;
  z-index: 5;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: 14px;
}

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

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 2;
  min-height: 730px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 54px;
  padding: 58px 0 70px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #dfeaff;
  background: rgba(0, 71, 161, .42);
  border: 1px solid rgba(0, 101, 255, .42);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 30px;
}

.badge svg { width: 18px; height: 18px; }

.hero h1 {
  font-size: clamp(44px, 6.2vw, 82px);
  max-width: 650px;
  margin-bottom: 22px;
}

.hero h1 span { color: var(--orange); }

.hero p {
  max-width: 590px;
  color: rgba(255,255,255,.84);
  font-size: clamp(17px, 2vw, 22px);
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
  margin-bottom: 42px;
}

.hero-ctas .btn {
  min-height: 68px;
  font-size: 18px;
  justify-content: space-between;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 24px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 13px;
}

.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item svg { width: 26px; height: 26px; color: #dce8ff; flex-shrink: 0; }

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.phone-area { display: flex; justify-content: center; align-items: center; }

.phone {
  width: min(360px, 88vw);
  padding: 10px;
  border-radius: 48px;
  background: linear-gradient(145deg, #1d1d1d, #050505);
  box-shadow: 0 35px 75px rgba(0,0,0,.45), inset 0 0 0 2px rgba(255,255,255,.18);
  transform: rotate(2deg);
  animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50%       { transform: rotate(2deg) translateY(-14px); }
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  min-height: 610px;
  background: #fff;
  color: #0c1526;
  padding: 24px 20px 18px;
}

.notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 124px;
  height: 27px;
  border-radius: 999px;
  background: #000;
  z-index: 3;
}

.status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 28px;
}

.location { display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: 13px; margin-bottom: 10px; }
.location svg { width: 14px; height: 14px; color: var(--blue); }

.search {
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: #7b8494;
  font-size: 13px;
  margin-bottom: 15px;
}
.search svg { width: 16px; height: 16px; }

.app-card {
  min-height: 132px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0047A1 0%, #0065ff 58%, #FF5A00 58%);
  color: white;
  padding: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}

.app-card::after {
  content: "";
  position: absolute;
  width: 132px; height: 132px;
  right: -35px; bottom: -45px;
  background: rgba(255,255,255,.14);
  border-radius: 50%;
}

.app-card strong { display: block; font-family: 'Sora', sans-serif; font-size: 20px; line-height: 1.15; max-width: 210px; }
.app-card span { display: block; font-size: 12px; margin-top: 8px; opacity: .9; }

.mini-head { display: flex; justify-content: space-between; align-items: center; margin: 12px 0; }
.mini-head strong { font-size: 15px; }
.mini-head a { color: var(--blue); font-weight: 800; font-size: 12px; }

.app-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.app-cat {
  min-height: 82px;
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  font-size: 11px;
  color: #1b2433;
  padding: 8px 4px;
}

.app-cat svg { color: var(--blue); width: 28px; height: 28px; margin-bottom: 4px; }

.pro-card {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e7ebf2;
  border-radius: 14px;
  padding: 12px;
}

.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b2447, #e8eef9);
  flex-shrink: 0;
}

.pro-card strong { font-size: 13px; display: block; }
.pro-card small { color: var(--muted); font-weight: 700; font-size: 11px; }
.price { margin-left: auto; color: #737b89; font-weight: 700; font-size: 12px; white-space: nowrap; }

.bottom-nav {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e6eaf0;
  background: white;
  color: #7c8594;
  font-size: 10px;
  font-weight: 700;
}

.bottom-nav div { display: grid; place-items: center; gap: 3px; }
.bottom-nav div svg { width: 20px; height: 20px; }
.bottom-nav .active { color: var(--blue-2); }

/* ============================================================
   CÓMO FUNCIONA
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
  position: relative;
}

.step-icon {
  width: 94px; height: 94px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf4ff;
  color: var(--blue-2);
}

.step-icon svg { width: 42px; height: 42px; }

.step h3, .feature h3 {
  font-size: 20px;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}

.step p, .feature p { color: var(--muted); max-width: 270px; margin: 0 auto; }

.num {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-weight: 900;
  margin-right: 8px;
  font-size: 14px;
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.services { background: linear-gradient(180deg, var(--white), var(--light)); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.service-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 900;
  font-size: 18px;
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(7,19,38,.15); }
.service-card svg { color: var(--blue-2); width: 36px; height: 36px; flex-shrink: 0; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: linear-gradient(180deg, var(--light), #fff); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature {
  text-align: center;
  padding: 18px 30px;
  border-right: 1px solid var(--border);
}

.feature:last-child { border-right: 0; }

.feature-icon {
  width: 88px; height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf4ff;
  color: var(--blue-2);
}

.feature:nth-child(3) .feature-icon { color: var(--orange); }
.feature-icon svg { width: 40px; height: 40px; }

/* ============================================================
   CTA SPLIT
   ============================================================ */
.cta-split {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  color: white;
  background:
    radial-gradient(circle at 45% 50%, rgba(0, 101, 255, .45), transparent 30%),
    radial-gradient(circle at 100% 40%, rgba(255, 90, 0, .55), transparent 28%),
    linear-gradient(135deg, #020713 0%, #071326 52%, #160903 100%);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.cta-split::before {
  width: 620px; height: 620px;
  border: 2px solid rgba(0, 101, 255, .55);
  border-radius: 50%;
  left: -250px; top: -240px;
}

.cta-split::after {
  width: 620px; height: 620px;
  border: 2px solid rgba(255, 90, 0, .55);
  border-radius: 50%;
  right: -310px; bottom: -390px;
}

.cta-box {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-box:first-child { border-right: 1px solid rgba(255,255,255,.18); }

.cta-box small {
  color: var(--blue-2);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 12px;
  display: block;
}

.cta-box:nth-child(2) small { color: var(--orange); }

.cta-box h3 {
  font-size: clamp(30px, 3vw, 44px);
  margin-bottom: 12px;
}

.cta-box h3 span { color: var(--orange); }

.cta-box p {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  margin-bottom: 24px;
  max-width: 420px;
}

.cta-box .btn {
  width: fit-content;
  min-width: 300px;
  justify-content: space-between;
}

/* ============================================================
   CTA SINGLE
   ============================================================ */
.cta-single {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  color: white;
  text-align: center;
  padding: 64px 40px;
  background:
    radial-gradient(circle at 30% 50%, rgba(0, 101, 255, .45), transparent 30%),
    radial-gradient(circle at 100% 40%, rgba(255, 90, 0, .55), transparent 28%),
    linear-gradient(135deg, #020713 0%, #071326 52%, #160903 100%);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.cta-single small {
  color: var(--blue-2);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 14px;
  display: block;
}

.cta-single h3 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 14px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-single h3 span { color: var(--orange); }

.cta-single p {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  margin: 0 auto 28px;
  max-width: 620px;
}

.cta-single .btn {
  min-width: 240px;
  justify-content: center;
}

/* ============================================================
   STEPS NOTE
   ============================================================ */
.steps-note {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  border-radius: 16px;
  background: #edf4ff;
  border: 1px solid rgba(0, 101, 255, .14);
}

.steps-note-icon {
  flex: 0 0 auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--blue-2);
  box-shadow: 0 8px 20px rgba(0,101,255,.12);
}

.steps-note-icon svg { width: 30px; height: 30px; }

.steps-note-text { flex: 1 1 auto; }

.steps-note-text h3 { font-size: 20px; margin-bottom: 4px; }

.steps-note-text p { color: var(--muted); font-size: 15px; line-height: 1.55; }

.steps-note .btn { flex: 0 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #03070f;
  color: rgba(255,255,255,.82);
  padding: 42px 0 20px;
}

.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-logo { display: block; }

.footer p {
  color: rgba(255,255,255,.7);
  max-width: 380px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-copy-simple {
  color: rgba(255,255,255,.45);
  font-size: 13px;
  margin-top: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; text-align: left; min-height: auto; }
  .phone-area { order: -1; padding-top: 12px; }
  .phone { width: min(340px, 80vw); }
  .phone-screen { min-height: 545px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: 0; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-box:first-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 58px 0; }
  .navbar { min-height: 76px; }
  .brand img { height: 88px; }
  .footer-logo { height: 110px; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn { min-height: 42px; padding: 0 14px; font-size: 13px; }
  .hero { padding: 34px 0 54px; gap: 30px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 16px; }
  .hero-ctas .btn { min-height: 58px; font-size: 15px; }
  .trust-row { gap: 16px; font-size: 12px; }
  .phone { width: min(300px, 86vw); border-radius: 42px; }
  .phone-screen { min-height: 485px; border-radius: 30px; padding: 20px 15px; }
  .app-cats { gap: 7px; }
  .app-cat { min-height: 65px; font-size: 9px; }
  .pro-card, .bottom-nav { display: none; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps-note { flex-direction: column; text-align: center; padding: 28px 22px; }
  .steps-note .btn { width: 100%; }
  .cta-single { padding: 48px 24px; }
  .cta-single .btn { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid var(--border); }
  .feature:last-child { border-bottom: 0; }
  .cta-box { padding: 34px 24px; }
  .cta-box .btn { width: 100%; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .copy { flex-direction: column; gap: 8px; text-align: center; }
}
