/* Estilos personalizados para la landing page */

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Estilos para el logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 250px; /* Logo más grande */
    animation: fadeInDown 1.2s ease;
}

.card {
    border-radius: 15px;
    border: none;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Estilos para el mensaje principal */
.lead {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto;
    animation: fadeIn 1.5s ease;
}

/* Animaciones sutiles */
.display-4, .lead {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estilos responsive */
@media (max-width: 768px) {
    .logo-image {
        max-height: 200px;
    }

    .lead {
        font-size: 1.3rem;
        max-width: 90%;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .logo-image {
        max-height: 150px;
    }

    .lead {
        font-size: 1.1rem;
        max-width: 95%;
        padding: 0 10px;
    }

    .card-body {
        padding: 2rem 1rem;
    }
}