:root{
  --edge: clamp(8px, 1.1vw, 14px);
  --rim:  clamp(6px, 0.8vw, 10px);
  --ink: rgba(255,255,255,.93);
  --muted: rgba(255,255,255,.72);
  --glass: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.18);
  
  /* Colores de la marca */
  --aztro-blue-dark: rgba(15, 70, 150, 0.95);
  --aztro-blue-mid: rgba(54, 140, 210, 0.95);
  --aztro-blue-light: rgba(95, 170, 230, 0.85);
  --aztro-accent: rgba(100, 180, 255, 0.45);
}

*{box-sizing:border-box}
html, body{
  width:100%;
  overflow-x:hidden;
}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:#e3f0f9;
}













/* ================= FULL BLEED ================= */
.frame{
  min-height:100dvh;
  display:block;
  padding: var(--edge);
}

.outer{
  width: 100%;
  height: calc(100dvh - (var(--edge) * 2));
}

.shell{
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 90px rgba(0,0,0,.18);
  background:
    linear-gradient(180deg,
      rgba(54,140,210,.95) 0%,
      rgba(95,170,230,.85) 28%,
      rgba(241,219,178,.35) 55%,
      rgba(15,70,150,.95) 100%);
}

/* ================= AURORA ================= */
.aurora{
  position:absolute;
  inset:-50px;
  filter:blur(25px);
  pointer-events:none;
  background:
    radial-gradient(850px 650px at 15% 20%, rgba(100, 180, 255, 0.45), transparent 65%),
    radial-gradient(920px 720px at 85% 15%, rgba(180, 120, 255, 0.28), transparent 68%),
    radial-gradient(780px 580px at 50% 85%, rgba(50, 140, 230, 0.55), transparent 62%),
    radial-gradient(650px 500px at 70% 50%, rgba(255, 200, 120, 0.15), transparent 60%);
  mix-blend-mode:screen;
  opacity:.75;
  animation: auroraShift 20s ease-in-out infinite;
}

@keyframes auroraShift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-10px, 15px) scale(1.02); }
  66% { transform: translate(15px, -10px) scale(0.98); }
}

/* ================= CONTENT ================= */
.content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  padding:18px 20px 22px;
}

/* ================= NAV ================= */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--ink);
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  flex-shrink: 0;
}

.brand img{
  width:180px;
  height:34px;
  object-fit:contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.25));
  transition: width 0.3s ease;
}

.navLinks{
  display:flex;
  gap:18px;
  font-size:12.5px;
  align-items:center;
  flex-wrap:nowrap;
  white-space:nowrap;
}

.navLinks a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 10px;
  border-radius:999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.navLinks a:hover{
  color: var(--ink);
  background: rgba(255,255,255,.06);
}

.navActions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink: 0;
}

/* ================= ICON BUTTON (PERFIL) ================= */
.cta-icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ink);
  display: grid;
  place-items: center;
  text-decoration: none;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 
    0 4px 16px 0 rgba(0, 0, 0, 0.08),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cta-icon:hover{
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px 0 rgba(0, 0, 0, 0.12),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.3);
}

/* ================= HAMBURGER ================= */
.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 16px rgba(0,0,0,.10), inset 0 1px 2px rgba(255,255,255,.20);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  padding:0;
  flex-shrink: 0;
}

.burger svg{
  width: 20px;
  height: 20px;
}

/* ================= MOBILE MENU - ESTILO AZUL ================= */
.mobileMenu{
  position: fixed;
  right: 14px;
  top: 14px;
  width: min(360px, calc(100vw - 28px));
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.20);
  background: 
    linear-gradient(145deg,
      rgba(54, 140, 210, 0.92) 0%,
      rgba(75, 160, 225, 0.88) 30%,
      rgba(45, 120, 200, 0.94) 70%,
      rgba(25, 90, 170, 0.96) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 
    0 30px 90px rgba(0, 50, 120, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 1px 2px rgba(255, 255, 255, 0.15) inset;
  z-index: 50;
  overflow: hidden;
}

/* Aurora effect para el menu */
.mobileMenu::before{
  content: '';
  position: absolute;
  inset: -30px;
  background:
    radial-gradient(300px 250px at 20% 20%, rgba(150, 200, 255, 0.35), transparent 60%),
    radial-gradient(250px 200px at 80% 80%, rgba(100, 160, 240, 0.25), transparent 55%);
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.7;
}

.mobileMenu-inner{
  position: relative;
  padding: 18px;
  z-index: 1;
}

.mobileMenu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 14px;
}

.mobileMenu-title{
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .6px;
  text-transform: uppercase;
  opacity: .9;
  text-shadow: 0 1px 3px rgba(0, 50, 100, 0.2);
}

