/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

/* Sección del logo */
.logo-section {
    margin-bottom: 60px;
}

.logo-image {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Sección de estado */
.status-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
}

.status-title {
    font-size: 48px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 30px;
    position: relative;
}

/* Animación de puntos de carga */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
    animation: loading 1.4s infinite ease-in-out;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loading {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Efectos hover para la imagen del logo */
.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

/* Responsividad */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .logo-image {
        max-width: 150px;
        max-height: 120px;
    }
    
    .status-title {
        font-size: 36px;
    }
}

@media (max-width: 400px) {
    .logo-image {
        max-width: 120px;
        max-height: 100px;
    }
    
    .status-title {
        font-size: 28px;
    }
}
