:root {

  --em-50:#faf7fd;
  --em-100:#f3ecfb;
  --em-200:#e9ddf7;
  --em-300:#d8c2f0;
  --em-400:#bf9be5;
  --em-500:#a675d7;
  --em-600:#8f57c6;
  --em-700:#7a44ac;
  --em-800:#673b8e;
  --em-900:#583377;
  --em-950:#381952;

  --text:#201329;
  --muted:#786889;
  --white:#ffffff;

  --border:rgba(166,117,215,.2);

}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{

  font-family:"Inter",sans-serif;

  color:var(--text);

  overflow-x:hidden;

  background:
  radial-gradient(circle at top left,var(--em-200),transparent 35%),
  radial-gradient(circle at top right,var(--em-300),transparent 25%),
  linear-gradient(180deg,var(--em-50),white);

}

.noise{

  position:fixed;
  inset:0;

  pointer-events:none;

  opacity:.05;

  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");

}

.header{

  position:fixed;
  width:100%;
  top:18px;

  z-index:999;

}

.header.scrolled{

  top:0;

}

.nav{

  width:min(1180px,calc(100% - 30px));

  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:16px 20px;

  border-radius:999px;

  background:rgba(255,255,255,.65);

  backdrop-filter:blur(20px);

  border:1px solid var(--border);

  box-shadow:0 20px 60px rgba(56,25,82,.12);

}

.brand{

  display:flex;
  align-items:center;
  gap:14px;

  text-decoration:none;

}

.brand-logo{

  width:48px;
  height:48px;

  border-radius:16px;

  display:grid;
  place-items:center;

  background:linear-gradient(135deg,var(--em-800),var(--em-500));

  color:white;

  font-weight:900;

}

.brand strong{

  display:block;

  color:var(--em-950);

}

.brand small{

  color:var(--muted);

}

.nav-links{

  display:flex;
  align-items:center;
  gap:10px;

}

.nav-links a{

  text-decoration:none;

  color:var(--em-900);

  font-weight:700;

  padding:12px 15px;

  border-radius:999px;

  transition:.25s;

}

.nav-links a:hover{

  background:var(--em-100);

}

.nav-cta{

  background:var(--em-950);

  color:white !important;

}

.menu-btn{

  display:none;

}

.section{

  width:min(1180px,calc(100% - 30px));

  margin:auto;

  padding:110px 0;

}

.hero{

  min-height:100vh;

  display:grid;
  grid-template-columns:1fr 1fr;

  align-items:center;

  gap:60px;

}

.hero-glow{

  position:absolute;

  width:600px;
  height:600px;

  right:-120px;
  top:120px;

  background:conic-gradient(var(--em-300),var(--em-700),var(--em-300));

  border-radius:50%;

  filter:blur(60px);

  opacity:.18;

}

.eyebrow{

  display:inline-flex;

  padding:10px 14px;

  border-radius:999px;

  background:white;

  border:1px solid var(--border);

  color:var(--em-700);

  font-weight:800;

  margin-bottom:20px;

}

h1{

  font-size:clamp(3rem,7vw,6.5rem);

  line-height:.9;

  letter-spacing:-.08em;

  color:var(--em-950);

}

h2{

  font-size:clamp(2.2rem,5vw,4.5rem);

  line-height:.95;

  letter-spacing:-.06em;

  color:var(--em-950);

}

.hero p,
.app-copy p,
.section-title p,
.cta p{

  margin-top:24px;

  color:var(--muted);

  line-height:1.8;

}

.hero-actions{

  display:flex;
  gap:15px;

  margin-top:30px;

}

.btn{

  padding:16px 26px;

  border-radius:999px;

  text-decoration:none;

  font-weight:800;

  transition:.3s;

}

.btn:hover{

  transform:translateY(-4px);

}

.primary{

  background:linear-gradient(135deg,var(--em-800),var(--em-500));

  color:white;

  box-shadow:0 20px 40px rgba(122,68,172,.35);

}

.secondary{

  border:1px solid var(--border);

  background:white;

  color:var(--em-900);

}

.hero-stats{

  margin-top:40px;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:16px;

}

.hero-stats article{

  padding:24px;

  border-radius:28px;

  background:rgba(255,255,255,.6);

  border:1px solid var(--border);

  backdrop-filter:blur(20px);

}

.hero-stats strong{

  display:block;

  font-size:2rem;

  color:var(--em-800);

}

.hero-stats span{

  color:var(--muted);

}

.hero-image-card{

  position:relative;

  min-height:620px;

  border-radius:40px;

  overflow:hidden;

  border:1px solid var(--border);

  box-shadow:0 35px 90px rgba(56,25,82,.2);

}

