@import url('https://fonts.googleapis.com/css2?family=Lato:ital@0;1&display=swap');


/*zerando css*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* fundo de tela */
 
html {
    width: 100vw;
    height: 100vh;
    font-size: 62.5%;
    color: white;
    font-family: 'Lato', sans-serif;
}

body {
   background: linear-gradient( rgba(17,17,17, 0.8) ,rgba( 20, 20, 20, 1)), url(img/img5.jpg);
   background-position: center center;
   background-size: cover;
   background-position-y: 0px;
   background-repeat: no-repeat;
   max-width: 1366px;
   min-width: 857px;
}

/* menu-header- navbar*/

header {
    width: 100%;
    height: 7vh;
    background: rgba(22,22,22, 0.2);
}

.menu-content {
    text-transform: uppercase;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.8rem;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 0.5rem;
    cursor: pointer;
    color: rgba(236, 11, 11, 0.788);
}

.menu-content .list-intens {
    display: flex;
    list-style: none;
    gap: 10px;
}

.menu-content .list-intens a {
    text-decoration: none;
    color: white;
    padding: 1.5rem;
    transform: 2ms ease-in;
    position: relative;
}

.menu-content .list-intens a::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0px;
    height: 1px;
    transition: all 1.5s ease;
    background-color: rgba(255, 0, 0, 0.616);
}

.menu-content .list-intens a:hover:before {
    width: 100%;
}

/* centro- conetudo principal*/

main {
    height: 93vh;
    justify-content: center;
    display: flex;
    align-items: center;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* textos conteudo principal*/

.primary-text {
    width: 850px;
    font-size: 5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.second-text {
    margin-bottom: 7rem;
    font-size: 2rem;
    color: rgb(165, 165, 165);
    text-transform: uppercase;
}

/* bitao*/

.btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btns button {
    width: 250px;
    height: 60px;
    cursor: pointer;
    border: 1px solid white;
    color: white;
    text-transform: uppercase;
    background-color: transparent;
    font-weight: bold;
    letter-spacing: 0.2rem;
    border-radius: 20px;
    position: relative;
    transition: 1.5s;
}

.btns button:hover {
    color: rgba(236, 11, 11, 0.788);
    border: none;
}

.btns button:before {
   content: '';
   border-radius: 20px;
   bottom: 0;
   left: 0;
   position: absolute;
   width: 0;
   height: 60px;
   background-color: rgb(61, 61, 61);
   z-index: -1;
   transition: 1s;
}

.btns button:hover::before {
    width: 100%;
}