@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
/* font-family: 'Poppins', sans-serif; */

/* O asterisco representa tudo o que têm na página */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* regras genéricas */
body{
    font-family: 'Poppins', sans-serif; 
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: #fff;
}
.header__top{
width: 100%;
height: 80px;
color: #fff;
/* background-color: #000; */
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
.header__nav ul{
    display: flex;
}
.header__nav li{
    margin: 0 5px;
}
.header__nav a{
    font-weight: 700;
    font-size: 14px;
}
.header__nav a:hover{
    font-weight: 700;
    font-size: 16px;
    color: #dc143c;
    transition: 1s;
}
.scroll__active{
    background-color: rgba(68,52,55,0.534);
}
.hero{
    width: 100%;
    /* 100% do viewport - a barra de rolagem */
    /* height: calc(100vh-80px); */
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,0)),
    url(../images/pexels-felix-mittermeier-957002.jpg);
    /* imagem de fundo por padrão repete */
    background-repeat: no-repeat;
    /* para não repetir */
    background-size: cover;
    /* cover para esticar a imagem */
    /* background-position: center; */
    background-position: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}
.hero__title{
    margin-bottom: 20px;
    font-size: 8vmin;
}
.hero__text{
    margin-bottom: 20px;
    font-size: 5vmin;
}
.hero__link{
    font-size: 3vmin;
    border: 1px solid #dc143c;
    /* ampliar área de link */
    padding: 12px 30px;
    border-radius: 70px;
    background-color: #dc143c;
    font-weight: 700;
    text-transform: uppercase;
}
.hero__link:hover{
    background-color: transparent;
    transition: 1s;
}
.tour{
    width: 80%;
    /* height: 100vh; */
    margin: 20px auto;
    padding: 80px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tour__title{
    font-size: 6vmin;
    margin-bottom: 20px;
    text-align: center;
}
.line{
    width: 150px;
    height: 3px;
    background-color: #dc143c;
    border-radius: 10px;
    margin-bottom: 30px;
}
.tour__list{
    width: 100%;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* deixa os espaços iguais */
}
.tour__list__item{
    width: 40%;
}
.tour__list__item h3{
    font-size: 4vmin;
    margin-top:20px;
}
.tour__list__item p{
    font-size: 3vmin;
    margin: 10px 0 40px;
}
.btn{
    border:1px solid #dc143c;
    padding: 12px 40px;
    background-color: #dc143c;
    border-radius: 30px;
    font-size: 2.5vmin;
    font-weight: 700;
}
.btn:hover{
    background-color: transparent;
    transition: .5s;
    color: #dc143c;
}

.tour__image{
    width: 100%;
    transition: .5s;
    border-radius: 2px;
}

.tour__image:hover{
    transform: scale(1.2);
}
