/* Fondo general en blanco */
body {
    background: #ffffff;
    color: #000000;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* Centrado de la sección hero */
#section-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background: #ffffff !important;
}

/* Logo */
#hero-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 30px;
}

/* Título principal */
#hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    #hero-logo {
        max-width: 150px;
        margin-bottom: 20px;
    }
    #hero-title {
        font-size: 2rem;
    }
}