.hero-image-card img{

  width:100%;
  height:100%;

  object-fit:cover;

}

.hero-image-card::after{

  content:"";

  position:absolute;
  inset:0;

  background:
  linear-gradient(180deg,transparent,rgba(56,25,82,.85)),
  radial-gradient(circle at top right,rgba(166,117,215,.3),transparent 35%);

}

.hero-image-overlay{

  position:absolute;

  left:25px;
  right:25px;
  bottom:25px;

  z-index:2;

  padding:25px;

  border-radius:28px;

  background:rgba(255,255,255,.12);

  backdrop-filter:blur(16px);

  border:1px solid rgba(255,255,255,.2);

  color:white;

}

.live-status{

  display:flex;
  align-items:center;
  gap:10px;

  margin-bottom:15px;

}

.live-dot{

  width:12px;
  height:12px;

  border-radius:50%;

  background:#1eff91;

  box-shadow:0 0 0 10px rgba(30,255,145,.15);

}

.hero-image-overlay h3{

  font-size:2rem;

  margin-bottom:10px;

}

.cards-grid,
.service-grid{

  display:grid;

  gap:24px;

}

.cards-grid{

  grid-template-columns:repeat(3,1fr);

}

.service-grid{

  grid-template-columns:repeat(4,1fr);

}

.glass-card,
.service-card{

  padding:32px;

  border-radius:32px;

  background:rgba(255,255,255,.65);

  border:1px solid var(--border);

  backdrop-filter:blur(18px);

  box-shadow:0 20px 50px rgba(56,25,82,.08);

}

.glass-card p,
.service-card p{

  margin-top:15px;

  color:var(--muted);

  line-height:1.8;

}

.service-card span{

  font-size:3rem;

  font-weight:900;

  color:var(--em-500);

}

.app-section{

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:80px;

  align-items:center;

}

.phone{

  width:min(360px,100%);
  height:690px;

  margin:auto;

  padding:16px;

  border-radius:55px;

  background:linear-gradient(160deg,var(--em-950),var(--em-800));

  box-shadow:0 40px 100px rgba(56,25,82,.3);

}

.phone-screen{

  position:relative;

  height:100%;

  border-radius:40px;

  overflow:hidden;

  background:
  linear-gradient(135deg,var(--em-50),var(--em-300));

}

.map-grid{

  height:70%;

  position:relative;

  background-image:
  linear-gradient(90deg,rgba(88,51,119,.08) 1px,transparent 1px),
  linear-gradient(rgba(88,51,119,.08) 1px,transparent 1px);

  background-size:40px 40px;

}

.bus,
.pin{

  position:absolute;

  font-size:2rem;

}

.bus1{

  top:25%;
  left:20%;

  animation:moveBus 5s infinite alternate;

}

.bus2{

  top:48%;
  right:20%;

  animation:moveBus 6s infinite alternate-reverse;

}

.pin{

  top:40%;
  left:50%;

}

.phone-card{

  position:absolute;

  left:20px;
  right:20px;
  bottom:20px;

  padding:24px;

  border-radius:28px;

  background:linear-gradient(135deg,var(--em-900),var(--em-600));

  color:white;

}

.feature-list{

  display:grid;
  gap:15px;

  margin-top:30px;

}

.feature-list div{

  padding:18px;

  border-radius:22px;

  background:rgba(255,255,255,.7);

  border:1px solid var(--border);

}

.feature-list span{

  color:var(--muted);

}

.timeline{

  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:20px;

  padding:35px;

  border-radius:40px;

  background:rgba(255,255,255,.65);

  border:1px solid var(--border);

}

.stop{

  padding:22px;

  border-radius:26px;

  background:white;

}

.stop span{

  width:18px;
  height:18px;

  display:block;

  border-radius:50%;

  background:var(--em-500);

  margin-bottom:18px;

}

.stop.active{

  background:linear-gradient(135deg,var(--em-950),var(--em-700));

  color:white;

}

.stop p{

  margin-top:12px;

  line-height:1.6;

}

.cta{

  padding:80px 30px;

  text-align:center;

  border-radius:40px;

  background:rgba(255,255,255,.65);

  border:1px solid var(--border);

}

.footer{

  padding:40px;

  text-align:center;

  color:var(--muted);

}

.reveal{

  opacity:0;

  transform:translateY(40px);

  transition:.8s;

}

.reveal.visible{

  opacity:1;

  transform:translateY(0);

}

@keyframes moveBus{

  to{

    transform:translate(40px,30px);

  }

}

