html {
    scroll-behavior: smooth;
}

.content {
    padding-top: 65px;
}

.fade-in {
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Slider Styles */
.slider-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(248, 246, 244, 0.9) 30%, rgba(248, 246, 244, 0.4) 100%);
}

.overlay {
    position: relative;
    inset: 0;
    background: linear-gradient(to right, rgba(248, 246, 244, 0.9) 30%, rgba(248, 246, 244, 0.4) 100%);
}

@media (max-width: 768px) {
    .slide-overlay {
        background: linear-gradient(to bottom, rgba(248, 246, 244, 0.9) 60%, rgba(248, 246, 244, 0.7) 100%);
    }
}

.fit-content {
    width: fit-content;
    height: fit-content;
    border-radius: 20px;
    padding: 20px;
}

/* Botones de navegación */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    color: #554139;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-nav-btn:hover {
    background-color: #dfd5c9;
    color: #2d201d;
}

/* Animación Menú Desplegable Vertical */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

#mobile-menu.active {
    max-height: 500px;
    /* Altura suficiente para el contenido */
    opacity: 1;
}

.blob-shape {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
}

.boton-reserva .qxCTlb {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    /*width: fit-content;*/
}

.fa-person-pregnant:before {
    content: "\e31e"
}