/* CONTENEDOR GENERAL */
.hero {
     
    display: flex;
    justify-content: center;
    align-items: center;
   background-size: cover;
}

/* HEADER */
.hero-header {
    padding: 20px 40px;
}

.logo {
    height: 50px;
}

/* CUERPO */
.hero-body {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 20px;
}

.text-unifcado {
    font-family: Arial, sans-serif;
    font-size:18px;
    font-weight:bold;
}
.custom-navbar {
    background-color: #0d3b66; /* fondo */
    font-family: Arial, sans-serif; /* tipo de letra */
}

.custom-navbar .navbar-brand {
    color: yellow !important; /* color del logo o título */
    font-size: 32px;
    font-weight: bold;
}

    .custom-navbar .nav-link {
        color: yellow !important; /* color de las opciones */
        font-size: 18px;
        font-family: Verdana, sans-serif;
        font-weight: bold;
    }

    .custom-navbar .nav-link:hover {
        color: white !important; /* color al pasar
     }

/* IMAGEN */
   .hero-img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
     }

/* TEXTO */
.hero-text {
    color: white;
    max-width: 400px;
}

    .hero-text h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 18px;
        margin-bottom: 20px;
        color: #b0b8c1;
    }

/* BOTÓN */
.btn-hero {
    background: #007bff;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

    .btn-hero:hover {
        background: #0056b3;
    }