@media(max-width:980px){

  .menu-btn{

    display:block;

    width:44px;
    height:44px;

    border:none;

    border-radius:14px;

    background:var(--em-950);

    color:white;

    font-size:1.1rem;

  }

  .nav-links{

    position:fixed;

    top:90px;
    left:15px;
    right:15px;

    background:white;

    border-radius:25px;

    padding:20px;

    flex-direction:column;

    opacity:0;

    pointer-events:none;

    transition:.3s;

  }

  .nav-links.open{

    opacity:1;

    pointer-events:auto;

  }

  .hero,
  .app-section,
  .cards-grid,
  .service-grid,
  .timeline{

    grid-template-columns:1fr;

  }

  .hero{

    padding-top:140px;

  }

  .hero-image-card{

    min-height:500px;

  }

  .hero-stats{

    grid-template-columns:1fr;

  }

}
/* =========================
   EMPRESA PREMIUM 2026
========================= */

.company-section{
  position:relative;
}

.company-top-grid{
  margin-top:50px;
}

.card-icon{

  width:70px;
  height:70px;

  border-radius:22px;

  display:grid;
  place-items:center;

  font-size:2rem;

  margin-bottom:22px;

  background:
  linear-gradient(
    135deg,
    var(--em-700),
    var(--em-500)
  );

  box-shadow:
  0 20px 40px rgba(122,68,172,.25);

}

.info-block{

  margin-top:50px;

  display:grid;
  grid-template-columns:240px 1fr;

  gap:40px;

  align-items:start;

  padding:45px;

  border-radius:40px;

  background:
  rgba(255,255,255,.68);

  border:1px solid var(--border);

  backdrop-filter:blur(20px);

  box-shadow:
  0 25px 60px rgba(56,25,82,.08);

}

.info-block.reverse{

  grid-template-columns:1fr 240px;

}

.info-badge{

  position:sticky;

  top:120px;

  height:180px;

  border-radius:30px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:2rem;
  font-weight:900;

  letter-spacing:.15em;

  color:white;

  background:
  linear-gradient(
    135deg,
    var(--em-950),
    var(--em-600)
  );

  box-shadow:
  0 30px 70px rgba(56,25,82,.25);

}

.info-content h3{

  font-size:2.5rem;

  line-height:1;

  letter-spacing:-.05em;

  color:var(--em-950);

  margin-bottom:24px;

}

.info-content p{

  color:var(--muted);

  line-height:1.9;

  font-size:1.05rem;

  margin-bottom:20px;

}

.values-section{

  margin-top:80px;

}

.section-title.center{

  text-align:center;

  margin:auto auto 50px;

}

.values-grid{

  display:grid;

  grid-template-columns:
  repeat(5,1fr);

  gap:22px;

}

.value-card{

  position:relative;

  padding:34px 26px;

  border-radius:34px;

  overflow:hidden;

  background:
  rgba(255,255,255,.7);

  border:1px solid var(--border);

  backdrop-filter:blur(18px);

  transition:.35s;

  box-shadow:
  0 20px 50px rgba(56,25,82,.08);

}

.value-card:hover{

  transform:
  translateY(-10px);

  box-shadow:
  0 35px 80px rgba(56,25,82,.15);

}

.value-card::before{

  content:"";

  position:absolute;

  width:180px;
  height:180px;

  border-radius:50%;

  top:-80px;
  right:-80px;

  background:
  radial-gradient(
    circle,
    rgba(166,117,215,.25),
    transparent 70%
  );

}

.value-number{

  font-size:3rem;

  font-weight:900;

  line-height:1;

  letter-spacing:-.08em;

  margin-bottom:22px;

  color:var(--em-400);

}

.value-card h3{

  margin-bottom:15px;

  color:var(--em-950);

}

.value-card p{

  color:var(--muted);

  line-height:1.7;

}

/* RESPONSIVE */

@media(max-width:1100px){

  .values-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

}

@media(max-width:900px){

  .info-block,
  .info-block.reverse{

    grid-template-columns:1fr;

  }

  .info-badge{

    position:relative;

    top:0;

    height:120px;

  }

}

@media(max-width:700px){

  .values-grid{

    grid-template-columns:1fr;

  }

  .info-content h3{

    font-size:2rem;

  }

}
/* =========================
   TARIFAS PREMIUM 2026
========================= */

.fares-section{

  position:relative;

}

.fares-grid{

  margin-top:60px;

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:30px;

}

.fare-card{

  position:relative;

  overflow:hidden;

  padding:45px;

  border-radius:40px;

  background:
  rgba(255,255,255,.72);

  border:1px solid var(--border);

  backdrop-filter:blur(22px);

  box-shadow:
  0 30px 70px rgba(56,25,82,.08);

  transition:.4s;

}

