body {
      font-family: 'Poppins', sans-serif;
      background-color: #0f0f14;
      color: #ffffff;
      padding-top: 90px; /* espacio para navbar fixed */
    }

    section {
      padding: 80px 0;
    }

    .navbar {
      box-shadow: 0 2px 10px rgba(0,0,0,.08);
    }

    .navbar-light .navbar-nav .nav-link {
      color: #000;
      font-weight: normal;
    }

    .hero {
      min-height: 80vh;
      display: flex;
      align-items: center;
      background: #ce2d38;
      text-align: center;
    }

    .bg-soft {
      background: #16161d;
    }

    .btn-primary {
      background-color: #fff;
      border: none;
      color: #ce2d38;
      font-weight: 500;
    }

    .info-icon {
      font-size: 32px;
      margin-bottom: 15px;
      color: #8fb4ff;
    }

    .nav-item{
      margin:0 10px 0 0;
    }

    .navbar-brand-logo {
      height: 48px; /* o el tamaño que necesites */
      width: auto;
    }

    .btn-supernova {
      border-radius: 0;            /* sin bordes redondeados */
      padding:  1rem 3rem;          /* más aire lateral */
       

      
    }

    .btn-supernova:hover {
      background-color: #ce2d38;
      color: #000;
    }

  .hero-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-img {
  width: 100%;
  height: auto;     /* CLAVE */
  display: block;   /* elimina espacios raros */
}



/*--------------KIT-----------------*/
/* SECTION */
.kit-full {
  width: 100%;
  background-color: #ce2d38!important;
}

/* COLUMNA A */
.kit-img {
  position: relative;
  min-height: 500px;
  background-image: url('fondo-kit.jpg');
  background-size: cover;        /* cambia a contain si querés */
  background-position: center;
}

/* OVERLAY ROJO */
.kit-overlay {
  position: absolute;
  inset: 0;
  /*background: rgba(206, 45, 56, 0.85);*/
  z-index: 1;
}

/* PNG SUPERIOR */
.kit-floating-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;     /* NO ESCALA CON EL CONTENEDOR */
  width: auto;
  height: auto;
  z-index: 2;
}

/* COLUMNA B */
.kit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

/* LOGO */
.kit-logo {
  max-width: 300px;
  margin: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .kit-img {
    min-height: 400px;
  }

  .kit-floating-img {
    max-width: 280px;
  }

  .kit-content {
    padding: 40px 20px;
    text-align: center;
  }
}


/*INFO*/
.info-logo {
  max-width: 200px;  
  margin: auto;
}

#info p {
 font-size:12px;
 font-weight: normal;
}

#info h5 {
 text-transform: uppercase;
}



.outline-icon {
  color: transparent;
  -webkit-text-stroke: 1.5px #ce2d38;
  text-stroke: 1.5px #ce2d38;
}




/* SECTION BASE */
.inscripciones-section {
  position: relative;
  min-height: 100vh;
  background-image: url('inscripciones-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
}

/* OVERLAY CELESTE */
.inscripciones-overlay {
  position: absolute;
  inset: 0;
  background: rgba(206, 45, 56);
  z-index: 1;
}

/* CONTENIDO */
.inscripciones-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* LOGO */
.inscripciones-logo {
  max-width: 140px;
}

/* ITEMS */
.inscripciones-items {
  margin-top: 40px;
}

.item {
  margin-bottom: 35px;
}

.item-header {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.item-header span:first-child {
  white-space: nowrap;
}

.dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.6);
  margin: 0 10px;
}

.optional {
  font-size: 0.9rem;
  opacity: 0.9;
}

.item p {
  margin-top: 8px;
  font-size: 12px;
  font-weight: normal;
  

}

/* MOBILE */
@media (max-width: 768px) {
  .inscripciones-section {
    padding: 80px 0;
  }

  .item-header {
    flex-wrap: wrap;
  }

  .dots {
    display: none;
  }

  .optional {
    margin-left: auto;
  }
}

