html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Boheme Floral';
    src: url(../fonts/Boheme\ Floral.ttf);
}

@font-face {
    font-family: 'Trajan Pro';
    src: url(../fonts/TrajanPro-Regular.ttf);
}

@font-face {
    font-family: 'Trajan Pro Bold';
    src: url(../fonts/TrajanPro-Bold.otf);
}


body {
    font-family: 'Trajan Pro';
    margin: 0 auto;
    max-width: 1440px;
    color: #A3A590;
    background-color: #F7F7F7;
}

/* HOME */

.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 40px;
}

.home a {
    color: #A3A590;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    text-decoration: underline;
    transition: 0.4s;
}

.home a:hover {
    color: #7A7C6C;
}

.passeios {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
    padding: 20px 0 160px;    
}

.passeios .passeios-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.passeios .passeios-info h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 150%;
    text-transform: uppercase;
}

.passeios .passeios-info h3 {
    color: #7A7C6C;
    font-size: 30px;
    line-height: 100%;
    text-transform: uppercase;
}

.passeios .passeios-info h3::first-letter {
    font-size: 34px;
}

.passeios .passeios-info p {
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    max-width: 43%;
}