.fare-card:hover{

  transform:
  translateY(-10px);

  box-shadow:
  0 45px 100px rgba(56,25,82,.16);

}

.fare-card.premium{

  background:
  linear-gradient(
    135deg,
    rgba(56,25,82,.98),
    rgba(122,68,172,.96)
  );

  color:white;

}

.fare-card.premium h3,
.fare-card.premium p,
.fare-card.premium .fare-footer span{

  color:white;

}

.fare-glow{

  position:absolute;

  width:240px;
  height:240px;

  border-radius:50%;

  top:-120px;
  right:-120px;

  background:
  radial-gradient(
    circle,
    rgba(166,117,215,.35),
    transparent 70%
  );

}

.fare-label{

  position:relative;

  z-index:2;

  display:inline-flex;

  padding:10px 16px;

  border-radius:999px;

  background:
  rgba(255,255,255,.12);

  border:1px solid rgba(255,255,255,.15);

  font-size:.9rem;

  font-weight:800;

  margin-bottom:28px;

}

.fare-card h3{

  position:relative;

  z-index:2;

  font-size:2rem;

  line-height:1;

  letter-spacing:-.05em;

  margin-bottom:25px;

  color:var(--em-950);

}

.fare-price{

  position:relative;

  z-index:2;

  display:flex;
  align-items:flex-start;

  gap:8px;

  font-size:5rem;

  font-weight:900;

  line-height:1;

  letter-spacing:-.08em;

  margin-bottom:24px;

  color:var(--em-700);

}

.fare-card.premium .fare-price{

  color:white;

}

.currency{

  font-size:2rem;

  margin-top:10px;

}

.fare-price small{

  font-size:1.3rem;

  margin-top:18px;

  letter-spacing:0;

}

.fare-card p{

  position:relative;

  z-index:2;

  color:var(--muted);

  line-height:1.8;

  margin-bottom:35px;

}

.fare-footer{

  position:relative;

  z-index:2;

  display:flex;
  gap:16px;
  flex-wrap:wrap;

}

.fare-footer span{

  padding:12px 16px;

  border-radius:16px;

  background:
  rgba(255,255,255,.6);

  border:1px solid rgba(255,255,255,.12);

  font-weight:700;

  color:var(--em-900);

}

@media(max-width:900px){

  .fares-grid{

    grid-template-columns:1fr;

  }

}

@media(max-width:600px){

  .fare-card{

    padding:35px 28px;

  }

  .fare-price{

    font-size:4rem;

  }

  .fare-card h3{

    font-size:1.7rem;

  }

}
/* =========================
   RUTAS INTERACTIVAS
========================= */

.routes-section{
  position:relative;
}

.routes-layout{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:30px;
  margin-top:50px;
}

.routes-menu{
  display:grid;
  gap:14px;
  max-height:680px;
  overflow:auto;
  padding-right:8px;
}

.route-btn{
  width:100%;
  text-align:left;
  border:none;
  cursor:pointer;
  padding:20px;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--border);
  color:var(--em-950);
  font-weight:800;
  transition:.3s;
}

.route-btn span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:.88rem;
  font-weight:600;
}

.route-btn:hover,
.route-btn.active{
  background:linear-gradient(135deg,var(--em-950),var(--em-700));
  color:white;
  transform:translateY(-3px);
}

.route-btn:hover span,
.route-btn.active span{
  color:rgba(255,255,255,.75);
}

.route-detail{
  min-height:680px;
  padding:35px;
  border-radius:40px;
  background:rgba(255,255,255,.7);
  border:1px solid var(--border);
  backdrop-filter:blur(20px);
  box-shadow:0 30px 70px rgba(56,25,82,.08);
}

.route-detail-header{
  margin-bottom:30px;
}

.route-detail-header span{
  display:inline-flex;
  padding:9px 14px;
  border-radius:999px;
  background:var(--em-100);
  color:var(--em-700);
  font-weight:900;
  margin-bottom:16px;
}

.route-detail-header h3{
  font-size:2.5rem;
  line-height:1;
  letter-spacing:-.05em;
  color:var(--em-950);
}

.route-detail-header p{
  margin-top:14px;
  color:var(--muted);
  line-height:1.7;
}

.stops-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.stop-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  border-radius:20px;
  background:white;
  border:1px solid var(--border);
}

.stop-number{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  flex:none;
  background:linear-gradient(135deg,var(--em-700),var(--em-500));
  color:white;
  font-size:.85rem;
  font-weight:900;
}

