.elementor-25 .elementor-element.elementor-element-3b99182{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-2b1af94 *//* Contenedor principal centrado a pantalla completa */
.welcome-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    padding: 20px;
}

/* Tarjeta contenedora */
.welcome-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 480px;
    width: 100%;
    border: 1px solid #f0f0f0;
}

/* Contenedor del Logo - Control de tamaño */
.logo-portal {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.logo-portal img {
    max-width: 220px; /* Ajusta este ancho si quieres que el logo se vea más grande o pequeño */
    height: auto;
    display: block;
}

/* Título */
.welcome-card h1 {
    font-size: 28px;
    color: #1d1d1b;
    margin-bottom: 12px;
    font-weight: 700;
}

/* Párrafo descriptivo */
.welcome-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Botón Premium Call To Action - Fondo Rojo de la marca */
.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #E5322C; /* Rojo #E5322C */
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12 rgba(229, 50, 44, 0.2);
    width: 100%;
    box-sizing: border-box;
}

/* Hover del Botón - Rojo más oscuro */
.btn-login:hover {
    background: #B8251F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 50, 44, 0.3);
}

/* Animación de la flecha */
.btn-login svg {
    transition: transform 0.3s ease;
}

.btn-login:hover svg {
    transform: translateX(4px);
}/* End custom CSS */