
/*<!-- ======== 2. Presentación / Parte Hero ======== -->*/
.hero {
    display: flex;
    background: transparent;
    height: 690px;
    flex-direction: column; /* Apila los div verticalmente */
}

.box-voluntarios {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    padding: 0;
    background: transparent;
}

.box-voluntarios-amarillo {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: #FFD500;
    width: 90%;
    height: 100%;
    border-radius: 0px 200px 200px 0px;
    display: flex;
    margin-right: auto;
    align-items: center;
    margin-top: auto;
    justify-content: center;    /* Centra horizontalmente */
}

.box-voluntarios-blanco {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background:#fff;
    width: 80%;
    height: 100%;
    border-radius: 0px 200px 200px 0px;
    display: flex;
    margin-right: auto;
    align-items: center;
    margin-top: auto;
    color: #0e944f ;
    justify-content: center;
    /* Centra horizontalmente */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-voluntarios-blanco:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.box-voluntario-link {
    display: block;            /* El enlace ocupa todo el espacio del div */
    color: inherit;            /* Hereda el color del texto del contenedor */
    text-decoration: none;     /* Quita el subrayado */
    padding: 1rem;            /* Opcional: Ajusta padding interno para clics */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0px 150px 150px 0px; 
  }
  /*///////////////////////////////////////////////////////*/
  .box-hero-blanco-cuadro {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: white;
    width: 40%;
    height: 30%;
    border-radius: 200px 0 0 200px;
    display: flex;
    margin-left: auto;
    align-items: center;
    margin-top: auto;
}
.box-hero-verde {
    background: #0e944f;
    width: 80%;
    height: 100%;
    border-radius: 200px 0 0 200px;
    display: flex;
    margin-left: auto;
    align-items: center;
    margin-top: auto;
    justify-content: center;    /* Centra horizontalmente */
}

.btn-cuadro {

    border-color: #FFD500;
    background: #FFD500;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;  
}
a {
    text-decoration: none;
    color: #000;
    font-size: 24px;}
.btn-cuadro:hover {
    transform: scale(1.05);
}
 /*/////////////////////////////////////////////////*/ 
.box-hero-blanco {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: white;
    width: 25%;
    height: 30%;
    border-radius: 200px 0 0 200px;
    display: flex;
    margin-left: auto;
    align-items: center;
    margin-top: auto;
}

.box-hero-negro {
    background: #000;
    width: 80%;
    height: 100%;
    border-radius: 200px 0 0 200px;
    display: flex;
    margin-left: auto;
    align-items: center;
    margin-top: auto;

    justify-content: center;
    /* Centra horizontalmente */
}

.btn-inscripcion {
    border-color: #FFD500;
    background: #FFD500;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    font-size: 28px;
    margin-left: 5%;
}

.btn-inscripcion:hover {
    transform: scale(1.05);
}

/*<!-- ======== 3. Pasaje ======== -->*/
.box-pasaje {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    padding: 0;
    background: transparent;
}

.imagen-concavo {
    width: 10%;
    height: 100%;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    /* Centra horizontalmente */
    filter: invert(33%) sepia(0%) saturate(600%) hue-rotate(120deg) brightness(0%) contrast(100%);
}

/*<!-- ======== 4. Capacitaciones ======== -->*/
.seccion-capacitacion {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    padding: 0;
    background: transparent;
}

.box-capacitacion-negro {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: #000;
    width: 40%;
    height: 100%;
    border-radius: 200px 0 0 200px;
    display: flex;
    margin-left: auto;
    align-items: center;
    margin-top: auto;

    justify-content: center;
    /* Centra horizontalmente */
}

.box-capacitacion-amarillo {
    background: #FFD500;
    width: 90%;
    height: 100%;
    border-radius: 200px 0 0 200px;
    display: flex;
    margin-left: auto;
    align-items: center;
    margin-top: auto;
    color: #000;
    justify-content: center;
    /* Centra horizontalmente */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-capacitacion-amarillo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

}
.capacitacion-link {
    font-size: 1400%; /* Tamaño del ícono */
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}
.capacitacion-link p {
    font-size: 60%;
}
.capacitacion-link:hover {
    transform: scale(1.1); /* Efecto de zoom */
    color: #000; /* Cambia el color al pasar el mouse */
}

/*<!-- ======== 5. Redes sociales e sobre el circuito ======== -->*/
.seccion-contenido{
    display: flex;
    justify-content: center;
    flex-direction: column; /* Apila los div verticalmente */
    align-items: center;
    height: 400px;
    padding: 0;
    background: transparent;
}
.box-contenido-amarillo{
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: #FFD500;
    width: 25%;
    height: 40%;
    border-radius: 0 200px 200px 0;
    display: flex;
    margin-right: auto;
}
    .box-contenido-verde{
        background: #0e944f;
        width: 70%;
        height: 100%;
        border-radius: 0 200px 200px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: auto;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .instagram-link {

        font-size: 600%; /* Tamaño del ícono */
        color: white;
        text-decoration: none;
        transition: transform 0.3s ease, color 0.3s ease;
    }
    .instagram-link:hover {
        transform: scale(1.1); /* Efecto de zoom */
        color: #FFC107; /* Cambia el color al pasar el mouse */
    }
.box-contenido-blanco{
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: white;
    width: 43%;
    height: 60%;
    border-radius: 200px 200px 200px 200px;
    display: flex;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box-contenido-circulo{
    background: #0e944f;
    width: 70%;
    height: 100%;
    border-radius: 0px 200px 200px 0px;
    display: flex;
    margin-left: 0%;
    justify-content: center;
        align-items: center;
}

.calendario-link {

    font-size: 1000%; /* Tamaño del ícono */
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}
.calendario-link:hover {
    transform: scale(1.1); /* Efecto de zoom */
    color: #000; /* Cambia el color al pasar el mouse */
}
.box-contenido-verde:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.box-contenido-blanco:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}



/*<!-- ======== 6. Seccion sponsors ======== -->*/
.sponsors {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    padding: 2rem;
    margin-top: 5%;
    margin-bottom: 2%;
    background: #fff;
    text-align: center;
    min-height: 300px; /* Ajusta según sea necesario */
  }
  .sponsors h2 {
    color: #333;
    margin-bottom: 1rem;
  }
  .main-sponsors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .logo-circuito {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: auto;
    overflow: hidden;
  }
  .logo-circuito img {
    max-width: 100%;
    max-height: 90%;
    object-fit: contain;
    padding: 1rem;
  }
  .main-sponsors {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .sponsor {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .sponsor img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .sponsor:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
@media (max-width: 988px){
    p {
        display: none;
    }
    .hero {
        display: flex;
        background: transparent;
        height: 490px;
    }
    .box-voluntarios {
        width: 40%;
        height: 300px;
    }
     
.box-hero-blanco {
    width: 48%;
}
.box-pasaje {
    height: 40px;
}
.imagen-concavo{
    width: 25%;
}

.seccion-capacitacion {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 0;
    background: transparent;
}
.box-capacitacion-negro {
    background: #000;
    width: 43%;
    height: 100%;
    border-radius: 200px 0 0 200px;
    display: flex;
    margin-left: auto;
    align-items: center;
    margin-top: auto;

    justify-content: center;
    /* Centra horizontalmente */
}
.box-contenido-blanco{
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: white;
    width: 43%;
    height: 50%;
    border-radius: 0px 200px 200px 0px;
    display: flex;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box-contenido-verde{
    background: #0e944f;
    width: 80%;
    height: 100%;
    border-radius: 0 200px 200px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box-contenido-circulo{
    background: #0e944f;
    width: 60%;
    height: 100%;
    border-radius: 0px 200px 200px 0px;
    display: flex;
    margin-left: 0%;
}

.capacitacion-link {

    font-size: 1000%; /* Tamaño del ícono */
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}
.capacitacion-link:hover {
    transform: scale(1.1); /* Efecto de zoom */
    color: #000; /* Cambia el color al pasar el mouse */
}

.calendario-link {

    font-size: 900%; /* Tamaño del ícono */
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}
.calendario-link:hover {
    transform: scale(1.1); /* Efecto de zoom */
    color: #000; /* Cambia el color al pasar el mouse */
}
.logo-circuito{
    display: none;
}
    h2{
        display: none;
    }
    h1 {
        display: none;
    }

    /*==============box-palabras===================*/
    .box-palabras-animadas {

        height: 30px;
    }

    .texto-animado {

        font-size: 12px;
        font-weight: 700;

    }



    
.box-hero-verde {
    background: #0e944f;
    width: 80%;
    height: 100%;
    border-radius: 200px 0 0 200px;
    display: flex;
    margin-left: auto;
    align-items: center;
    margin-top: auto;

    justify-content: center;
    /* Centra horizontalmente */
}

.btn-inscripcion {
    background: #FFD500;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   
}
a {
    text-decoration: none;
    color: #000;
    font-size: 24px;}
.btn-inscripcion:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sponsor {
    width: 220px;
    height: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
  }
}