.mobileClose{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color: var(--ink);
  cursor:pointer;
  display:grid;
  place-items:center;
  transition: all 0.2s ease;
  box-shadow: 
    0 4px 12px rgba(0, 50, 100, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.mobileClose:hover{
  background: rgba(255,255,255,.18);
  transform: scale(1.05);
}

.mobileLinks{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin: 8px 0 16px;
}

.mobileLinks a{
  color: var(--ink);
  text-decoration:none;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s ease;
  font-size: 14px;
  font-weight: 400;
  box-shadow: 
    0 2px 8px rgba(0, 50, 100, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.mobileLinks a:hover{
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 16px rgba(0, 50, 100, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.mobileActions{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* CTA en menu móvil - estilo glass azul */
.cta--mobile{
  display:flex;
  width: 100%;
  gap:12px;
  align-items:center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 
    0 4px 16px rgba(0, 50, 100, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.25);
  transition: all .2s ease;
}

.cta--mobile:hover{ 
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(0, 50, 100, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.cta--mobile .ctaDot{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,.10));
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.3);
  flex-shrink: 0;
}

.cta--mobile .ctaArrow{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

.cta-icon--mobile{
  width: 100%;
  height: 50px;
  display:flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--ink);
  text-decoration: none;
  transition: all .2s ease;
  box-shadow: 
    0 2px 8px rgba(0, 50, 100, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.cta-icon--mobile:hover{
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.cta-icon--mobile svg{
  margin-left: auto;
}

.mobileHint{
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255,255,255,.60);
  text-align:center;
  letter-spacing: .3px;
}

/* BACKDROP con tinte azul */
.menuBackdrop{
  position: fixed;
  inset: 0;
  background: rgba(15, 50, 100, 0.40);
  z-index: 40;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ================= BREAKPOINTS ================= */
@media (max-width: 980px){
  .navLinks{ display:none; }
  .burger{ display:flex; }
}

@media (max-width: 768px){
  .brand img{ 
    width: 160px; 
    height: 30px;
  }
}

@media (max-width: 540px){
  .brand img{ 
    width: 140px; 
    height: 28px;
  }
  
  .cta-icon{
    width: 38px;
    height: 38px;
  }
  
  .burger{
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 420px){
  .content{
    padding: 14px 14px 18px;
  }
  
  .brand img{ 
    width: 130px; 
    height: 26px;
  }
  
  .navActions{
    gap: 10px;
  }
  
  .cta-icon{
    width: 36px;
    height: 36px;
  }
  
  .burger{
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 360px){
  .brand img{ 
    width: 110px; 
    height: 24px;
  }
  
  .navActions{
    gap: 8px;
  }
  
  .cta-icon{
    width: 34px;
    height: 34px;
  }
  
  .burger{
    width: 38px;
    height: 38px;
  }
}

/* ================= HERO ================= */
.hero{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:16px;
}

.pill {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--muted);
  font-size: 12.5px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 
    0 4px 16px 0 rgba(0, 0, 0, 0.08),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.25);
  text-align: center;
  line-height: 1.5;
}

.h1{
  font-size:clamp(42px,5.2vw,76px);
  font-weight:200;
  letter-spacing:-1.6px;
  line-height:1.04;
  color:var(--ink);
}

.orb{
  display:inline-block;
  width:56px;
  height:56px;
  margin:0 10px;
  border-radius:50%;
  vertical-align:middle;
  transform:translateY(-2px);
}

/* ================= CHIPS ================= */
.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:4px;
}

.chip{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255, 255, 255, 0.18);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-size:12px;
  white-space:nowrap;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 
    0 4px 16px 0 rgba(0, 0, 0, 0.08),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.chip img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: .9;
  filter: drop-shadow(0 1px 2px rgba(255,255,255,.25));
}

/* ================= HERO CTA - Debajo de los chips ================= */
.hero-cta{
  margin-top: 20px;
}

.cta-hero{
  display:inline-flex;
  gap:12px;
  align-items:center;
  padding: 5px 24px;
  border-radius:999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 
    0 8px 32px rgba(0, 50, 120, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all .25s ease;
}

.cta-hero:hover{ 
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(0, 50, 120, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.10),
    inset 0 1px 2px rgba(255, 255, 255, 0.30);
}

.cta-hero .ctaDot{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 
    inset 0 1px 2px rgba(255,255,255,.30),
    0 2px 8px rgba(0, 50, 100, 0.15);
  flex-shrink: 0;
}

.cta-hero .ctaArrow{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .2s ease;
}

.cta-hero:hover .ctaArrow{
  background: rgba(255, 255, 255, 0.14);
}

.cta-hero:hover .ctaArrow svg{
  transform: translateX(2px);
}

.ctaArrow svg{
  transition: transform .2s ease;
}

/* ================= RESPONSIVE HERO ================= */
@media(max-width:640px){
  :root{--edge:8px;--rim:6px}
  .outer{border-radius:22px}
  .shell{border-radius:18px}
  .orb{width:44px;height:44px}
  .h1{
    font-size: clamp(32px, 8vw, 42px);
  }
  .pill{
    font-size: 11px;
    padding: 10px 14px;
  }
  .chip{
    font-size: 11px;
    padding: 6px 12px;
  }
  .cta-hero{
    padding: 12px 20px;
    font-size: 13px;
  }
  .cta-hero .ctaDot{
    width: 22px;
    height: 22px;
  }
  .cta-hero .ctaArrow{
    width: 26px;
    height: 26px;
  }
}

@media(max-width:420px){
  .cta-hero{
    padding: 11px 18px;
    font-size: 12.5px;
    gap: 10px;
  }
  .hero-cta{
    margin-top: 16px;
  }
}