/* assets/css/welcome.css */

:root {
    --primary-color: #5C7E8F;       /* Azul Grisáceo */
    --primary-dark: #476575;        /* Oscuro */
    --accent-color: #d97706;        /* Dorado */
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --font-main: 'Ubuntu', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    font-family: var(--font-main);
    overflow: hidden; 
}

/* Decoración de fondo (Ajustada para ser más sutil) */
.bg-decoration::before, .bg-decoration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}
.bg-decoration::before {
    width: 250px; /* Más chico */
    height: 250px;
    background: rgba(92, 126, 143, 0.2);
    top: -40px;
    left: -40px;
    filter: blur(50px);
}
.bg-decoration::after {
    width: 350px; /* Más chico */
    height: 350px;
    background: rgba(217, 119, 6, 0.15); 
    bottom: -80px;
    right: -80px;
    filter: blur(70px);
}

/* Contenedor Principal (Más compacto) */
.welcome-container {
    background: rgba(255, 255, 255, 0.90); /* Un poco más opaco */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px; /* Bordes un poco menos redondos */
    padding: 2.5rem 2rem; /* Menos padding vertical */
    width: 100%;
    max-width: 420px; /* Ancho reducido (antes 500px) */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.welcome-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Logo */
.welcome-logo img {
    height: 70px; /* Reducido de 90px */
    width: auto;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.1));
}

/* Tipografía */
h1 {
    font-family: var(--font-serif);
    color: var(--primary-dark);
    font-size: 1.75rem; /* Letra más chica */
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem !important;
}

p.lead {
    font-size: 0.95rem; /* Texto descriptivo más fino */
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 2rem !important;
}

/* Botones Personalizados */
.btn-welcome {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 20px; /* Botones menos altos */
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-welcome:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-success {
    border-color: var(--accent-color);
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px;
}

.btn-outline-success:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Footer pequeño */
.mt-5 {
    margin-top: 2rem !important; /* Menos espacio arriba del copyright */
}

/* Responsivo */
@media (max-width: 576px) {
    .welcome-container {
        width: 90%;
        padding: 2rem 1.5rem;
    }
    h1 { font-size: 1.5rem; }
}