.navbarHappy {
    margin-left: 3rem;
}

.navbarHappy img:hover {
    transition: transform 0.5s ease-in-out;
    transform: scale(1.3);
}

.navHappy {
    color: white;
}

.headerHappy {
    height: 8rem !important;
}

.navbar-happy a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    height: 2px;
    background: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

.navbar-happy a:hover {
    /* Aplicamos el gradiente al texto */
    background: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transform: scale(1.1);
}

.navbar-happy a {
    position: relative;
    display: block;
    color: white !important;
    /* padding: 5px; */
}

.navbar-happy a:hover::before {
    color: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab) !important;
    transform: scaleX(1);
}

.happy-divisor {
    width: 30%;
    max-width: 250px;
    margin: auto;
    height: 30px !important;
    background: transparent;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    z-index: 5;
}

.sliderMobile{display: none;}

.slider-wrapper {
    margin: 1rem;
    position: relative;
    overflow: hidden;
  }
  
  .slides-container {
    height: calc(100vh - 2rem);
    width: 95%;
    margin: auto;
    display: flex;
    overflow: scroll;
    scroll-behavior: smooth;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .slide-arrow {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 4rem;
    background-color: white;
    border: none;
    width: 2rem;
    font-size: 3rem;
    padding: 0;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 100ms;
  }
  
  .slide-arrow:hover,
  .slide-arrow:focus {
    opacity: 1;
  }
  
  #slide-arrow-prev {
    left: 0;
    padding-left: 0.25rem;
    border-radius: 0 2rem 2rem 0;
  }
  
  #slide-arrow-next {
    right: 0;
    padding-left: 0.75rem;
    border-radius: 2rem 0 0 2rem;
  }
  
  .slide {
    width: 100%;
    height: 100%;
    flex: 1 0 100%;
  }
  
  .slide:nth-child(1) {
    background-color: #49b293;
  }
  
  .slide:nth-child(2) {
    background-color: #b03532;
  }
  
  .slide:nth-child(3) {
    background-color: #6a478f;
    margin: 0;
  }
  
  .slide:nth-child(4) {
    background-color: #da6f2b;
  }

.divisor {
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    height: 5px !important;
    border-radius: 25px !important;
    background: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab);
    transform: translateY(-50%);
    z-index: 8;
}

.bolita {
    position: absolute;
    top: 50%;
    left: 0;
    width: 23px;
    height: 23px !important;
    background: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 10;
    animation: move-ball 5s linear infinite;
}

@keyframes move-ball {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
        transform: translateX(-100%) translateY(-50%);
    }
}

/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.navbar-happy[data-animation="to-left"] a::before {
    transform-origin: right;
}

.navbar-happy[data-animation="center"] a::before {
    transform-origin: center;
}

.navbar-happy[data-animation="bonus"] a::before {
    transform-origin: right;
}

.navbar-happy[data-animation="bonus"] a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.82, 0.94);
}

.sliders {
    width: 100%;
    /* height: 720px; */
    /* object-fit: cover; */
    filter: brightness(0.6);
}

.sliderMobile {
    width: 100%;
    height: 850px;
    object-fit: fill;
    filter: brightness(0.6);
    display: none;
}

.visionmision {
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.visionmision:hover {
    transform: scale(1.05) rotate(2deg);
    /* Agranda y rota ligeramente la imagen */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    /* Añade una sombra más intensa */
}



.team-photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.card-team {
    width: 300px;
    margin: 5px !important;
    height: auto;
    background: #fff;
    /* border: 1px solid red; */
    margin: auto !important;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(233, 233, 233, 0.567);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-photo {
    width: 100%;
    height: 300px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-fit: contain;
    object-position: center;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-team:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.card-team-body {
    text-align: left;
    padding: 20px 20px;
    border-bottom-left-radius: 15px;
    /* Esquina superior izquierda */
    border-bottom-right-radius: 15px;
    /* Esquina superior derecha */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-team-body h1 {
    font-size: 12px;

}

.card-team-body p {

    color: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab);
}

.card-team-body:hover {
    color: white;
    cursor: pointer;
    border-bottom-right-radius: 15px;
    background: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab);
}


swiper-container {
    width: 100%;
    padding-top: 50px;
    /* padding-bottom: 50px; */
    /* border: 1px solid blue; */
}

swiper-slide {
    margin-top: 20px;
    background-position: center;
    background-size: cover;
    width: 380px !important;
    max-height: 400px !important;
    /* border: 1px solid red; */
}

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
}


.faqs .accordion-button {
    background-color: #ffffff;
    border: none !important;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    text-align: left;
    border: none;
    outline: none;
    transition: color 0.3s ease;
}

.faqs .accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab);
    z-index: -1;
    border: none !important;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 5px;
    /* Añadir bordes redondeados al gradiente */
}

.faqs .accordion-button:hover::before {
    transform: scaleX(1);
}

.faqs .accordion-button:hover {
    color: white;
    /* Cambia el color del texto al hover para contrastar con el gradiente */
    z-index: 1;
}

.titulos {
    font-weight: bold;
    transition: transform var(--transition-duration, 0.5s) ease-in-out, opacity 0.5s ease-in-out;
    max-width: 300px;
    margin: auto;
}

