/* 
 * Colores solicitados: verde agua, baige, azul, morado
 */
:root {
    --color-beige: #F5F5DC;
    --color-azul: #0B132B; /* Utilizamos un azul profundo para el fondo, da un aspecto premium */
    --color-morado: #6B46C1;
    --color-verde-agua: #20B2AA;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-azul);
    color: var(--color-beige);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* ===== Animaciones de fondo (Orbes flotantes) ===== */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--color-morado);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--color-verde-agua);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(245, 245, 220, 0.1); /* Beige sutil */
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* ===== Tarjeta principal (Glassmorphism) ===== */
.content-wrapper {
    position: relative;
    z-index: 1;
    perspective: 1000px;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.glass-card {
    /* Efecto de cristal esmerilado con tintes beige */
    background: rgba(245, 245, 220, 0.05); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 245, 220, 0.15);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

/* ===== Tipografía y estilos de contenido ===== */
.brand-name {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    /* Degradado entre Beige y Verde Agua para destacar la marca sin logo */
    background: linear-gradient(135deg, var(--color-beige), var(--color-verde-agua));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    transform: translateZ(50px);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-beige);
    opacity: 0.9;
    transform: translateZ(30px);
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(245, 245, 220, 0.7);
    font-weight: 300;
    transform: translateZ(20px);
}

/* ===== Indicador de carga animado ===== */
.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(245, 245, 220, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transform: translateZ(15px);
}

.progress-bar {
    height: 100%;
    width: 30%;
    /* Degradado dinámico morado -> verde agua */
    background: linear-gradient(90deg, var(--color-morado), var(--color-verde-agua));
    border-radius: 10px;
    animation: loading 2.5s infinite ease-in-out alternate;
}

@keyframes loading {
    0% { width: 10%; transform: translateX(0); }
    100% { width: 40%; transform: translateX(150%); }
}

.status-text {
    font-size: 0.85rem;
    color: var(--color-beige);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 3px;
    transform: translateZ(15px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .glass-card {
        padding: 3rem 2rem;
    }
    .brand-name {
        font-size: 3.5rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
}
