/*
Custom Css
*/

body {
    background-color: rgba(255, 255, 255, 0.774);
}

.sombra {
    -webkit-box-shadow: 8px 6px 20px -6px rgba(0,0,0,0.75);
-moz-box-shadow: 8px 6px 20px -6px rgba(0,0,0,0.75);
box-shadow: 8px 6px 20px -6px rgba(0,0,0,0.75);
}
.fa-chevron-left:before {
    color: black;
}
.fa-chevron-right:before {
    color: black;
}
.hover:hover {
    color:gray !important;
    font-weight: bold !important;
    border-width: 1px;
    border-color: black;
    
    
}
.carousel-indicators li {
  
    background-color: deeppink !important;
}
.efecto:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  /* Contenedor del video */
  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
}

/* Haciendo que el video ocupe todo el contenedor */
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.full-width-div {
    width: 100%;  /* Ocupa el 100% del ancho de la página */
    padding: 0px;  /* Espaciado interno para que el contenido no esté pegado al borde */

}

/*colo de texto negro*/
.text-black {
    color: black;
}


/* BOTON FLOTANTE WHATSAPP */

.whatsapp-button {
    position: fixed;
    bottom: 20px;  /* Espacio desde la parte inferior */
    right: 20px;   /* Espacio desde la parte derecha */
    background-color: #25D366;  /* Color de WhatsApp */
    color: white;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    cursor: pointer;
    animation: bounce 2s infinite; /* Animación continua sin tiempo de espera */
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

/* Efecto hover en el botón */
.whatsapp-button:hover {
    background-color: #20c15a;
}

/* Definición de la animación para el "salto" */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); /* Posición inicial */
    }
    40% {
        transform: translateY(-15px); /* Salto hacia arriba */
    }
    60% {
        transform: translateY(-8px); /* Rebote hacia abajo */
    }
}

/* Estilo del tooltip (mensaje emergente) */
.whatsapp-button .tooltip {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    right: 70px; /* Posiciona el tooltip a la izquierda del botón */
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Mostrar tooltip al hacer hover */
.whatsapp-button:hover .tooltip {
    visibility: visible;
    opacity: 1;
}






/*SEPARADOR LINEA */
.responsive-image {
    width: 100%;          /* Ancho completo de la web */
    height: auto;        /* Mantiene la proporción */
    object-fit: cover;   /* Recorta la imagen para llenar el contenedor */
}







/* EFECTO ABOUT US*/
.about-us {
    display: flex;

    margin: auto;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
  }
  
  .modules {
    width: 30%;
    display: flex;
    flex-direction: column;
  }
  
  .modules button {
    padding: 15px;
    margin: 5px 0;
    border: none;
    background-color: #fff;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .modules button:hover {
    background-color: deeppink;
  }
  
  .content {
    width: 70%;
    padding: 20px;
    background-color: #fff;
    border-left: 2px solid #ddd;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .about-us {
    position: relative;
    /*background-image: url('../img/about/Designer.jpeg');  Ruta de tu imagen de fondo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    overflow: hidden;
  }

  
  .about-us .row {
    position: relative;
    z-index: 2; /* Coloca el contenido sobre la capa de opacidad */
  }


  .efecto:hover {
    transform: scale(1.05); /* Aumenta ligeramente el contenedor */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Mejora la sombra */
}

.efecto:hover img {
    transform: scale(1.1); /* Zoom adicional en la imagen */
}



/* Estilo para la galería */
.gallery-item img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3, .overlay p {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(10px);
    opacity: 0;
}

.gallery-item:hover .overlay h3,
.gallery-item:hover .overlay p {
    transform: translateY(0);
    opacity: 1;
}