.titulos:hover {
    transform: scale(1.2);
    opacity: 1;
}


.accordion-body-happy {
    background-color: transparent !important;
}


#contact-us .form-control {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}

.contactanosinfo {
    /* border:1px solid red; */
    text-align: center;
    width: 80%;
    margin: auto;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    margin-bottom: 10px;
}

.contactDivisor {
    border: 1px solid #eee;
    border-radius: 15px;
    position: relative;
    padding-left: 45px;
    margin: 5px;
    padding: 10px;

}

.videoHappy {
    padding: 25px;
    margin: auto;
    width: 80%;
}

.contactDivisor i {
    position: absolute;
    left: 20px;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: inherit;
    transition: color 0.3s;
}

.contactDivisor i:hover {
    background: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab);
    cursor: pointer;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.footer {
    /* background-color: #f4f4f9; */
    /* position: relative; */
    /* padding: 40px 0; */
    margin-top: 50px;
    overflow: hidden;
    /* border: 1px solid red; */
}


.footer-top {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    /* border: 1px solid red; */
}

.contact-item {
    width: 33%;
    text-align: center;
    /* border: 1px solid blue; */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    /* padding-top: 40px; */
    background: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab);
    color: white;
}

.footer-about,
.footer-links,
.footer-quote {
    max-width: 300px;
    margin: auto;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.social-icons a {
    color: white;
    margin-right: 10px;
}

.footer-quote .quote-btn {
    background-color: #2c3e50;
    /* Un azul oscuro para buen contraste */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    /* Opción para redondear los bordes */
    transition: background-color 0.3s ease;
}

.footer-quote .quote-btn:hover {
    background-color: #34495e;
    /* Un tono ligeramente más claro al pasar el mouse */
}

.footer-copyright {
    text-align: center;
    padding: 10px;
    background-color: #0e1a1f;
    color: white;
}


.btn-happy {
    background: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
    z-index: 2000 !important;
}

.btn-happy:hover {
    background: linear-gradient(to right, #e878a2, #eb85ab, #f6a4c1);
    transform: translateY(-2px);
    color: white;
}


/* MOBIL */
@media (max-width: 496px) {
    /* .sliders {
        display: none;
    } */

    .sliderMobile {
        object-fit: fill;
    }

    /* .sliderMobile{display: block;} */

    .nav .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .carousel-caption{
        display: block !important;
    }

    .carousel-caption img{
        width: 45px !important;
        height: 45px !important;
    }
    .carousel-caption h5{
        font-size: 10px !important;
    }
    .carousel-caption p{
        font-size: 9px !important;
    }

    .card-team{
        margin: auto !important;
    }
    

    .navbar-light .navbar-toggler {
        border-color: white;
    }

    .sliderMobile img {
        width: 100%;
        height: 850px;
    }

    .contactanosinfo {
        width: 100%;
    }

    .contactDivisor {
        padding-left: 35px;
    }

    .contactDivisor i {
        left: 15px;
    }


}

/* TABLETA */
@media (max-width: 768px) {

    .nav .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    

    .navbar-light .navbar-toggler {
        border-color: white;
    }


    .nav .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* .sliders {
        height: 450px;
    } */

    .sliders img {
        width: 100%;
        /* height: 850px; */
    }
    
    .navbar-light .navbar-toggler {
        border-color: white;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-item {
        width: 100%;
        text-align: center;
    }

   

}

@media (max-width: 991px) {

    .nav .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-light .navbar-toggler {
        border-color: white;
    }
    

    .iq-navbar .navbar-collapse:not(.offcanvas-collapse) {
        background-color: rgba(0, 0, 0, 0.25) !important;
    }

    .navbar-happy {
        display: flex;
        flex-direction: column !important;
        width: 100%;
        background-color: transparent;
        margin-bottom: 0px !important;
    }

    .navbar-happy .nav-item {
        width: 100%;
        margin-left: 15px;

    }

    .navbar-happy .nav-item .navHappy {
        color: white !important;

    }

    .videoHappy {
        width: 92%;
    }
}


/* .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.879);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader::before {
    content: "";
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #b47dcd, #e878a2, #eb85ab) bottom/100% 0% no-repeat #ccc;
    -webkit-mask:
        radial-gradient(circle at 60% 65%, #000 62%, #0000 65%) top left,
        radial-gradient(circle at 40% 65%, #000 62%, #0000 65%) top right,
        linear-gradient(to bottom left, #000 42%, #0000 43%) bottom left,
        linear-gradient(to bottom right, #000 42%, #0000 43%) bottom right;
    -webkit-mask-size: 50% 50%;
    -webkit-mask-repeat: no-repeat;
    animation: l19 2s infinite linear;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


@keyframes l19 {

    90%,
    100% {
        background-size: 100% 100%;
    }
} */


.conten-parallax-1 div {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.btnWhite {
    background-color: transparent;
    border: 2px solid white;
    border-radius: 15px;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btnWhite:hover {
    background: linear-gradient(to bottom, #b47dcd, #e878a2, #eb85ab);
    /* Gradiente girado 90 grados */
    color: black;
    /* Cambia el color del texto a negro */
}