
*
{
    margin: 0;
    padding: 0;
    font-family: 'Droid Sans', arial, sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}

html, body
{
    height: 100%;
    margin: 0;
    background-attachment: unset;
    background-blend-mode: normal;
    background-size: auto, cover; 
    background-position: center; 
    background-repeat: repeat; 
    transition: background-size 0.2s ease; 

    display: flex;
    flex-direction: column;
}

body
{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.caja_contenido{
    font-family: 'Droid Sans', arial, sans-serif !important;
    background-color: rgba(22, 22, 22, 0.9);
    width: 100%; 
    max-width: 900px; 
    height: 85vh;
    border-radius: 15px;
    border: groove 1px black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px auto; 
    overflow: hidden;
    position: relative; 
    box-shadow: 4px 4px 6px rgb(65, 65, 65);
}

.wrap_img{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0.67) 100%);
    width: 100%;
    display: flex;
    animation: slide 9s infinite;     
}

.img_slide{
    width: 100%;
    flex-shrink: 0;
}

.navspace
{
  padding-top: 89px;
}

@keyframes slide
{ 
    0%{
        transform: translateX(0);
    }
    25%{
        transform: translateX(0);
    }
    30%{
        transform: translateX(-100%);        
    }
    50%{
        transform: translateX(-100%);
    }
    55%{
        transform: translateX(-200%);
    }
    75%{
        transform: translateX(-200%);
    }
    80%{
        transform: translateX(-300%);
    }
    100%{
        transform: translateX(-300%);
    }
}

.contenido_cont{
    position: absolute;
    z-index: 1;
    color: white;
    width: 90%; 
    max-width: 900px; 
    padding: 20px; 
    box-sizing: border-box; 
    text-align: center; 
}

.sombra{
    text-shadow: 2px 2px 4px black;
    margin: 24px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide img {
    width: 100%;
    border-radius: 12px;
  }

  /* Botones de navegación */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
  }

  .prev { left: 10px; }
  .next { right: 10px; }

  .carousel-btn:hover {
    background-color: rgba(0,0,0,0.8);
  }

@keyframes fadeInAnimation 
{
    0% 
    {
        opacity: 0;
    }
    100% 
    {
        opacity: 1;
    }
}

@media screen and (max-width: 1180px) {
    .img_datos_div {
        flex-direction: column !important;
    }    
}

@media screen and (max-width: 820px){
    .caja_contenido, .CAJA_IMAGEN_INICIO{
        width: 600px;
        height: auto;
    }

    .contenedor_info{
        position: unset;
        width: 600px;
    }

    .img_slide{
        height: auto;
        margin-bottom: 0px;
    }
    .CAJA_IMAGEN_INICIO{
        height: auto !important;
    }
}

@media screen and (max-width: 560px){

    .img_datos_div {
        width: 300px;
        flex-direction: column !important;
    }

    .botones_div {
        width: 300px;
    }

    .input_index input{
        width: 150px;
    }

    .caja_contenido, .CAJA_IMAGEN_INICIO{
        width: 450px;
        height: auto;
    }

    .contenedor_info{
        position: unset;
        width: 450px;
    }

    .img_slide{
        height: auto;
        margin-bottom: 0px;
    }
    .CAJA_IMAGEN_INICIO{
        height: auto !important;
    }
}


.boton_accion{
    width: 195px;
    height: 45px;
    background-color:var(--color_botones);
    color: black;
    border-radius: 15px;
}

.boton_accion:hover{
    background-color: var(--color_botones_hover);
}

.wrapper {
    /*min-height: 100%;*/
    flex: auto;
    display: flex;
    flex-direction: column;    
}

main {

    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: transparent;

}

main img {
    max-width: 100%;
    height: auto;
    /*margin-bottom: 20px;*/

}

.site_tab{
    background-color: #000000;
    color: #fbc43d;
    width: 45px;
    height: 100%;
    left: 0;
    bottom: 0;
    position: fixed;
    z-index: 999;
}

.site_tab img{
    display: block;
    width: 30px;
    position: absolute;
    top: 50%;
    margin-top: -90px;
    left: 8px;
}

nav a{
    margin-left: 4px;
    margin-right: 4px;
}

.contenedor{
    width: 100%;
    flex: auto;
    display: flex;
    flex-wrap: wrap;
    gap:10px;
}

.subcontenedor{
    flex: auto;
    display: flex;    
    flex-wrap: wrap;
}

.CAJA_IMAGEN_INICIO{
    font-family: 'Droid Sans', arial, sans-serif !important;
    background-color: rgba(22, 22, 22, 0.9);
    width: 100%; 
    /*height: 85vh;*/
    border: groove 1px black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative; 
    /*box-shadow: 4px 4px 6px rgb(65, 65, 65);*/
}

.INFO_INICIO{
    flex: 3.65;
    background-color: #ECE9E9;
    justify-content: center; 
    /*z-index: 1000;*/   
}

.INFO_INICIAL_BOX{
    flex: 3.65;
    /* background-color: #ECE9E9; */
    justify-content: center;
    z-index: 1000;
    padding: 25px;
    height: 65vh;
    overflow-y: auto;
}

.margen_de_objetos_info{
    margin: 20px;
}

.lista_info {
    padding-right: 20px;
}

.lista_info a{
    text-decoration: underline; 
    color: var(--color_botones) !important;
}

.main-contenedor{
    flex: 4;
    display: flex;    
    flex-direction: row;
    flex-wrap: nowrap;
    gap:10px;    
    background-color: #ECE9E9;
}

.main-contenedor div{
    flex: 100%;
}

.contenidos_art{
    flex: 1.1;
    background-color: var(--color_fondo_cajas);
    justify-content: center;    
}

.main-contenedor, .contenidos_art, .INFO_INICIO{
    display: flex;
    justify-content: center;
}

.cont-perfil{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    text-size-adjust: 5px;
}

.caja_info{
    height: 55vh;
}

.img_logos{
    width: 105px;
}

.cont-perfil span, button{
    font-size: large;
}

.cont-perfil button{
    width: 155px;
}

.img_datos_div hr 
{
    border: 2px inset lightblue; 
    height: 1px; 
    width: 100%;
    align-self: center;
}

.mas_palabras_side hr 
{
    border: 2px inset lightblue; 
    height: 2px; 
    width: 200px;
    align-self: center;
}

.INFO_BACK{
    border-width: 0px;
    border-style: solid;
    /*border-image: linear-gradient(to left, rgb(160, 160, 160) ,rgb(255, 255, 255), rgb(160, 160, 160)) 1;*/
}

.cont-perfil{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    text-size-adjust: 5px;
}

.cont-index{
    width: 680px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-size-adjust: 5px;
    align-content: center;
}

.form_buscar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.form_boton{
    width: 105px;
    height: 40px;
    background-color: #ffbf00;
    color: black;
    border-radius: 10px;
    /*box-shadow: 4px 4px 6px rgb(65, 65, 65);*/
    margin-left: 5px;
    margin-right: 5px;
}

.form_boton i{
    margin-right: 8px;
}

.form_boton:hover{
    background-color: #ffebaf;
}

.img_datos_div{
    margin: 0px 25px 25px 25px;
}

@media (max-width: 1080px) {

    .cont-index{
        width: 380px;
    }
  } 

@media (max-width: 680px) {

    .main-contenedor{
        flex-direction: column;
    }

    .INFO_INICIAL_BOX{
        height: auto;
    }

    .main-contenedor img {
        height: fit-content;
        width: 100%;
    }

    .subcontenedor{
        height: fit-content;
    }

    .cont-index{
        width: 0;
    }
  } 