.stop-name{
  font-weight:800;
  color:var(--em-950);
}

@media(max-width:980px){
  .routes-layout{
    grid-template-columns:1fr;
  }

  .routes-menu{
    max-height:none;
  }

  .stops-list{
    grid-template-columns:1fr;
  }

  .route-detail{
    min-height:auto;
  }
}
/* =========================
   RUTAS CON MODAL
========================= */

.routes-cards-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.route-card-btn{
  position:relative;
  min-height:220px;
  padding:28px;
  border-radius:34px;
  cursor:pointer;
  text-align:left;
  overflow:hidden;
  border:1px solid var(--border);
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(20px);
  box-shadow:0 25px 60px rgba(56,25,82,.08);
  transition:.35s;
}

.route-card-btn::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  top:-80px;
  right:-80px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(166,117,215,.35),transparent 70%);
}

.route-card-btn:hover{
  transform:translateY(-10px);
  box-shadow:0 40px 90px rgba(56,25,82,.16);
  background:linear-gradient(135deg,var(--em-950),var(--em-700));
}

.route-card-btn:hover h3,
.route-card-btn:hover p,
.route-card-btn:hover .route-chip{
  color:white;
}

.route-card-btn h3{
  position:relative;
  z-index:2;
  font-size:1.7rem;
  line-height:1;
  letter-spacing:-.05em;
  color:var(--em-950);
  margin-bottom:16px;
}

.route-card-btn p{
  position:relative;
  z-index:2;
  color:var(--muted);
  line-height:1.6;
}

.route-chip{
  position:relative;
  z-index:2;
  display:inline-flex;
  padding:9px 14px;
  border-radius:999px;
  background:var(--em-100);
  color:var(--em-700);
  font-weight:900;
  font-size:.82rem;
  margin-bottom:22px;
}

.route-modal{
  position:fixed;
  inset:0;
  z-index:2000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.route-modal.active{
  display:flex;
}

.route-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(20,8,32,.65);
  backdrop-filter:blur(12px);
}

.route-modal-content{
  position:relative;
  z-index:2;
  width:min(980px,100%);
  max-height:88vh;
  overflow:auto;
  padding:38px;
  border-radius:42px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 50px 140px rgba(0,0,0,.35);
  animation:modalIn .35s ease;
}

.route-modal-close{
  position:absolute;
  top:22px;
  right:22px;
  width:44px;
  height:44px;
  border:none;
  border-radius:16px;
  background:var(--em-950);
  color:white;
  font-size:1.1rem;
  cursor:pointer;
}

.route-modal-header span{
  display:inline-flex;
  padding:10px 15px;
  border-radius:999px;
  background:var(--em-100);
  color:var(--em-700);
  font-weight:900;
  margin-bottom:18px;
}

.route-modal-header h3{
  font-size:clamp(2rem,4vw,4rem);
  line-height:.95;
  letter-spacing:-.06em;
  color:var(--em-950);
}

.route-modal-header p{
  margin-top:18px;
  color:var(--muted);
  line-height:1.7;
}

.route-line-visual{
  display:flex;
  align-items:center;
  gap:14px;
  margin:34px 0;
}

.route-line-visual span{
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--em-700);
  box-shadow:0 0 0 10px rgba(166,117,215,.16);
}

.route-line-visual div{
  height:8px;
  flex:1;
  border-radius:999px;
  background:linear-gradient(90deg,var(--em-950),var(--em-600),var(--em-300));
}

.modal-stops-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.modal-stop-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  border-radius:20px;
  background:white;
  border:1px solid var(--border);
}

.modal-stop-number{
  width:36px;
  height:36px;
  flex:none;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:linear-gradient(135deg,var(--em-700),var(--em-500));
  color:white;
  font-size:.85rem;
  font-weight:900;
}

.modal-stop-name{
  font-weight:800;
  color:var(--em-950);
}

@keyframes modalIn{
  from{
    opacity:0;
    transform:translateY(30px) scale(.96);
  }

  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@media(max-width:980px){
  .routes-cards-grid{
    grid-template-columns:1fr;
  }

  .modal-stops-list{
    grid-template-columns:1fr;
  }

  .route-modal-content{
    padding:30px 22px;
  }
}
/* =========================
   STORES APP
========================= */

.app-logo-wrapper{

  display:flex;
  align-items:center;
  gap:16px;

}

.app-logo{

  width:72px;
  height:72px;

  border-radius:22px;

  object-fit:cover;

  box-shadow:
  0 20px 40px rgba(0,0,0,.18);

}

.stores-wrapper{

  margin-top:35px;

  display:flex;
  gap:18px;
  flex-wrap:wrap;

}

.store-card{

  position:relative;

  overflow:hidden;

  min-width:240px;

  display:flex;
  align-items:center;
  gap:18px;

  padding:18px 22px;

  border-radius:26px;

  text-decoration:none;

  transition:.35s;

  border:1px solid var(--border);

  backdrop-filter:blur(20px);

}

.store-card::before{

  content:"";

  position:absolute;

  width:180px;
  height:180px;

  top:-90px;
  right:-90px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(255,255,255,.15),
    transparent 70%
  );

}

