:root {
    --mauve: rgb(255, 255, 255);
    --tropical-indigo: rgb(136, 104, 241);
    --ultra-violet: #4f518cff;
    --space-cadet: rgb(22, 20, 43);
}

/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--space-cadet);
    color: var(--mauve);
}

/* Header a pantalla completa */
.full-screen-header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--ultra-violet) 0%, var(--space-cadet) 100%);
    color: var(--mauve);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--mauve);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Botón de documentación */
.docs-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--tropical-indigo);
    color: var(--mauve);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--mauve);
}

.docs-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(144, 122, 214, 0.4);
    background-color: var(--mauve);
    color: var(--space-cadet);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .docs-button {
        padding: 0.8rem 1.6rem;
    }
} 