/* styles.css */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1E90FF, #DC143C);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.coming-soon-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-out;
}

.logo img {
    width: 400px; /* Tamaño más grande del logo */
    height: auto;
}

.title {
    font-size: 3em;
    margin: 20px 0 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideDown 1.5s ease-out;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #f8f8ff;
    line-height: 1.6;
    animation: fadeIn 2s ease-out;
}

/* Loader styles */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Pie de página */
.footer {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
    font-size: 1em;
    color: #fff;
}

.footer a {
    color: #0045A0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FF6347;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
