:root {
    --color-fondo: #e8e8e8;
    --color-texto-gris: #888888; 
    --color-texto-oscuro: #1a1a1a; 
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    background-color: var(--color-fondo);
}

.pantalla-portada {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    overflow: hidden; 
}

.logo-centro {
    width: 75%;
    max-width: 800px; 
    height: auto; 
    object-fit: contain; 
    margin-bottom: 1rem;
    mix-blend-mode: multiply;
    opacity: 0.42;
}

/* --- ANIMACIÓN --- */
.elementos-retrasados {
    opacity: 0; 
    animation: fadeSuave 2s ease forwards;
    animation-delay: 8s; 
}

@keyframes fadeSuave {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.texto-coming-soon {
    color: var(--color-texto-gris);
    font-size: 5.5rem; 
    font-weight: 400; 
    margin: 0 0 1.5rem 0; 
    text-align: center; 
}

.contenedor-enlaces {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.enlace-pregunta {
    color: var(--color-texto-gris);
    font-size: 1.4rem; 
    text-decoration: none;
    transition: all 0.3s ease;
}

.enlace-social {
    color: var(--color-texto-gris);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem; /* Espacio extra para Instagram */
}

.icono-ig {
    width: 24px; /* Tamaño un poco más grande y equilibrado */
    height: 24px;
    display: block;
}

.enlace-pregunta:hover, .enlace-social:hover {
    color: var(--color-texto-oscuro);
    transform: translateY(-2px);
}

/* --- ESTILOS MANIFIESTO --- */
.pantalla-manifiesto {
    max-width: 900px; 
    margin: 5rem auto; 
    padding: 0 2rem;
    color: var(--color-texto-oscuro);
}

.titulo-manifiesto {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.pantalla-manifiesto p {
    font-size: 1.15rem; line-height: 1.6; margin-bottom: 1.5rem; text-align: left; 
}

.contenedor-firma {
    display: flex; justify-content: flex-end; margin-top: 2rem;
}

.imagen-firma {
    width: 90px; 
    height: auto;
}

.volver {
    margin-top: 5rem; text-align: center; margin-bottom: 3rem;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .logo-centro { width: 90%; margin-bottom: 1.5rem; }
    .texto-coming-soon { font-size: 2.2rem; margin-bottom: 1.5rem; }
    .enlace-pregunta { font-size: 1.1rem; }
    .enlace-social { margin-top: 1.2rem; }
    .icono-ig { width: 22px; height: 22px; }
    .pantalla-manifiesto { margin: 3rem auto; padding: 0 1.5rem; }
    .pantalla-manifiesto p { font-size: 1rem; }
}