:root {
    --text-color: #2b2d42;
    --accent: #e5989b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: #FEFCFD;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.content-wrapper {
    text-align: center;
    max-width: 700px;
    width: 100%;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.logo-container {
    margin-bottom: 20px;
    display: inline-block;
}

.logo {
    max-width: 450px; /* Logo más grande */
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #5c5f73;
}

.progress-container {
    width: 100%;
    max-width: 300px;
    height: 6px;
    background-color: rgba(229, 152, 155, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 15px auto;
}

.progress-bar {
    width: 30%;
    height: 100%;
    background-color: var(--accent);
    border-radius: 10px;
    animation: load 2s ease-in-out infinite alternate;
}

@keyframes load {
    0% { width: 10%; }
    100% { width: 80%; }
}

.loading-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .logo {
        max-width: 300px;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
}
