/* .container {
    max-width: 960px;
} */

/*
   * Custom translucent site header
   */

.site-header {
    background-color: rgba(0, 0, 0, .85);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}

.site-header a {
    color: #8e8e8e;
    transition: color .15s ease-in-out;
}

.site-header a:hover {
    color: #fff;
    text-decoration: none;
}


/*
   * Extra utilities
   */

.flex-equal>* {
    flex: 1;
}

@media (min-width: 768px) {
    .flex-md-equal>* {
        flex: 1;
    }
}

/* Custom */
.header-logo {
    width: 150px;
}

/* Establecer altura fija para el carrusel */
.carousel-item {
    min-height: 70vh;
    /* Ajusta la altura según necesidad */
    position: relative;
}

/* Asegurar que la imagen de fondo cubra toda la sección */
.carousel-bg {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.6);
    transition: filter 0.3s ease-in-out;
}

/* Contenedor del texto centrado */
.carousel-text {
    margin-top: 20vh;
    position: absolute;
    /* top: 45%; */
    /* left: 35%; */
    width: 100%;
    /* transform: translate(-50%, -50%); */
    text-align: left;
    /* Fondo semitransparente */
    padding: 30px 100px 30px 100px;
    color: white;
    border-radius: 10px;
}

.carousel-logo {
    padding: 5px;
    background: white;
}

.carousel-logo:nth-child(n+2) {
    margin-left: 10px;
}

.carousel-title {
    font-size: 90px !important;
}

.carousel-bold {
    font-size: 90px !important;
    font-weight: 700;
}


@media (max-width: 768px) {

    .carousel-text {
        padding: 30px 30px 30px 30px;
    }

    .carousel-title {
        font-size: 50px !important;
    }

    .carousel-bold {
        font-size: 50px !important;
        font-weight: 700;
    }

    .carousel-logo {
        height: 50px;
    }
}

.card-hover {
    transition: 0.3s ease-in-out;
    cursor: pointer;
    overflow: hidden;
}

.card-hover img {
    transition: 0.3s ease-in-out;
}

/* Efecto hover: oscurecer imagen */
.card-hover:hover img {
    opacity: 0.7;
}

/* Asegurar que la imagen cubra el espacio sin deformarse */
.card-hover img {
    max-height: 200px;
    width: auto;
}

/* Estilo para texto en negrita */
.bold-text-blue {
    font-weight: bold;
    color: #0e65aa;
}

/* Estilo para texto con solo contorno */
.outline-text-blue {
    font-weight: normal; /* Asegura que no esté en negrita */
    color: transparent;  /* Hace el texto transparente */
    -webkit-text-stroke: 1.5px #0e65aa; /* Borde del texto de 2px de grosor y color negro */
    text-stroke: 1.5px #0e65aa; /* Soporte adicional para otros navegadores */
}

.fs-40 {
    font-size: 100px;
}

.a-gaos {
    color: white; /* Cambia el color del texto del enlace a blanco */
    text-decoration: none; /* Elimina el subrayado del enlace */
}

.a-gaos:hover {
    color: #ff6347; /* Cambia el color al pasar el mouse (opcional, para darle interactividad) */
}

.nav-link:hover {
    color: #ff6347!important;
}

.nav-link {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

/* Estilo para el ícono flotante */
.whatsapp-icon {
    position: fixed;
    bottom: 20px; /* Distancia desde el fondo */
    right: 20px; /* Distancia desde la derecha */
    z-index: 1000; /* Asegura que el ícono esté por encima de otros elementos */
    background-color: #25D366; /* Fondo verde característico de WhatsApp */
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.whatsapp-icon img {
    width: 50px; /* Tamaño del ícono */
    height: 50px;
}

.whatsapp-icon:hover {
    background-color: #128C7E; /* Color cuando pasa el mouse por encima */
}