
body,
html {
    height: auto;
    background-color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

@media only screen and (max-device-width: 480px) {
    /* Estilos específicos para dispositivos iOS */
    .container-fluid {
        background-size: contain;
        background-attachment: scroll;
    }
}

.container-fluid {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container-fluid img {
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
}

.container-fluid.sticky-section {
    padding: 0;
}

/*LOGO*/

/* Estilos para pantallas pequeñas */
@media (max-width: 576px) {
    #logo {
        max-width: 70%;
    }
}

/* Estilos para pantallas más grandes */
@media (min-width: 577px) {
    #logo {
        max-width: 90%;
    }
}

/*FIN LOGO*/

@font-face {
    font-family: 'Kalinga MD';
    src: url("fonts/kalinga.ttf") format('truetype');
}

@font-face {
    font-family: 'Kalinga BD';
    src: url("fonts/kalingab.ttf") format('truetype');
}

@font-face {
    font-family: 'Palatino MD';
    src: url("fonts/pala.ttf") format('truetype');
}

@font-face {
    font-family: 'Palatino BD';
    src: url("fonts/palab.ttf") format('truetype');
}



h1 {
    font-family: "Palatino BD";
    font-size: 4em;
    color: rgb(135,91,162);
    overflow-wrap: break-word;
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 3.7em;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 3em;
    }
}




h2 {
    font-family: "Palatino BD";
    font-size: 3em;
}

@media (max-width: 991.98px) {
    h2 {
        font-size: 2.6em;
    }
}

@media (max-width: 767.98px) {
    h2 {
        font-size: 1.9em;
    }
}




h3 {
    font-family: "Palatino MD";
    font-size: 2em;
    font-weight: bold;
}

@media (max-width: 991.98px) {
    h3 {
        font-size: 1.7em;
    }
}

@media (max-width: 767.98px) {
    h3 {
        font-size: 1.4em;
    }
}




h4 {
    font-family: "Kalinga MD";
    font-size: 16px;
    letter-spacing: 1em;
}

@media (max-width: 991.98px) {
    h4 {
        font-size: 1em;
    }
}

@media (max-width: 767.98px) {
    h4 {
        font-size: 0.8em;
    }
}




h5 {
    font-family: "Kalinga MD";
    font-size: 1.1em;
    letter-spacing: 0.01em;
}

@media (max-width: 991.98px) {
    h5 {
        font-size: 1em;
    }
}

@media (max-width: 767.98px) {
    h5 {
        font-size: 0.9em;
    }
}




a {
    font-family: "Kalinga MD";
    font-size: 1em;
    letter-spacing: 0.01em;
    color: white
}

@media (max-width: 991.98px) {
    a {
        font-size: 0.9em;
    }
}

@media (max-width: 767.98px) {
    a {
        font-size: 0.8em;
    }
}





p {
    font-family: "Kalinga MD";
    font-size: 1.1em;
    color: rgb(100, 52, 52);
}


@media (max-width: 991.98px) {
    p {
        font-size: 1em;
    }
}

@media (max-width: 767.98px) {
    p {
        font-size: 0.9em;
    }
}




/* Barra de Navegacion */
.navbar {
    background-color: rgb(100, 52, 52);
}

.dropdown-item {
    background-color: rgb(100, 52, 52);
}


.navbar-toggler-icon {
    background-color: transparent; /* Establecer el fondo como transparente */
    border: 0px solid white; /* Añadir un borde blanco */
}

.navbar-toggler {
    border: 0px solid white; /* Añadir un borde blanco al contenedor del botón */
}

.navbar-nav .nav-link {
    font-family: "Kalinga MD" !important;
    color: rgb(255, 255, 255) !important;
}



.zoom {
    transition: transform 0.2s ease-out;
}

.zoom:hover {
    transform: scale(1.1);
}

@media (max-width: 575px) {
    .navbar-brand img {
      width: 60px;
    }
  }
  

