* {
    font-size: 16px;
    margin: 0;
}

/*SCROLL INVISIBLE*/
.hideScroll {
    overflow: auto;
    height: 100px;
    scrollbar-width: none;
    /*Firefox*/
}

/*Webkit*/
.hideScroll::-webkit-scrollbar {
    width: 0;
}

body {
    font-family: Helvetica, sans-serif;
    background-color: black;

}

/*estilos de texto*/

h1 {
    font-family: 'Unbounded', cursive;

    font-size: 4rem;
    padding: 1rem 0rem
}

h3 {
    font-family: 'Red Hat Display', sans-serif;
    ;
}

h4 {
    font-family: 'Red Hat Display', sans-serif;
    ;
}

p {
    font-family: 'Red Hat Display', sans-serif;

}

.blanco {
    color: ghostwhite;
}

/*transiciones en java*/

.hidden {
    opacity: 0;
    transform: translateY(-100%);
    filter: blur(4px);
    transition: all 1.5s;

}

.show {
    opacity: 1;
    transform: translateY(0%);
    filter: blur(0px);
}


/*CUERPO*/

.container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;

}



.section1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 10rem 1fr 1fr;

    height: 110vh;
    width: 100%;


}


.fondo {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 110vh;
    object-fit: cover;
}

.fondo2 {
    grid-area: 1/ span 2;
    z-index: 1;
    position: absolute;
    width: auto;
    height: auto;

    opacity: 70%;
}




.navegador {
    display: grid;
    grid-area: 1 / 1 / 1 / 1;
    color: #181818;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex start;
    gap: 25%;
    padding: 4rem;
    z-index: 2;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: flex-start;
}

.botones {
    display: flex;
    flex-direction: row;
    gap: 10rem
}


.boton:hover {
    color: rgba(161, 31, 31, 0.726);
    cursor: pointer;
}



.INTRO {
    z-index: 2;
    grid-area: 2/ 5/ 4/ 4;
    padding: 2rem;


}

.scrolldown {
    z-index: 3;
    grid-area: 3 / 5 / 4 / 4;
    padding: 10rem 2rem;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    gap: 0.2rem;

    color: color #1f1f1f;


}

.parrafo {
    color: #181818;
    width: 20rem;
}



.banner {
    grid-area: 1/ span 2;
    width: 100%;
    object-fit: cover;
    z-index: 1;


}

.section2 {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: grid;
    grid-template-columns: 1fr 1fr;


}



.titulosection {
    z-index: 2;
    position: absolute;
    color: whitesmoke;
    left: 64rem;
    top: 80rem;

}

.galería {
    display: grid;
    grid-area: 1 / 1 / 1 / 1;
    z-index: 2;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 0rem;
    box-sizing: border-box;
    object-fit: cover;
    width: 100%;
}

figure {
    position: relative;
    cursor: pointer;

}

img {
    border-radius: 4px;

    transition: all 500ms ease-out;

}

.textoint {
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    width: auto;
    height: auto;
    transition: all 500ms ease-out;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    margin: 5rem 0rem;
    padding: 30% 3rem;
    transform: scale(1.05);

}

figure:hover>.textoint {
    opacity: 1;
    visibility: visible;
}

figure:hover>img {
    transform: scale(1.05);
}

.fila1 {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 2rem
}

.fila2 {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 2rem
}

.bola3d {
    z-index: 3;
    position: absolute;
    display: flex;
    opacity: 80%;
    margin-left: 35rem;




}



.section3 {
    display: grid;
    grid-template-rows: 100rem 25rem auto;
    width: 100%;
    height: 100%;
}

.article {
    grid-area: 2/1;

}

.footer {
    z-index: 2;
    grid-area: 3/1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10rem 15rem;
    gap: 40rem;
    color: #9A9A9A;
    box-sizing: border-box;
    opacity: 90%;
}

.fot1 {
    color: #9A9A9A;
}

.abajo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.social {
    display: flex;
    gap: 5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon:hover {
    color: rgba(161, 31, 31, 0.726);
    cursor: pointer;
}

.links{
    color: #9A9A9A;
    display: flex;
    gap: 5rem;

}

.redes{
    display: flex;
    flex-direction: row;
    gap: 5rem;
}











@media (max-width: 600px) {
    * {
        font-size: 10rem;

    }





}