

* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
         background-image: url("../img/fondo\ .png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
      min-height: 100vh;
      align-items: center;
      justify-content: center;
    }

 .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      max-width: 1400px;
      width: 100%;
    }

    .row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0; /* elimina separación para permitir encimado */
      position: relative;
    }

    .hero {
      width: 160px;
      margin: -15px;
      position: relative;
    }

    .float {
      animation: flotar 3s ease-in-out infinite;
    }

    .float:nth-child(odd) {
      animation-delay: 0s;
    }

    .float:nth-child(even) {
      animation-delay: 1.5s;
    }

    .center-image {
      max-width: 600px;
      width: 100%;
      z-index: 10;
      position: relative;
    }

    @keyframes flotar {
      0% { transform: translateY(0); }
      50% { transform: translateY(-5px) rotate(-5deg); }
      100% { transform: translateY(0); }
    }

    @keyframes medioGiro {
        0% {
            transform: rotate(0deg);
        }
        50% {
            transform: rotate(9deg);
        }
        100% {
            transform: rotate(0deg);
        }
    }

    @keyframes balanceo {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(5deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

@keyframes vibracion {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-3px); }
  40%, 80% { transform: translateX(3px); }
}

.half-rotate {
  animation: medioGiro 4s ease-in-out infinite;
  /* puedes ajustar duración y tipo de easing */
}

.robot-move {
  animation: balanceo 3s ease-in-out infinite;
  /* o
  animation: vibracion 1s linear infinite;  */
}

.car-move {
  animation: movimientoCarro 2.5s ease-in-out infinite;
}
@keyframes movimientoCarro {
  0%   { transform: translateX(0) translateY(0); }
  25%  { transform: translateX(10px) translateY(-2px); }
  50%  { transform: translateX(20px) translateY(0); }
  75%  { transform: translateX(10px) translateY(2px); }
  100% { transform: translateX(0) translateY(0); }
}


.left-right {
  animation: movimientoLateral 3s ease-in-out infinite;
}

@keyframes movimientoLateral {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-15px); }
  50%  { transform: translateX(0); }
  75%  { transform: translateX(15px); }
  100% { transform: translateX(0); }
}


.showcase {
  animation: mostrarObjeto 3s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes mostrarObjeto {
  0%   { transform: rotateY(0deg); }
  50%  { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}


.shake {
  animation: shake 0.5s linear infinite;
}

@keyframes shake {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-5px); }
  50%  { transform: translateX(2px); }
  75%  { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}


.colorRosaEBIM{
  color: #E63A75 !important;
}
.colorAmarilloEBIM{
   color: #F4B139 !important;
}

.colorAzulEBIM{
   color: #1A73AE !important;
}
.colorMoradoEBIM{
  color: #800A81 !important
}

.colorNaranjaEBIM{
  color: #E26D22 !important
}
.cardGeneral{
  box-shadow: 4px 3px 11px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 4px 3px 11px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 4px 3px 11px 0px rgba(0,0,0,0.75);
    background-color: #FFF;
    border-radius: 25px;
}

.tituloSeccion{
  font-family: 'BabyMonsta' !important;
  font-size: 45px;
  line-height: 36px;
  letter-spacing: 2px;
  text-shadow: 0 0 0 15px #ffffff !important;

}

.textoGeneral{
  font-family: 'CarmenSans-Bold';
  font-size: 20px;
  text-align: justify;
  color: black;

}

.textoGeneral span{
  font-family: 'CarmenSans-Heavy';

}
.rangoTitulo{

  font-family: 'CarmenSans-Heavy';
  font-size: 25px;
  line-height: 26px;

  text-shadow: 0 0 0 15px #000000 !important;

}
.rangoTitulo span{

  font-family: 'CarmenSans-Bold';
  font-size: 16px !important;
  line-height: 17px !important;
}

.imgParticipante{
  border-radius: 55em; width: 200px; height: 200px; object-fit: cover; object-position: center
}

.btnRegistro{
  text-align: center;
  background-color: #E63A75;
  border: 3px solid #000000;
  height: 75px;
  padding: 10px;
  color: #FFF;
  border-radius: 15px;
  width: 100%;
  font-size: 35px;
  font-family: 'BabyMonsta';
  letter-spacing: 2px;
}
.superH{
  background-color: #FFF;
  height: 500px;
  display:block;
  align-items: center;
  vertical-align: middle;
  text-align: center;
    box-shadow: 4px 3px 11px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 4px 3px 11px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 4px 3px 11px 0px rgba(0,0,0,0.75);
    background-color: #FFF;
    border-radius: 25px;
}
.headersuperH{
  height: 75px;
  color: #FFF;
  align-items: center;
  justify-content: center;
  align-self: center;
  text-align: center;
  font-family: 'CarmenSans-Heavy';
  font-size: 35px;
}
.imgsuperH{
  width: 250px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.imgsuperH img{
  width: 100% !important;
  object-fit: contain;

}
.textoGeneralsuperH{
  font-size: 15px;
  font-family: 'CarmenSans-SemiBold';
  color: #000000;

}
    @media (max-width: 768px) {
      .hero {
        width: 150px;
        margin: -30px;
      }

      .center-image {
        max-width: 400px;
      }

      .container {
        gap: 40px;
      }

      .tituloSeccion{
  font-size: 35px;
  line-height: 36px;

}
      .textoGeneral{
  font-size: 15px;

}


.rangoTitulo{
  font-size: 20px;
  line-height: 22px;

}
.rangoTitulo span{

  font-size: 15px;
}

.imgParticipante{
   width: 150px; height: 150px; object-fit: cover; object-position: center
}
.btnRegistro{
  text-align: center;
  background-color: #E63A75;
  border: 3px solid #000000;
  height: 75px;
  padding: 10px;
  color: #FFF;
  border-radius: 15px;
  width: 100%;
  font-size: 35px;
  font-family: 'BabyMonsta';
  letter-spacing: 2px;
}

    }
