/* ========================
   TU EXPERIENCIA - MOBILE FIRST (LIMPIO)
   Solo estilos del HERO y BOTÓN
   (Footer y Header están en archivos separados)
   ======================== */

/* Reset para full-width */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;  /* evita scroll horizontal */
}

/* ========================
   HERO (Mobile base)
   ======================== */
.section.hero{
  background: #fff;
  padding: 0 0 48px;
  text-align: center;
  font-family: 'Inter', Arial, sans-serif;
  display: flow-root;
}

/* Desktop: más padding abajo */
@media (min-width: 901px){
  .section.hero{
    padding: 0 0 clamp(48px, 6vh, 80px);
  }
}

/* Banner header - Mobile (FULL WIDTH, sin overflow) */
.hero-header{
  width: 100vw;                    /* ancho completo viewport */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;              /* centrado perfecto */
  margin-right: -50vw;
  height: clamp(180px, 40vh, 420px);
  overflow: hidden;
}

/* Tablet */
@media (min-width: 601px){
  .hero-header{
    height: clamp(200px, 42vh, 460px);
  }
}

/* Desktop */
@media (min-width: 901px){
  .hero-header{
    height: clamp(240px, 46vh, 540px);
  }
}

/* Imagen del banner - Mobile (responsive al zoom) */
.hero-header-img{
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;              /* llena el espacio sin deformar */
  object-position: center 50%;
  max-width: none;                /* permite que crezca sin límite */
}

/* Tablet: ajustar posición */
@media (min-width: 601px){
  .hero-header-img{
    object-position: center 75%;
  }
}

/* Desktop: mostrar más arriba */
@media (min-width: 901px){
  .hero-header-img{
    object-position: 50% 20%;
  }
}

/* Contenido hero - Mobile */
.hero-inner{
  max-width: 96vw;
  margin: 0 auto;
  padding: 16px 4vw 0;
}

/* Tablet */
@media (min-width: 601px){
  .hero-inner{
    max-width: 720px;
    padding-top: 28px;
  }
}

/* Desktop */
@media (min-width: 901px){
  .hero-inner{
    padding-top: 48px;
  }
}

/* Título - Mobile */
.help-center-name{
  color: #911083;
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Desktop: más grande */
@media (min-width: 601px){
  .help-center-name{
    font-size: 2.4em;
  }
}

/* Descripción - Mobile */
.hero-description{
  color: #333;
  font-size: 1.02em;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Desktop */
@media (min-width: 601px){
  .hero-description{
    font-size: 1.15em;
  }
}

/* ========================
   BOTÓN PRINCIPAL - Mobile
   ======================== */
.center-action{
  display: flex;
  justify-content: center;
  margin: 28px 0 0;
}

.btn-volaris-primary{
  background: #911083;
  color: #fff;
  padding: 14px 0;
  border-radius: 100px;
  border: none;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 3px 12px rgba(145,16,131,.08);
  cursor: pointer;
  text-decoration: none;
  transition: background .22s, box-shadow .18s, transform .06s ease;
  outline: none;
  width: 90vw;
  max-width: 380px;
}

/* Desktop: más grande y con padding horizontal */
@media (min-width: 601px){
  .btn-volaris-primary{
    padding: 16px 48px;
    font-size: 1.1em;
    width: auto;
    max-width: none;
  }
}

.btn-volaris-primary:hover,
.btn-volaris-primary:focus{
  background: #6e0b65;
  box-shadow: 0 5px 18px rgba(145,16,131,.15);
}

.btn-volaris-primary:active{
  transform: translateY(1px);
}

.btn-volaris-primary:focus-visible{
  outline: 3px solid rgba(145,16,131,.35);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(145,16,131,.15);
}

/* ========================
   UTILIDADES
   ======================== */
.visually-hidden{
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

body{
  overflow-x: hidden;
}