/*Boton flotante de Whatsapp*/

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    text-align: center;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.whatsapp-float:hover {
    transform: scale(1.07);
}

/* Estilos para pantallas grandes */
@media screen and (min-width: 992px) {
    .whatsapp-link-lg {
        display: block;
        /* Mostrar enlace para WhatsApp Web */
    }
    .whatsapp-link-sm {
        display: none;
        /* Ocultar enlace para la aplicación de WhatsApp */
    }
}

/* Estilos para pantallas pequeñas */
@media screen and (max-width: 991px) {
    .whatsapp-link-lg {
        display: none;
        /* Ocultar enlace para WhatsApp Web */
    }
    .whatsapp-link-sm {
        display: block;
        /* Mostrar enlace para la aplicación de WhatsApp */
    }
}

/*popup Falta de Pago/*

/* Estilos del popup */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 240px;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media screen and (max-width: 600px) {
    /* Estilos del popup en pantallas pequeñas */
    .popup {
        width: 280px;
        height: 340px;
    }
}


/* Estilos del botón de cierre */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #888;
}


.css-button-arrow--blue {
    min-width: 130px;
    height: auto;
    color: rgb(255, 255, 255);
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
    overflow: hidden;
    border-radius: 5px;
    border: none;
    background-color: rgb(100, 52, 52);
    text-decoration: none;
    text-align: center;
    font-family: "Kalinga BD";
}

.css-button-arrow--blue span {
    display: block;
}

.css-button-arrow--blue::after {
    content: "\00BB";
    position: absolute;
    opacity: 0;
    font-size: 20px;
    line-height: 40px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: 0.4s;
}

.css-button-arrow--blue:hover {
    color: rgb(100, 52, 52) !important;
    border-radius: 5px;
    padding-right: 24px;
    padding-left: 8px;
}

.css-button-arrow--blue:hover::after {
    opacity: 1;
}

.borde-boton {
    border: 2px solid rgb(100, 52, 52);
}

/* boton 2 lineas*/

.css-button-arrow--red {
    min-width: 130px;
    height: 55px;
    color: rgb(100, 52, 52);
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    overflow: hidden;
    border-radius: 5px;
    border: none;
    background-color: rgb(255, 255, 255);
    text-decoration: none;
    text-align: center;
    line-height: 25px;
    font-family: "Futura BD";
    white-space: normal;
}

.css-button-arrow--red span {
    display: block;
}

.css-button-arrow--red::after {
    content: "\00BB";
    position: absolute;
    opacity: 0;
    font-size: 20px;
    line-height: 40px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: 0.4s;
}

.css-button-arrow--red:hover {
    color: rgb(100, 52, 52) !important;
    border-radius: 5px;
    padding-right: 24px;
    padding-left: 8px;
}

.css-button-arrow--red:hover::after {
    opacity: 1;
}

/*FIN BOTON */

.icon {
    max-width: 50px;
    height: auto;
}

/*carrousel*/

.carousel-item img {
    object-fit: contain;
    height: 100vh;
    max-height: 100%;
    margin: auto;
}

/*mapa*/

#map {
    width: 100%;
}

/*footer*/

footer {
    background-color: rgb(100, 52, 52);
    height: auto;

}

#row-logos img {
    max-width: 55px;
}

.sticky-section {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 20px;
}

.sticky-section.fixed {
    position: relative;
    bottom: 0;
}


/* Establece la altura y estilos de las imágenes en el carousel */
.carrousel-img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.carrousel-item {
    overflow: hidden;
    height:auto;
    width: 100%; /* Asegúrate de que la altura coincida con la altura deseada */
}

@media (min-width: 768px) {
    .margin-md-lg {
      height: 3em;
    }
  }


/* medium and up screens */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start { 
    transform: translateX(0);
}

.carousel-inner .carousel-item {
    transition: transform 0.5s ease;
}
