/* Estilos personalizados */
body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    /* overflow: hidden; Removed to fix scrolling on pages that include this CSS */
}

.fullscreen-carousel {
    height: 100vh;
    width: 100%;
    position: relative;
}

.carousel-inner,
.carousel-item {
    height: 100%;
    position: relative;
}

/* Capa transparente */
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Ajusta la opacidad aquí (0.5 = 50%) */
    z-index: 1;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: relative;
}

.centered-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    /* Asegura que esté por encima del overlay */
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.super-large-text {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.custom-btn {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    margin: 0 1rem;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Modern Beautiful Buttons */
.modern-btn {
    font-family: 'Outfit', sans-serif;
    display: inline-block;
    padding: 14px 35px;
    font-size: 1.15rem;
    font-weight: 300;
    /* Letras super finas y elegantes */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
    z-index: -1;
    transform: skewX(-20deg);
}

.modern-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.7);
}

.modern-btn:hover::before {
    left: 150%;
}

.modern-btn-sm {
    padding: 8px 15px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Gradientes específicos vibrantes y hermosos */
.btn-gradient-1 {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.85), rgba(255, 121, 121, 0.85));
}

.btn-gradient-2 {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.85), rgba(112, 161, 255, 0.85));
}

.btn-gradient-3 {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.85), rgba(123, 237, 159, 0.85));
}

.btn-gradient-4 {
    background: linear-gradient(135deg, rgba(253, 203, 110, 0.85), rgba(255, 234, 167, 0.85));
    color: #333 !important;
    /* Texto oscuro para el fondo amarillo */
}