@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root{

    --bg-color: #000;

    --btn-color: #fdfdfd;/* button color*/
    --btn-bg: #E5A65E;/* button bg color*/

    --primary-text-color: #E5A65E;
    --header-link-hover: #E5A65E;
    --input-hover-bd-color: #E5A65E;
}


html {
    scroll-behavior: smooth;
    font-family: "Ubuntu", sans-serif;
}

header{
    /* background-color: #fff;
    color: #000; */
    color: #b1b1b1;
}


header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
}

.animated-collapse{
    transition: width 0.3s ease;
}


.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 5px;
    padding: 5px 10px;
    transition: background-color 0.5s, color 0.5s;
}


.header-links:hover {
    color: #ffffff;
    /* background-color: var(--header-link-hover); */
}

.primary-text-color{
    color: var(--primary-text-color);
}

.gradient-text{
    background: rgb(215,215,215);
    background: linear-gradient(90deg, rgba(215,215,215,1) 18%, rgba(136,136,136,1) 71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section{
    /* background-image: url("../assets/images/background/dots.svg"); */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}


#dashboard {

    /* transform-origin: bottom center; */
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.8)
        rotate(0deg) rotateX(70deg);
    transition: transform 0.5;
}

.border-gradient{
    background: rgb(219,215,213);
    background: linear-gradient(180deg, #e5a65e, rgba(214,211,233,0) 71%); background: linear-gradient(180deg, #e5a65e, rgba(214,211,233,0) 71%);
    /* background-image: linear-gradient(90deg, #7e212ce9 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%); */
    padding: 2px;
    border-radius: 10px;
}
.border-gradient>div{
    /* background-color: var(--bg-color); */
    background-color: var(--bg-color);
    border-radius: inherit;
}

.opacity-0{
    opacity: 0 !important;
}

.opacity-100{
    opacity: 100 !important;
}

.btn{
    padding: 10px 15px;
    width: max-content;
    border-radius: 5px;
    color: var(--btn-color); */
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    
}


.btn:disabled{
    cursor: default;
}

.input{
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    /* outline: none; */
    min-width: 100px;
    border: 1px solid #818080;
    /* transition: border 0.3s; */
}

.input:active, .input:focus, .input:focus-within{
    border: 1px solid var(--input-hover-bd-color) !important;
}


.carousel-container {
    overflow: hidden;
    /* white-space: nowrap; */
    width: 100%;
    max-width: 800px;

}
  
.carousel {
    display: flex;
    gap: 20px;
    will-change: transform;
}
  
.carousel-img img {
    height: 100%;
    width: auto;
    display: block;
}

.carousel-img {
    display: inline-block;
    margin: 0 20px;
    flex-shrink: 0;
}

.carousel-img img {
    height: 100%;  /* Alto fijo */
    width: auto;   /* Ancho automático */
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .carousel {
        gap: 10px;
        animation: scroll 10s linear infinite;
    }
}


/* @keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
} */


/* .carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 800px;
}
  
.carousel {
    display: inline-flex;
    animation: scroll 20s linear infinite; 
}
  
.carousel-img {
    display: inline-block;
    margin: 0 20px;
    flex-shrink: 0;
}
  
@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
        padding: 0 10px; 
    }
    
    .carousel-img {
        margin: 0 10px; 
    }

    .carousel {
        animation: scroll 10s linear infinite; 
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
} */


.footer-link{
    color: #c7c6c6;
    transition: color 0.3s;
}

.footer-link:hover{
    color: #fff;
}


/* Style for the collapsible content such as faq commonly known as: accordion */

.faq-accordion {
    background-color: inherit;
    color: #f2f2f2;
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: #e4e4e4;
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition: max-height 0.4s, padding 0.4s;
}

.faq-accordion .active,
.faq-accordion:hover {
    /* background-color: #2e2c2c; */
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: #040404;
        color: #ffffff;
        overflow-y: auto;
        box-shadow: 3px 0px 3px 2px #9f9f9f;
    }

    .header-links{
        color: rgb(255, 255, 255);
    }
    
}

/* Estilos personalizados para la sombra que tenías */
/* La sombra original estaba en #dashboard. Ahora la aplicamos a las imágenes dentro de los slides */
.swiper-slide img {
    box-shadow: rgb(229, 166, 94) 0px 15px 25px -5px;
}

/* Aseguramos que el swiper-slide ocupe todo el espacio de su contenedor */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%; /* Muy importante: el slide debe tomar la altura del swiper-wrapper */
}

/* Estilos para el div que envuelve la imagen dentro del slide */
/* Aseguramos que tome el 100% del ancho y alto del slide */
.swiper-slide > div {
    width: 100%; /* Ocupa todo el ancho del swiper-slide */
    height: 100%; /* Ocupa toda la altura del swiper-slide */
    display: flex; /* Para centrar la imagen */
    justify-content: center;
    align-items: center;
    /* Tus clases de max-width siguen siendo importantes aquí */
}

@media (max-width: 768px) {
    .swiper-slide > div {
        max-width: 100%; /* En pantallas pequeñas, ocupa todo el ancho */
    }
}

/* Opcional: Estilos para las flechas de navegación si se ven pequeñas o no están donde quieres */
.swiper-button-next,
.swiper-button-prev {
    color: #fff; /* Color de las flechas */
    background-color: rgba(0, 0, 0, 0.5); /* Fondo para que se vean mejor */
    border-radius: 50%; /* Redondea el fondo */
    padding: 10px; /* Espaciado interno */
    width: 40px; /* Ancho del botón */
    height: 40px; /* Alto del botón */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
/* Ajustar la posición si es necesario, los !important pueden ser necesarios para anular Swiper por defecto */
.swiper-button-prev {
    left: 10px !important; /* Ajusta la posición de la flecha izquierda */
}
.swiper-button-next {
    right: 10px !important; /* Ajusta la posición de la flecha derecha */
}