:root {
    --blanco: #FFFFFF;
    --oscuro: #212121;
    --primario: #FFC107;
    --secundario: #0097A7;
    --gris: #757575;
    --grisClaro: #9ea5ab;
    --tinto: #4b1d1dd3;
    --rojo: #c60000;
    --negro: #000000;

}


/* <GLOBALES>*//* <GLOBALES>*//* <GLOBALES>*//* <GLOBALES>*/



html{
    font-size: 62.5%;
    box-sizing: border-box;
    
}


*, *::before, *::after{
    box-sizing: inherit;
}


body{
    font-size: 16px; /* 1rem = 10px */
    font-family: "Krub", sans-serif;
    background-image: linear-gradient(to top, var(--negro) 45%, var(--oscuro) 90%);
    
}


/* <TIPOGRAFIA> *//* <TIPOGRAFIA> *//* <TIPOGRAFIA> *//* <TIPOGRAFIA> */



h1 {
    color: var(--blanco);
    font-size: 25px;
}





/* NAVEGACION PRINCIPAL *//* NAVEGACION PRINCIPAL *//* NAVEGACION PRINCIPAL *//* NAVEGACION PRINCIPAL */



.nav-bg {
    /* box-shadow: #000000 0px 0px 10px; */
    background-color: rgba(33, 33, 33, 0.5); /* Color oscuro con transparencia */
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 2;
    transition: background-color 0.3s ease;
 }

 .nav-scroll {
    background-color: rgba(0, 0, 0, 1); /* Color negro sólido */
}


.navegacion-principal {  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4%;
    
}

@media (min-width: 768px) {
    .navegacion-principal {
        flex-direction: row;
        justify-content: flex-start;
    }
    
}

.navegacion-principal a {
    
    color: var(--blanco);
    text-decoration: none;
    font-size: 2rem;
    margin-right: 2rem; 
}


.navegacion-principal a:hover{
    color: #c4c4c4;
    font-weight: bold;
    
}

/* Ajusta el tamaño del logo en el menú de navegación */
.logo img {
    height: 40px; /* Ajusta la altura según sea necesario */
    width: auto; /* Mantiene la proporción del logo */
    display: block; /* Asegura que la imagen se comporte como un bloque */
    margin: auto 0; /* Centra verticalmente la imagen dentro del enlace */
    
}

a {
    font-size: 2rem;
    text-decoration: none;
}
.logo__nombre {
    display: flex;
    align-items: center;
    font-weight: 400;
}


.no-margin {
    margin: 0;
}

.logo__bold {
    font-weight: 700;
    color: var(--blanco);
    font-size: 25px;
    
}

.navegacion {
    margin-left: 2rem; 
}
/* HERO *//* HERO *//* HERO *//* HERO *//* HERO *//* HERO *//* HERO *//* HERO */

.hero{
    background-image: url(img/hero2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 70rem;
    position: relative;
    margin-bottom: 2rem;
    z-index: 1;
    
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Ajusta la altura del desvanecido según sea necesario */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none; /* Permite hacer clic a través del pseudo-elemento */
}

.hero-bg{
    background-color: rgb(0 0 0 / 60%); /* meotdo nuevo */
    width: 100%;
    height: 100%;
}










 /* footer *//* footer *//* footer//* footer *//* footer *//* footer*//* footer*//* footer */   


.footer{
    background-color: #212121;
    color: var(--blanco);
    padding: 3rem 0;
    text-align: center;
    margin-top: 4rem;
} 