/* ============================================
   FULLSCREEN HERO SLIDER — REAL MOCKUPS
   ============================================ */

.hero-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 10% 0%, #2b3b7a 0%, transparent 45%),
    radial-gradient(circle at 90% 10%, #6b3ba8 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, #0f3b4f 0%, transparent 55%),
    linear-gradient(160deg, #05060a 0%, #020308 40%, #020208 100%);
}

/* TRACK */
.hero-slider__track {
  display: flex;
  height: 100%;
  will-change: transform;
}

/* SLIDE BASE */
.hero-slide {
  width: 100%;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* SUBE TODO */
  overflow: hidden;
}

/* SLIDE DE TEXTO */
.hero-slide--text {
  align-items: flex-start;
}

/* ============================================
   HERO TEXT SLIDE (SLIDE 0)
   ============================================ */

.hero--text-only {
  width: 100%;
  height: 100%;
  display: flex;
}

.hero__inner--single {
  max-width: 1250px;
  margin: 0 auto;

  /* ⭐ ESTE CONTROLA LA SEPARACIÓN DEL HEADER — AJÚSTALO MANUALMENTE ⭐ */
  padding: 0px 20px 32px; /* AHORA ESTÁ EN 0px */
}

.hero__content {
  max-width: 580px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.hero__subtitle-strong {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 600;
}

.hero__subtitle {
  margin-top: 16px;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero__trust {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__trust-title {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.hero__trust-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__trust-logos img {
  height: 30px;
  width: auto;
  opacity: 0.85;
  filter: brightness(1.2) contrast(1.1);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero__trust-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ============================================
   MOCKUP SLIDES (1–3)
   ============================================ */

.mockup-frame {
  width: 88%;
  max-width: 1400px;
  height: 88%;
  margin-top: 0px; /* SUBIDO AL MÁXIMO */
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(123,168,255,0.25);
}

.browser-bar {
  height: 38px;
  background: rgba(10,14,20,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
}

.browser-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.mockup-desktop {
  width: 100%;
  height: calc(100% - 38px);
  object-fit: cover;
  display: block;
}

.mockup-mobile {
  display: none;
}

@media (max-width: 768px) {
  .mockup-frame {
    width: 92%;
    height: 86%;
    margin-top: 0px; /* PEGADO TAMBIÉN EN MÓVIL */
    border-radius: 18px;
  }

  .mockup-desktop {
    display: none;
  }

  .mockup-mobile {
    display: block;
    width: 100%;
    height: calc(100% - 38px);
    object-fit: cover;
  }
}

/* ============================================
   DOTS
   ============================================ */

.hero-slider__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dot {
  width: 2px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: .3s;
}

.dot.active {
  background: #4fe0c8;
  transform: scale(.3);
}

/* ============================================
   MOBILE FIXES
   ============================================ */

@media (max-width: 767px) {
  .hero__inner--single {

    /* ⭐ CONTROL MANUAL DE SEPARACIÓN EN MÓVIL ⭐ */
    padding: 0px 6px 24px;
  }

  .hero__title {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__trust-logos img {
    height: 26px;
  }
}