*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}



:root{
    --lu-verde: #179897;
    --lu-azul: #00668A;
    --lu-laranja: #F37323;
}

body{
    width: 80%;
    margin: 0 auto;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
}

@media (max-width: 768px) {
    body{
        width: 100%;
    }
}

header{
    display: flex;
    width: 100%;
}

.header-titles h5{
    margin-top: 38px;
}

.left-header{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
}

.right-header{
    width: 50%;
}

.city-names{
    display: flex;
}

.imgs-thumb img:nth-child(1){
    margin-right: 30px;
}

.left-header h2{
    width: 80%;
    font-size: 64px;
    line-height: 64px;
    font-weight: 400;
}

.left-header span{
    font-weight: 600;
    color: var(--lu-azul);
}

.left-header h5{
    width: 80%;
    font-size: 20px;
}

.city-names{
    font-weight: 600;
}

.city-names img{
    padding: 0 16px;
}

.btns-actions-header{
    display: flex;
    gap: 0 20px;
}

.btn-flex-center{
    display: flex;
    border-radius: 14px;
}

.btn-flex-center:hover{
    background-color: var(--lu-verde);
    transition: 0.2s ease-in-out;
}

.btn-flex-center img{
    margin-right: 12px;
}

.btns-actions-header a{
    padding: 10px 14px;
    background-color: #000000;
    color: #FFF;
    text-decoration: none;
}

.trip-container{
    margin: 160px 0;
    display: flex;
    justify-content: space-between;
}

.trip-content span{
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFF;
    padding: 6px 18px;
    border-radius: 12px;
    background-color: var(--lu-laranja);
}

.trip-header-content h2{
    margin: 20px 0;
    font-size: 28px;
    font-weight: 400;
}

.trip-content a{
    padding: 10px 18px;
    background-color: #000000;
    color: #FFF;
    text-decoration: none;
}

.btns-topics{
    display: flex;
    margin-top: 22px;
}

.btn-topics-center img{
    margin-right: 12px;
}

.btn-topics-center{
    display: flex;
    border-radius: 14px;
}

.btn-topics-center:hover{
    background-color: var(--lu-verde);
    transition: 0.2s ease-in-out;
}

/* SERVIÇOS */

.services-container{
    display: flex;
    justify-content: space-between;
}

.services-content span{
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFF;
    padding: 6px 18px;
    border-radius: 12px;
    background-color: var(--lu-laranja);
}

.services-content a{
    padding: 10px 18px;
    background-color: #000000;
    color: #FFF;
    text-decoration: none;
}

.services-header{
    margin: 20px 0;
}

.services-header h1{
    color: var(--lu-laranja);
}

.services-header h5{
    margin-top:10px;
    font-size: 16px;
    width: 80%;
}

.btns-services{
    display: flex;
    margin-top: 22px;
}

.btn-services-center img{
    margin-right: 12px;
}

.btn-services-center{
    display: flex;
    border-radius: 14px;
}

.btn-services-center:hover{
    background-color: var(--lu-verde);
    transition: 0.2s ease-in-out;
}

.title-services h1{
    font-size: 60px;
    margin-bottom: 60px;
}

.title-services img{
    width: 2.5%;
}


.fade-in-1 {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

.fade-in-2 {
    opacity: 0;
    animation: fadeIn 3s ease-in-out forwards;
}

.fade-in-3 {
    opacity: 0;
    animation: fadeIn 4s ease-in-out forwards;
}

.fade-in-4 {
    opacity: 0;
    animation: fadeIn 5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@media (max-width: 768px) {
    .services-container{
        flex-wrap: wrap;
    }
}


.calltoaction-container{
    padding: 180px 120px;
    background-image: url("../imagens/lu-viana-bg-calltoaction.jpg");
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    margin-top: 160px;
    border-radius: 22px;
}

.calltoaction-container h2{
    width: 50%;
    font-size: 52px;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.calltoaction-container a{
    padding: 20px 30px;
    font-size: 22px;
    background-color: #FFFFFF;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    border-radius: 12px;
}

.calltoaction-container a:hover{
    background-color: #000000;
    color: #FFFFFF;
    transition: 0.3s ease-in;
}

.destinos-container{
    display: flex;
    justify-content: space-between;
}

.destinos-item-content{
    width: 300px;
}

.destinos-item-content h3{
    font-size: 30px;
    margin-bottom: 20px;
}

.destinos-item-content p{
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
}

.title-destinos{
    margin-top: 120px;
}

.info-element-container{
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #86E2EE;
    padding-top: 50px;
    border-radius: 20px;
}

.info-element-container h2{
    width: 50%;
    font-size: 60px;
}

.info-element-container img{
    width: 30%;
}

footer{
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 120px;
}


.footer-content img{
    width: 400px;
}

.footer-content h2{
    margin-top: 120px;
}

.copyright{
    text-align: center;
}

.copyright p{
    font-weight: 600;
}

.copyright a{
    padding: 20px 0;
    text-decoration: none;
    color: var(--lu-azul);
    font-weight: bold;
}

.icons-copy{
    padding: 30px 0;
}

.icons-copy a:nth-child(2) img{
    padding: 0 20px;
}

.icons-copy a img:hover{
    scale: 1.2;
    transition: 0.2s ease;
}

/* Scroll to Top Button Styles */
#scrollToTop {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--lu-laranja); /* Button color */
    color: #FFF; /* Text color */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Padding */
    cursor: pointer; /* Pointer cursor on hover */
}

#scrollToTop:hover {
    background-color: var(--lu-azul); /* Darker shade on hover */
}


.accordion{
    padding: 20px 0;
    font-weight: 600;
    cursor: pointer;
}

.accordion summary{
    color: var(--lu-azul);
    font-size: 20px;
}


#btn-recife a{
    background-color: var(--lu-laranja);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    text-decoration: none;
    color: #FFF;
    border-radius: 20px;
}

#btn-recife a:hover{
    background-color: #000000;
    transition: 0.3s ease;
}