.store-card:hover{

  transform:
  translateY(-8px);

}

.google-play{

  background:
  linear-gradient(
    135deg,
    #1b1b1b,
    #2f2f2f
  );

  color:white;

  box-shadow:
  0 30px 60px rgba(0,0,0,.18);

}

.app-store{

  background:
  linear-gradient(
    135deg,
    var(--em-950),
    var(--em-700)
  );

  color:white;

  box-shadow:
  0 30px 60px rgba(56,25,82,.18);

}

.store-icon{

  width:58px;
  height:58px;

  flex:none;

  display:grid;
  place-items:center;

  border-radius:18px;

  background:
  rgba(255,255,255,.12);

  border:
  1px solid rgba(255,255,255,.15);

  font-size:1.7rem;
  font-weight:900;

}

.store-card small{

  display:block;

  opacity:.7;

  margin-bottom:4px;

  font-size:.82rem;

}

.store-card strong{

  font-size:1.2rem;

  letter-spacing:-.03em;

}

@media(max-width:700px){

  .stores-wrapper{

    flex-direction:column;

  }

  .store-card{

    width:100%;

  }

}
/* =========================
   BADGES STORES
========================= */

.store-badge{

  display:block;

  transition:.3s;

}

.store-badge:hover{

  transform:
  translateY(-6px)
  scale(1.03);

}

.store-badge img{

  width:240px;

  max-width:100%;

  display:block;

  filter:
  drop-shadow(0 25px 45px rgba(0,0,0,.18));

}

@media(max-width:700px){

  .store-badge img{

    width:100%;

  }

}
.section{
  width:min(1180px,calc(100% - 30px));
  margin:auto;
  padding:70px 0;
}

.jobs-hero{
  width:min(1180px,calc(100% - 30px));
  margin:auto;
  padding:145px 0 45px;
}

.jobs-hero-card{
  padding:55px;
  border-radius:42px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--border);
  backdrop-filter:blur(22px);
  box-shadow:0 30px 80px rgba(56,25,82,.12);
}

.jobs-hero-card h1{
  max-width:850px;
  margin-bottom:24px;
}

.jobs-hero-card p{
  max-width:680px;
  color:var(--muted);
  line-height:1.8;
  margin-bottom:30px;
}

.jobs-section{
  padding-top:45px;
}

.vacantes-grid{
  margin-top:42px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.vacante-card{
  display:flex;
  flex-direction:column;
  padding:30px;
  border-radius:32px;
  background:rgba(255,255,255,.76);
  border:1px solid var(--border);
  backdrop-filter:blur(20px);
  box-shadow:0 22px 55px rgba(56,25,82,.08);
  transition:.3s;
}

.vacante-card:hover{
  transform:translateY(-8px);
  box-shadow:0 35px 80px rgba(56,25,82,.14);
}

.vacante-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}

.status-chip,
.route-chip{
  display:inline-flex;
  padding:8px 13px;
  border-radius:999px;
  background:var(--em-100);
  color:var(--em-700);
  font-weight:900;
  font-size:.8rem;
}

.status-chip{
  background:white;
  border:1px solid var(--border);
  color:var(--em-900);
}

.vacante-card h3{
  font-size:1.7rem;
  line-height:1;
  letter-spacing:-.04em;
  color:var(--em-950);
  margin-bottom:14px;
}

.vacante-description{
  color:var(--muted);
  line-height:1.65;
  margin-bottom:18px;
}

.requirements{
  padding:16px;
  border-radius:20px;
  background:white;
  border:1px solid var(--border);
  margin-bottom:18px;
}

.requirements strong{
  color:var(--em-800);
}

.requirements p{
  margin-top:8px;
  color:var(--muted);
  line-height:1.6;
}

.vacante-details{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.vacante-details span{
  padding:9px 12px;
  border-radius:14px;
  background:white;
  border:1px solid var(--border);
  color:var(--em-900);
  font-weight:700;
  font-size:.85rem;
}

.salary-box{
  margin-top:auto;
  margin-bottom:20px;
  padding:15px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--em-950),var(--em-700));
  color:white;
}

