
/* ==============================
   ESTILOS GENERALES
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Gotham-Light-Regular";
  font-weight: 400;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gotham-bold";
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 0.9;
}

p, span {
    font-family: "Gotham-Light-Regular";
    margin-bottom: 3vw;
    font-size: clamp(10px, 1.2vw, 56px);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

.small { 
  font-family: "Gotham-Light-Regular";
  font-weight: 300;
    
}
strong{
    font-family: "Gotham-Bold";
    font-weight: 700;
}
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 9vw;  /* valor base */
  padding-left: 9vw;
  box-sizing: border-box;
}

/* Extra pequeño (móviles) */
@media (max-width: 576px) {
  .container-fluid {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

/* Pequeño (tablets verticales) */
@media (min-width: 577px) and (max-width: 768px) {
  .container-fluid {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

/* Mediano (tablets horizontales y pantallas pequeñas) */
@media (min-width: 769px) and (max-width: 992px) {
  .container-fluid {
    padding-right: 8vw;
    padding-left: 8vw;
  }
}

/* Grande (laptops/desktop estándar) */
@media (min-width: 993px) and (max-width: 1200px) {
  .container-fluid {
    padding-right: 9vw;
    padding-left: 9vw;
  }
}

/* Extra grande (pantallas muy grandes) */
@media (min-width: 1201px) {
  .container-fluid {
    padding-right: 10vw;
    padding-left: 10vw;
  }
}

/* ==============================
   NAVBAR
============================== */
.navbar {
  background: #000;
  position: relative;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 15px;
  position: relative;
}

/* Menú desktop */
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 80px;
}

.nav-menu li a {
  text-decoration: none;
  font-family: 'Gotham-Bold', sans-serif;
  color: #fffde7;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #ff5252;
}

/* Línea inferior degradada */
.nav-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #ff4b2b, #8e44ad, #2c3e50);
}

/* ----------- MODO MÓVIL ----------- */
.menu-toggle {
  display: none;
  color: #fff;
  cursor: pointer;
  position: absolute;
  left: 15px;
}

@media (max-width: 768px) {
  .nav-container {
    justify-content: flex-end;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
  }

  .nav-menu.active {
    display: flex;
  }
}

/* ==============================
   HEADER / HERO
============================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3% 0;
  color: #fff;
    background:url(../img/Recurso2.png);
    background-position:center;
    background-size:cover;
}

.hero-bg img{
    position: absolute;
    top: 7%;
    right: -7%;
    width: 75%;
    height: auto;
    opacity:60%;
}

.hero-title {
    font-family: 'Gotham-Light-Regular';
    font-size: clamp(28px, 8.5vw, 400px);
    line-height: 0.9;
    color:#FFF;
}
.hero-title span {
  font-family: 'Gotham-Bold', sans-serif;
}

.hero-prompt {
  margin-top: 15px;
  font-family: 'Gotham-Book', sans-serif;
}

.hero-prompt .highlight {
    background: linear-gradient(170deg, #6e1219, #231b4c);
    color: white;
    padding: 0.5vw 1vw;
    letter-spacing: 0.2vw;
    display: inline-block;
    border: 1px solid #Fff;
    font-family: 'Gotham-Light-Regular';
}



/* ==============================
   FECHA LUGAR
============================== */
.fecha-lugar { color:#3c3c3c;}

/* Bloque FECHA */
.dl-fecha { line-height: 1; }
.dl-top {
    display: block;
    align-items: baseline;
    text-align: center;
    width: 100%;
}
.dl-num {
  font-family:'Gotham-Bold';
  font-weight:700;
  font-size: clamp(40px, 7vw, 92px); /* grande como en el diseño */
}
.dl-al {
  font-family:'Gotham-Bold';
  font-weight:400;
  font-size: clamp(28px, 4.5vw, 70px);
}
.dl-mes{
  font-family:'Gotham-Bold';
  font-weight:400;
  font-size: clamp(14px, 2.2vw, 28px);
  margin-top: .25rem;
}

/* Separadores */
.dl-sep{
  display:inline-block;
  width:1px; height: clamp(56px, 9vw, 112px);
  background:#3c3c3c;
  opacity:.85;
  transform: translateY(6%);
}

.dl-sep-horizontal{
  display:block;
  width:100%; height:1px; background:#3c3c3c; opacity:.4;
}

/* LUGAR */
.dl-lugar{
  font-family:'Gotham-book';
  font-size: clamp(14px, 2.2vw, 28px);
  font-weight:400;
  line-height: 1.15;
}

/* Microajustes de alineación en pantallas grandes */
@media (min-width: 992px){
  .dl-lugar { transform: translateY(6%); }
}

/* ==============================
   BOTONES
============================== */
.btn-primary {
  background-color: #e60012;
  border: none;
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
}






/* ==============================
   SECCIONES REGISTRO
============================== */
.registro-section{
  position: relative;
  padding: 4% 0;
  /* Usa tu imagen de fondo de esta franja */
  background: url('../img/fondo_lenovo.jpg') top/cover no-repeat;
  color: #fff;
}

.registro-copy p{
  font-family: 'Gotham-Book';
  font-size: clamp(14px, 1.2vw, 56px);
}
.registro-copy strong{
  font-family: 'Gotham-Bold', Arial, sans-serif;
}

/* Formulario */
.registro-form{
  max-width: 70%; /* como en el diseño estrecho a la derecha */
}

.form-white{
  background: #fff;
  border: 0;
  border-radius: 0px;
  height: 48px;
  padding: 2% 3%;
  color: #333;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  text-align:center;
}
.form-white::placeholder{
  color: #b8b8b8;
  letter-spacing: .02em;
}

/* Botón degradado con borde blanco */
.btn-grad{
  font-family: 'Gotham-Light-Regular';
  color: #fff;
  border-radius: 10px;
  border: 0.2vw solid #fff;
  background: linear-gradient(90deg,#7b2f7f 0%, #1b1b4b 100%);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover {
    color: #fff;
    background: linear-gradient(90deg,#1b1b4b 0%, #7b2f7f 100%);
    border: 0.2vw solid #fff;
}

/* Responsive */
@media (max-width: 991.98px){
  .registro-section{ padding: 48px 0; }
  .registro-form{ margin-inline: auto; }
  .registro-copy{ text-align: left; } /* o center si lo prefieres */
}


/* Ajusta si ya cargaste Gotham */
.h-lenovo{
  font-family: "Gotham-Light-Regular", Arial, sans-serif;
  font-size: clamp(48px, 8vw, 240px);
  line-height: 0.9;
  color: #565656;
}
.h-arena{
  font-family: 'Gotham-Bold', Arial, sans-serif;
  font-size: clamp(48px, 8vw, 240px);
  line-height: 0.9;
  color: #565656;
  margin-top: .15em;
}

/* “conoce la” vertical a la izquierda (solo ≥ md) */
.v-label{
  font-family: 'Gotham-Book', Arial, sans-serif;
  color: #6a6a6a;
  letter-spacing: .02em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);   /* hace que se lea de abajo hacia arriba */
  font-size: clamp(14px, 2.2vw, 84px);
  line-height: 1;
}


/* Párrafo derecho */
.lead-copy{
  font-family: 'Gotham-Book', Arial, sans-serif;
  color: #4a4a4a;
  line-height: 1.45;
}
.lead-copy strong{ font-family: 'Gotham-Bold', Arial, sans-serif; }

/* Opcional: pequeños ajustes de alineación en pantallas grandes */
@media (min-width: 992px){
  .title-wrap { margin-left: 10px; }
}

/* ---------- Experiencias ---------- */
.experiencias .band {
  padding: 10vw 0; /* valor general */
}

/* Extra pequeño (móviles) */
@media (max-width: 576px) {
  .experiencias .band {
    padding: 15vw 0; /* más espacio vertical en móviles */
  }
}

/* Pequeño (tablets verticales) */
@media (min-width: 577px) and (max-width: 768px) {
  .experiencias .band {
    padding: 12vw 0;
  }
}

/* Mediano (tablets horizontales y pantallas pequeñas) */
@media (min-width: 769px) and (max-width: 992px) {
  .experiencias .band {
    padding: 8vw 0;
  }
}

/* Grande (laptops/desktop estándar) */
@media (min-width: 993px) and (max-width: 1200px) {
  .experiencias .band {
    padding: 6vw 0;
  }
}

/* Extra grande (pantallas muy grandes) */
@media (min-width: 1201px) {
  .experiencias .band {
    padding: 5vw 0;
  }
}

.experiencias .band--alt { background: #f3f4f6; } /* gris suave tipo mockup */

.exp-title{
  font-family: 'Gotham-Bold', Arial, sans-serif;
  color: #5a5a5a;
  font-size: clamp(18px, 2vw, 56px);
  margin-bottom: 3vw;
}

.exp-copy{
  font-family: 'Gotham-Book', Arial, sans-serif;
  color: #5f5f5f;
  line-height: 1.6;
}
.exp-copy strong{ font-family: 'Gotham-Bold', Arial, sans-serif; color:#4b4b4b; }

/* Imagenes */
.exp-img img{
  display:block;
  width:100%;
  height:auto;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* Overlay de “play” opcional */
.exp-img.has-play{
  position: relative;
}
.exp-img.has-play::after{
  content: "";
  position: absolute; inset: 0;
  display: block;
  background: radial-gradient(rgba(0,0,0,.25), rgba(0,0,0,.35));
  opacity: .0; transition: opacity .2s ease;
  border-radius: 4px;
}
.exp-img.has-play::before{
  content: "";
  position: absolute; inset: 0;
  margin: auto;
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  clip-path: polygon(35% 25%, 35% 75%, 75% 50%); /* triángulo play */
  transition: transform .2s ease;
}
.exp-img.has-play:hover::after{ opacity: .25; }
.exp-img.has-play:hover::before{ transform: scale(1.05); }

/* --- Franja CTA --- */
.cta-band {
  position: relative;
  padding: 22px 0;
  color: #fff;
  overflow: hidden; /* para que no se desborde el pseudo-elemento */
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: url('../img/fondo_lenovo.jpg') bottom/cover no-repeat;
  transform: scaleX(-1); /* espejo horizontal */
  z-index: -1; /* queda detrás del contenido */
}
.cta-band p{
    font-family: 'Gotham-bold', Arial, sans-serif;
  line-height: 0.9;
    font-size: clamp(20px, 2vw, 80px);
}

/* Botón degradado con borde blanco (coincide con el estilo anterior) */
.btn-grad{
  font-family: 'Gotham-book', Arial, sans-serif;
  color:#fff;
  border-radius: 1vw;
  border:0.2vw solid rgba(255,255,255,.9);
  background: linear-gradient(90deg, #7b2f7f 0%, #1b1b4b 100%);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    font-size: clamp(12px, 1.8vw, 80px);
}

.btn-cta{
  padding: 1vw 2vw;
  min-width: 220px;
  text-align:center;
}

/* Responsive: centrado vertical + stack en móvil */
@media (max-width: 767.98px){
  .cta-band{ padding: 20px 0; }
  .btn-cta{ max-width: 320px; }
}



/* ==============================
   SECCIONES GENERALES
============================== */

.bg-light {
  background-color: #f9f9f9 !important;
}

/* ==============================
   FOOTER
============================== */
footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

/* ==============================
   FRANJA FECHA/LUGAR
============================== */
.hero-date-strip {
  background: #fff;
  color: #000;
  padding: 40px 20px;
}

.hero-date-strip .date-range {
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.hero-date-strip .date-range span {
  font-weight: 300;
}

.hero-date-strip .date-venue {
  margin-top: 10px;
  font-weight: 400;
  line-height: 1.4;
}

section.partners{
    background: #585858;
}
/* Cards limpias y consistentes */
.partners-slider .partner-item{
  border-radius: 16px;
  height: 110px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  margin: 0 8px;                 
}

.partners-slider .partner-item img{
  max-height: 56px;
  height: 33%;
  object-fit: contain;
  filter: grayscale(100%) opacity(.85);
  transition: filter .2s ease, transform .2s ease, opacity .2s ease;
}

.partners-slider .partner-item:hover img{
  filter: grayscale(0%) opacity(1);
  transform: translateY(-2px);
}

/* Ajustes flechas de Slick */
.slick-prev:before, .slick-next:before{
  color: #fff;
  opacity: .5;
}
.slick-prev:hover:before, .slick-next:hover:before{
  opacity: .8;
}

/* Dots ocultos (no los usamos) */
.partners-slider .slick-dots{ display: none !important; }
