/* Estilos para la página de mantenimiento */

body {
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    background-image: url('img/Imagen de iOS.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Fix para móviles: background-attachment: fixed no funciona bien */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        position: relative;
    }
    
    /* Crear un pseudo-elemento para la imagen de fondo en móviles */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('img/Imagen de iOS.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -2;
        pointer-events: none;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(250, 245, 240, 0.08) 100%);
    z-index: -1;
    backdrop-filter: blur(0.3px);
    pointer-events: none;
}

/* Ajustar z-index en móviles */
@media (max-width: 768px) {
    body::before {
        z-index: -1;
    }
}

.maintenance-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.maintenance-content {
    position: relative;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 80px 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
    border: none;
    overflow: hidden;
}

.maintenance-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.15) 0%, transparent 30%),
        linear-gradient(225deg, rgba(255, 200, 180, 0.15) 0%, transparent 30%);
    pointer-events: none;
    border-radius: 20px;
}

.maintenance-content::after {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 1.5rem;
    opacity: 0.8;
    filter: grayscale(0) brightness(1.2);
}

.maintenance-title {
    font-size: 3.5rem;
    color: #5a4a3a;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 30px;
    line-height: 1.4;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.maintenance-subtitle {
    font-size: 1.4rem;
    color: #6b5a4a;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
    font-style: normal;
    opacity: 0.95;
    margin-top: 20px;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.08);
}

.maintenance-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 1;
    filter: none;
    position: relative;
    display: inline-block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .maintenance-content {
        padding: 60px 50px;
    }

    .maintenance-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .maintenance-subtitle {
        font-size: 1.2rem;
    }

    .maintenance-icon {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .maintenance-content {
        padding: 50px 35px;
        border-radius: 20px;
    }

    .maintenance-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .maintenance-subtitle {
        font-size: 1.1rem;
        margin-top: 15px;
    }

    .maintenance-icon {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }
}

