@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

body {
    font-family: 'Raleway';
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}
.container {
    width: 100%;
    /* padding: 20px; */
    /* box-sizing: border-box; */
}


.title {
    text-align: right;
    /* margin-bottom: 70px; */
    margin-right: 90px;
    margin-bottom: 0%;
    color: #4d4d4d;
}

.images {
    display: flex;
    /* justify-content: space-between; */
    /* margin-top: 20px;
    border-radius: 15px; */
    margin-left: 50px;
}
.images > div, .images img {
    width: 20%;
    height: auto;
    object-fit: cover; /* Ajusta la imagen al contenedor */
    /* border-radius: 15px; */
}

/* .images:hover {
    filter: saturate(150%);
} */


.description {
    margin-top: 20px;
    margin-right: 50px;
    margin-left: 50px;
    text-align: justify;
    /* font-size: 1.5em; */
    /* font-size: 14px; */
    padding: 20px;
    color: #4d4d4d;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
    flex-wrap: nowrap; /* Asegura que los elementos no se envuelvan */
}

.footer-logo img {
    max-width: 100px;
}

.contact-info {
    flex-grow: 1;
    text-align: center;
    margin: 0 20px;
}

.social-media-body {
    display:inline-flex;
    gap: 10px;
    align-items:end;
}

.social-media-body a img {
    width: 30px;
    height: 30px;
}

.social-media-body img {
  filter: grayscale(100%) brightness(0.5);
  /* transition: filter 0.3s ease; */
   
}


.social-media-body img:hover {
  /* filter: none; */
  transition: transform 0.3s ease;
   transform: scale(1.3); /* Aumenta el tamaño un 10% */
}



/* Para imagenes con fondo blanco 1 sola imagen*/

/* .enlaces{
    text-align: right;
    padding-right: 2%;
    
} */

    .boton-imagen {
      position: relative;
      display: inline-block;
      border-radius: 10px;
      overflow: hidden;
      transition: border 0.3s ease;
    }


    .boton-imagen::before {
      content: "";
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(135deg, #e5fff9, #acb8ff);
      z-index: 0;
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 12px;
    }

    .boton-imagen:hover::before {
      opacity: 1;
    }

    .boton-imagen img {
      position: relative;
      z-index: 1;
    }

    /* enlace a video y reunion para imagenes con fondo transparente 2 imagenes*/ 

    .enlaces-principal {
        text-align: right;
        /* padding: 5px; */
        display: flex;
        justify-content: flex-end;
        align-items: flex-end; /* Alinea al fondo */
        /* gap: 0px; */
    }

    .enlaces {
        display: inline-block;
        margin: 1px;
        position: relative;
        width: 100px; /* Asegura que las imágenes se alineen correctamente */
        height: 100px;
    }

    .enlaces a {
        display: block;
        /* position: relative; */
    }

    .enlaces img {
        width: 70px;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .img-hover {
        opacity: 0;
    }

    .enlaces:hover .img-hover {
        opacity: 1;
    }

    .enlaces:hover .img-normal {
        opacity: 0;
    }


    .modal {
        display: none; /* Ahora el modal inicia oculto */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(254, 253, 253, 0.756);
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(3px); /* Difumina el fondo */
    }

    .modal-content {
        position: relative;
        width: 95%;
        max-width: 800px;
    }

    .modal-content video {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .close {
        position: absolute;
        top: 10px; /* Mueve la "X" fuera del área del video */
        right: 50px;
        font-size: 52px; /* Aumenta el tamaño */
        color: black;
        padding: 10px;
        border-radius: 50%; /* Forma circular */
        cursor: pointer;
        transition: all 0.3s ease;
    }


    iframe {
        width: 100%;
        height: 450px;
        border: none;
        object-fit: cover; /* Ajusta la imagen dentro del iframe */
        overflow: hidden; /* Oculta el scroll */
    }

@media (max-width: 600px) {
    
    .social-media-body {
        justify-content: center; /* Centra los iconos de redes sociales */
        align-items: center;
    }

    .title{
        display: none;
    }

     .images {
        flex-direction: column;
        align-items: center;
        margin-left: 0px;
    }
    .images > div, .images img {
        width: 80%;
        height: auto; 
        margin-bottom: 10px;
        align-items: center;
    }

    .enlaces-principal {
    justify-content: center;
    }

    .enlaces{
        text-align: center;
        padding-right: 0%;
    
    }

    .description{
        margin-right: 0px;
        margin-left: 0px;
    }

}

