body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #000000;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 30px;
}

.hero span {
  background: #a046e4;
  color: white;

  padding: 5px 10px;
  border-radius: 10px;
}

.hero p {
  margin-top: 10px;
}

/* BOTONES */
.btn-main {
  display: inline-block;
  background: #FE5E32;
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
}

.btn-small {
  background: #1A0089;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
}

/* SECCIONES */
section {
  padding: 30px 20px;
}

/* CARDS */
.cards {
  display: flex;
  gap: 15px;
  overflow-x: auto;
}

.card {
  min-width: 200px;
  background: rgb(0, 0, 0);
  color: white;
  padding: 20px;
  border-radius: 20px;
}

.highlight {
  background: #a046e4;
  color: white;
}

/* TESTIMONIOS */
.testimonials .card {
  font-style: italic;
}

/* LOGOS */
.logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  width: 80px;
}

/* CTA */
.cta {
  background: #a046e4;
  color: white;
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.autor {
  font-size: 14px;
  font-weight: bold;
}
/* TOPBAR NEGRA */
.topbar {
  background: #111;
  color: white;
  margin: 15px;
  padding: 15px 20px;
  border-radius: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LADO IZQUIERDO */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* CUADRO VERDE */
.badge {
  background: #a046e4;
  color: #111;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
}

/* TEXTO */
.topbar-left p {
  font-size: 12px;
  opacity: 0.8;
}

/* LADO DERECHO */
.topbar-right p {
  font-weight: bold;
  font-size: 14px;
}
/* GALERÍA */
.gallery {
  padding: 40px 20px;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* CONTENEDOR */
.gallery-container {
  position: relative;
}

/* TRACK (scroll horizontal) */
.gallery-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* IMÁGENES */
.gallery-track img {
  width: 300;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
}

/* BOTONES */
.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #FE5E32;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.left {
  left: -10px;
}

.right {
  right: -10px;
}

/* HERO TIPO BANNER */
.form-hero {
  width: 100%;
  height: 220px; /* 👈 altura tipo rectángulo */
  background: url('Contenido/Registro.JPG') no-repeat center center/cover;
  position: relative;
}

/* OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.3);

  display: flex;
  align-items: flex-end; /* 👈 baja el texto */
  justify-content: center;

  padding: 20px;
}

/* TEXTO */
.overlay h1 {
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 1.2;
}

.btn-whatsapp {
  display: block;
  margin: 20px auto;
  text-align: center;
  background: #26c15f;
  color: white;
  padding: 15px;
  border-radius: 30px;
  text-decoration: none;
  width: 45%;
  font-weight: bold;
}

/* INSTRUCTOR SECTION */
.instructor {
  padding: 40px 20px;
}

/* CARD */
.instructor-card {
  background: #000000;
  color: white;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* TITULOS */
.instructor-card h2 {
  font-size: 18px;
  opacity: 0.8;
}

.instructor-card h3 {
  font-size: 26px;
  margin: 5px 0;
}

/* ROL */
.role {
  color: #b266eb;
  font-weight: bold;
  margin-bottom: 15px;
}

/* TEXTOS */
.description,
.experience,
.extra {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* LISTA ARTISTAS */
.artists {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}

.artists li {
  background: #FE5E32;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 12px;
}

/* SECCIÓN */
.sponsors {
  padding: 30px 20px;
  text-align: center;
}

/* CONTENEDOR DE LOGOS */
.sponsors-logos {
  display: flex;
  justify-content: center; /* 👈 SIEMPRE centrados */
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* 👈 evita que se rompa en celular */
}

/* LOGOS */
.sponsors-logos img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

/* INFO EVENTO */
.event-info {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

/* CADA DATO */
.event-info span {
  background: #b266eb; 
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: bold;
}