.salary-box small{
  display:block;
  opacity:.75;
  margin-bottom:4px;
}

.salary-box strong{
  font-size:1.15rem;
}

.card-btn{
  display:block;
  text-align:center;
}

.empty-card{
  padding:45px;
  border-radius:36px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--border);
  text-align:center;
  box-shadow:0 25px 60px rgba(56,25,82,.08);
}

.empty-card h3{
  font-size:2rem;
  color:var(--em-950);
  margin-bottom:12px;
}

.empty-card p{
  color:var(--muted);
}

@media(max-width:980px){
  .jobs-hero{
    padding-top:130px;
  }

  .jobs-hero-card{
    padding:35px 26px;
  }

  .vacantes-grid{
    grid-template-columns:1fr;
  }
}

/* ==========================================
   FORMULARIO DE POSTULACIÓN
========================================== */

.form-section{
  padding-top:150px;
  padding-bottom:80px;
}

.form-card{

  max-width:1100px;

  margin:auto;

  padding:50px;

  border-radius:42px;

  background:
  rgba(255,255,255,.78);

  border:1px solid var(--border);

  backdrop-filter:blur(24px);

  box-shadow:
  0 35px 90px rgba(56,25,82,.12);
}

.form-card h1{

  margin:15px 0 20px;

  font-size:clamp(2.5rem,5vw,4.5rem);

  line-height:.95;

  letter-spacing:-.06em;
}

.form-card > p{

  color:var(--muted);

  line-height:1.8;

  margin-bottom:35px;

  max-width:850px;
}

/* ==========================================
   RESUMEN VACANTE
========================================== */

.vacante-summary{

  padding:30px;

  border-radius:28px;

  background:
  linear-gradient(
    135deg,
    rgba(255,255,255,.9),
    rgba(243,236,251,.8)
  );

  border:1px solid var(--border);

  margin-bottom:40px;
}

.vacante-summary h3{

  color:var(--em-950);

  margin-bottom:20px;

  font-size:1.5rem;
}

.vacante-summary p{

  margin-bottom:10px;

  color:var(--muted);
}

.vacante-summary strong{

  color:var(--em-900);
}

/* ==========================================
   FORMULARIO
========================================== */

.job-form{
  margin-top:20px;
}

.form-grid{

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:24px;
}

.form-grid .full{
  grid-column:1 / -1;
}

/* ==========================================
   LABELS
========================================== */

label{

  display:block;

  margin-bottom:10px;

  color:var(--em-950);

  font-weight:800;

  font-size:.95rem;
}

/* ==========================================
   INPUTS
========================================== */

input,
select,
textarea{

  width:100%;

  padding:16px 18px;

  border-radius:18px;

  border:1px solid var(--border);

  background:white;

  font-family:"Inter",sans-serif;

  font-size:1rem;

  color:var(--text);

  transition:.25s;

  outline:none;
}

input:hover,
select:hover,
textarea:hover{

  border-color:
  rgba(166,117,215,.45);
}

input:focus,
select:focus,
textarea:focus{

  border-color:var(--em-500);

  box-shadow:
  0 0 0 5px rgba(166,117,215,.12);

  transform:translateY(-1px);
}

textarea{

  min-height:140px;

  resize:vertical;
}

/* ==========================================
   PLACEHOLDER
========================================== */

input::placeholder,
textarea::placeholder{

  color:#a497b2;
}

/* ==========================================
   BOTÓN ENVIAR
========================================== */

.submit-btn{

  margin-top:35px;

  border:none;

  cursor:pointer;

  width:100%;

  font-size:1rem;

  padding:18px;

  border-radius:20px;
}

.submit-btn:hover{

  transform:
  translateY(-4px);

  box-shadow:
  0 25px 50px rgba(122,68,172,.25);
}

/* ==========================================
   SECCIÓN ÉXITO
========================================== */

.success-section{

  min-height:100vh;

  display:flex;

  align-items:center;

  justify-content:center;

  padding:140px 20px 80px;
}

.success-section .cta{

  max-width:900px;

  width:100%;
}

.success-section h2{

  margin-bottom:20px;
}

.success-section p{

  max-width:700px;

  margin:auto auto 30px;
}

/* ==========================================
   CAMPOS DESTACADOS
========================================== */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button{
  opacity:1;
}

select{

  cursor:pointer;
}

/* ==========================================
   EFECTO TARJETAS DE FORMULARIO
========================================== */

