* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #ffffff;
  color: #fff;
}

.site-header {
  background: #000;
  color: #fff;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
   position: relative;
}


.logo img {
  height: 120px;
  width: auto;
} 

.brand-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg,#0ea5e9,#7c3aed);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: white;
  box-shadow: 0 4px 18px rgba(124,58,237,0.12);
}

.brand-text {
  font-size: 18px;
  letter-spacing: 0.2px;
}


.main-nav {
  margin-left: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-list li {
  margin: 0;
}


.nav-list a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 6px 30px;
  outline: none;
  transition: transform 180ms ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.25s ease;
}

.nav-list a:hover::after,
.nav-list a:focus::after {
  width: 100%;
}

.nav-list a:hover,
.nav-list a:focus {
  transform: translateY(-3px);
}


/* HAMBURGUESA */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* MODO MÓVIL */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;

    /* 👇 CLAVE */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.active {
    max-height: 300px;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .nav-list a {
    display: block;
    padding: 12px;
  }
}


@media (max-width: 500px) {
  .site-header {
    flex-direction: row;   /* 👈 CAMBIADO */
    align-items: center;
  }
}


.tituloPrincipal {
  max-width: 900px;
  margin: 80px auto 40px;

  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 1px;

  color: #1a1a1a;
  text-transform: uppercase;
}

.tituloPrincipal::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #EFB810;
  margin: 20px auto 0;
  border-radius: 2px;
}

.generalFlechas {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 30px auto;
  padding: 40px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.features-container {
  display: flex;
  gap: 50px;
  width: 100%;
  max-width: 1000px;
}

.features-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  width: 26px;
  height: 26px;
  border: 2px solid #f4b000;
  color: #f4b000;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
}

/* TABLET */
@media (max-width: 992px) {
  .generalFlechas {
    padding: 30px;
  }

  .features-container {
    gap: 30px;
  }

  .feature-item {
    font-size: 15px;
  }
}

/* MÓVIL */
@media (max-width: 768px) {
  .generalFlechas {
    padding: 25px 20px;
    margin: 20px 15px;
  }

  .features-container {
    flex-direction: column;
    gap: 20px;
  }

  .features-column {
    gap: 15px;
  }

  .feature-item {
    font-size: 15px;
    line-height: 1.45;
  }

  .arrow {
    min-width: 24px;
    width: 24px;
    height: 24px;
    font-size: 13px;
  }
}

/* MÓVIL PEQUEÑO */
@media (max-width: 480px) {
  .generalFlechas {
    padding: 20px 15px;
    margin: 15px 10px;
  }

  .feature-item {
    font-size: 14px;
    gap: 10px;
  }

  .arrow {
    min-width: 22px;
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
}



body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
}

.campus-section {
  padding: 40px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;

  align-items: stretch; /* 🔥 clave */
}

.content, .image {
  flex: 1;
}

/* IZQUIERDA */
.content {
  flex: 1;
}

.content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
}

.block {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.block h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.block p {
  line-height: 1.6;
  color: #444;
}

/* DERECHA */
.image {
  flex: 1;
  display: flex;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }
}


.btn-descarga {
  display: inline-block;
  margin: 40px auto;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f4b000, #ffcc33);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-descarga:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}


.precios {
  padding: 80px 20px;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
}

/* GRID */
.tabla-precios {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  width: 100%;
}

/* CABECERAS */
.header {
  background: #caa000;
  color: #000;
  font-weight: 600;
  text-align: center;
  padding: 18px;
  border: 3px solid #000;
}

/* ETIQUETAS IZQUIERDA */
.label {
  background: #caa000;
  padding: 18px;
  text-align: center;
  border: 3px solid #000;
  font-weight: 500;
}

/* PRECIOS */
.precio {
  background: #ffffff;
  padding: 18px;
  text-align: center;
  border: 3px solid #caa000;
  font-weight: 500;
}

@media (max-width: 700px) {
  .tabla-precios {
    grid-template-columns: 1fr;
  }

  .header {
    display: none;
  }

  .label {
    margin-top: 20px;
  }
}


h3{
    text-align: center;     
    margin-top: 40px;  
}

/* SECCIÓN */
.about {
  background: #f7f9fc;
  padding: 100px 0;
}

/* GRID PRINCIPAL */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}

/* IMAGEN (pegada al borde) */
.about-right img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  display: block;
}

/* TEXTO */
.about-left {
  padding: 80px;
  max-width: 700px;
}
.about-left h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #111;
}

.firma {
  margin-top: 30px;
  font-size: 14px;
  color: #333;
}

/* IMAGEN DERECHA */
.about-right img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}



@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-left h1 {
    font-size: 30px;
  }

  .about-right img {
    height: 280px;
  }
}

.icon {
  font-size: 36px;
  margin-bottom: 10px;
}


.footer {
  background: #000000;
  color: #fff;
  padding: 50px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  position: relative;
}

/* Separadores verticales */
.footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  height: 100%;
  width: 2px;
  background: #EFB810;
}

/* Logo */
.footer-logo img {
  max-width: 150px;
}

/* Títulos */
.footer-col h3 {
  color: #EFB810;
  margin-bottom: 15px;
  font-size: 18px;
}

/* Links */
.footer-col a {
  color: #fff;
  text-decoration: none;
}
.footer-col p {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Lista */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

/* Redes sociales */
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.footer-social a {
  width: 35px;
  height: 35px;
  background: #fff;
  color: #2f3440;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}


.sponsors {
  background: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.sponsors-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 1px;
}

.sponsors-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.sponsors-track {
  display: flex;
  align-items: center;
  transition: transform 0.5s ease;
  will-change: transform;
}

.sponsor-slide {
  flex: 1;
  max-width: 100%;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  text-decoration: none;
}

.sponsor-slide img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.sponsor-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* TABLET */
@media (max-width: 992px) {
  .sponsor-slide {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

/* MÓVIL */
@media (max-width: 768px) {
  .sponsors {
    padding: 50px 15px;
  }

  .sponsors-title {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .sponsor-slide {
    flex: 0 0 50%;
    max-width: 50%;
    height: 90px;
    padding: 10px;
  }

  .sponsor-slide img {
    max-height: 55px;
  }
}

.sponsors-title {
  background: #EFB810;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 18px;
  letter-spacing: 1px;
}

.sponsors-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}




/*ESTILOS FORMULARIO D INSCRIPCIÓN*/

.form-wrapper {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  overflow: hidden;
}

.form-wrapper h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #f4b000;
}

form {
  position: relative;
}

.form-step {
  display: none;
  animation: slideIn 0.6s ease forwards;
}

.form-step.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-step h2 {
  margin-bottom: 20px;
  color: #f4b000;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.grid input,
.grid select,
.grid textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: #f1f1f1;
  font-size: 14px;
  color: #000;
}

.grid textarea {
  grid-column: span 2;
  resize: none;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.checkbox-group label {
  font-size: 14px;
}

.checkbox-group input {
  margin-right: 8px;
}

.payment-info ul {
  margin: 10px 0 0 20px;
}

.payment-info li {
  margin-bottom: 8px;
  font-size: 14px;
}

.confirmation-text {
  font-size: 15px;
  margin-bottom: 25px;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

button {
  padding: 12px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.next-btn {
  background: linear-gradient(135deg, #f4b000, #ffcc33);
  color: #ffffff;
}

.prev-btn {
  background: transparent;
  border: 2px solid #f4b000;
  color: #f4b000;
}

.submit-btn {
  background: #EFB810;
  color: #ffffff;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
  }
}