/* =============================================================
   SECCION: HERO + TRUST BAR
   Primera pantalla. Todo lo que se ve antes del primer scroll.
   ============================================================= */


/* ---------- Hero ---------- */
/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #09145a 0%, #0D1B6E 50%, #1630a0 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,165,0,0.13);
  border: 1px solid rgba(240,165,0,0.28);
  border-radius: 999px;
  padding: 0.38em 1em;
  font-family: var(--font-titulo);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--amarillo-light);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amarillo);
  box-shadow: 0 0 8px var(--amarillo);
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 800;
  color: var(--blanco);
  line-height: 1.12;
  margin-bottom: 1.4rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--amarillo-light);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2.4rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.8rem;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blanco);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
  display: block;
}
.hero-stat-div {
  width: 1px;
  background: rgba(255,255,255,0.13);
  align-self: stretch;
}

.hero-image {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-photo {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-l);
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
  margin-left: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}
.hero-photo:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 60px rgba(13,27,110,0.35);
  filter: brightness(1.06);
}

.hero-float-card {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: var(--r-m);
  padding: 0.9rem 1.1rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 210px;
  animation: fadeInLeft 0.8s ease 0.6s both;
}
.hero-float-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--azul-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-float-icon svg { width: 18px; height: 18px; fill: var(--blanco); }
.hero-float-card p { font-size: 0.75rem; color: var(--gris-texto); line-height: 1.4; }
.hero-float-card strong { display: block; font-family: var(--font-titulo); font-size: 0.83rem; font-weight: 700; color: var(--azul-dark); }

/* ---------- Trust bar ---------- */
/* =============================================
   TRUST BAR
============================================= */
.trust-bar {
  background: var(--gris-bg);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(13,27,110,0.06);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-titulo);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gris-texto);
}
.trust-item svg { width: 16px; height: 16px; stroke: var(--azul-mid); fill: none; stroke-width: 2; flex-shrink: 0; }
.trust-div { width: 1px; height: 18px; background: rgba(13,27,110,0.1); }