.form-grid > div{

  padding:18px;

  border-radius:24px;

  background:
  rgba(255,255,255,.55);

  border:1px solid rgba(166,117,215,.08);

  transition:.25s;
}

.form-grid > div:hover{

  background:white;

  box-shadow:
  0 15px 35px rgba(56,25,82,.06);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:980px){

  .form-grid{
    grid-template-columns:1fr;
  }

  .form-card{
    padding:35px 25px;
  }

  .vacante-summary{
    padding:22px;
  }

  .submit-btn{
    width:100%;
  }
}

@media(max-width:600px){

  .form-card h1{
    font-size:2.3rem;
  }

  .form-card{
    border-radius:28px;
  }

  .form-grid > div{
    padding:14px;
  }
}
.secondary{
  border:1px solid var(--border);
  background:white;
  color:var(--em-900);
}

.receipt-section,
.consult-section{
  padding-top:150px;
  padding-bottom:80px;
}

.receipt-card,
.consult-card{
  max-width:1100px;
  margin:auto;
  padding:50px;
  border-radius:42px;
  background:rgba(255,255,255,.82);
  border:1px solid var(--border);
  backdrop-filter:blur(24px);
  box-shadow:0 35px 90px rgba(56,25,82,.12);
}

.receipt-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:30px;
  margin-bottom:35px;
}

.receipt-header h1,
.consult-card h1{
  font-size:clamp(2.5rem,5vw,4.5rem);
  line-height:.95;
  letter-spacing:-.06em;
  color:var(--em-950);
  margin-bottom:18px;
}

.receipt-header p,
.consult-card p{
  color:var(--muted);
  line-height:1.8;
}

.folio-box{
  min-width:240px;
  padding:22px;
  border-radius:26px;
  background:linear-gradient(135deg,var(--em-950),var(--em-700));
  color:white;
  text-align:center;
  box-shadow:0 25px 50px rgba(56,25,82,.18);
}

.folio-box span{
  display:block;
  opacity:.75;
  margin-bottom:8px;
}

.folio-box strong{
  font-size:1.35rem;
  letter-spacing:.04em;
}

.receipt-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-bottom:35px;
}

.receipt-grid div{
  padding:20px;
  border-radius:22px;
  background:white;
  border:1px solid var(--border);
}

.receipt-grid span{
  display:block;
  color:var(--muted);
  margin-bottom:8px;
}

.receipt-grid strong{
  color:var(--em-950);
}

.receipt-info{
  padding:30px;
  border-radius:28px;
  background:white;
  border:1px solid var(--border);
}

.receipt-info h3{
  color:var(--em-950);
  margin:24px 0 14px;
  font-size:1.4rem;
}

.receipt-info h3:first-child{
  margin-top:0;
}

.receipt-info p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:10px;
}

.receipt-info strong{
  color:var(--em-900);
}

.receipt-date{
  margin-top:25px;
  padding-top:20px;
  border-top:1px solid var(--border);
}

.receipt-note{
  margin-top:28px;
  padding:22px;
  border-radius:24px;
  background:var(--em-100);
  color:var(--em-900);
  line-height:1.7;
}

.receipt-actions{
  max-width:1100px;
  margin:25px auto 0;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.consult-form{
  margin-top:35px;
  display:grid;
  gap:16px;
}

.consult-form input{
  max-width:500px;
}

.alert-error{
  margin-top:28px;
  padding:18px;
  border-radius:18px;
  background:#fff1f1;
  color:#9f1239;
  border:1px solid rgba(159,18,57,.15);
  font-weight:800;
}

.status-result{
  margin-top:35px;
  padding:30px;
  border-radius:30px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--border);
}

.status-badge{
  display:inline-flex;
  margin:24px 0;
  padding:12px 18px;
  border-radius:999px;
  background:var(--em-100);
  color:var(--em-700);
  font-weight:900;
}

@media print{
  body{
    background:white;
  }

  .noise,
  .header,
  .footer,
  .no-print,
  .receipt-actions{
    display:none !important;
  }

  .section,
  .receipt-section{
    width:100%;
    padding:0;
  }

  .receipt-card{
    box-shadow:none;
    border:none;
    padding:20px;
  }

  .receipt-header h1{
    font-size:2.4rem;
  }

  .receipt-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:900px){
  .receipt-header{
    flex-direction:column;
  }

  .folio-box{
    width:100%;
  }

  .receipt-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .receipt-card,
  .consult-card{
    padding:30px 22px;
    border-radius:30px;
  }

  .receipt-grid{
    grid-template-columns:1fr;
  }

  .receipt-actions{
    flex-direction:column;
  }

  .receipt-actions .btn{
    width:100%;
  }
}