.landing-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 10vh; /* Centrado vertical suave */
}

.landing-img {
    max-width: 170px; /* Controla aquí el tamaño de la imagen */
    height: auto;
    display: block;
}

.landing-title {
    font-size: 3rem;
    color: #003f57;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: 'Segoe UI', Arial, sans-serif;
    /* No fondo, no sombra, solo texto */
}

@media (max-width: 650px) {
    .landing-row {
        flex-direction: column;
        gap: 18px;
        min-height: 30vh;
    }
    .landing-img {
        max-width: 90px;
    }
    .landing-title {
        font-size: 1.2rem;
        text-align: center;
    }
}
