@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html{
    scroll-behavior: smooth;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
body{
    overflow-x: hidden;
}
@media (max-width:600px) {
    #carousel-inner img {
        width: 100%;
        height: 200px;
    }
}
@media (max-width:400px) {
    #carousel-inner img {
        width: 100%;
        height: 130px;
    }
}

    /* ---------spinner loading------------- */
    .spinner {
        background: #000;
        position: fixed;
        display: flex;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999999999999999999999999999999999999999999;
        display: flex;
        justify-content: center;
        align-items: center;
        transition:  all 4s;
    }

    .loader {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 150px;
        height: 150px;
        background: transparent;
        border: 3px solid rgba(0, 102, 255, 0.1);
        border-radius: 50%;
        text-align: center;
        line-height: 150px;
        font-family: sans-serif;
        font-size: 20px;
        color: #0066ff;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-shadow: 0 0 10px #0066ff;
        box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    }

        .loader::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            width: 100%;
            height: 100%;
            border: 3px solid transparent;
            border-top: 3px solid #0066ff;
            border-right: 3px solid #0066ff;
            border-radius: 50%;
            animation: animateC 2s linear infinite;
        }

        .loader span {
            display: block;
            position: absolute;
            top: calc(50% - 2px);
            left: 50%;
            width: 50%;
            height: 4px;
            background: transparent;
            transform-origin: left;
            animation: animate 2s linear infinite;
        }

            .loader span::before {
                content: '';
                position: absolute;
                width: 16px;
                height: 16px;
                border-radius: 50%;
                background: #00aeff;
                top: -6px;
                right: -8px;
                box-shadow: 0 0 20px 5px #0066ff;
            }

    @keyframes animateC {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes animate {
        0% {
            transform: rotate(45deg);
        }

        100% {
            transform: rotate(405deg);
        }
    }




    /* click to up button */
    .up-to-top {
        position: fixed;
        bottom: 10px;
        right: 10px;
        background-color: #fa951e;
        color: rgb(255, 255, 255);
        font-weight: bold;
        font-size: 15px;
        padding: 13px 18px;
        border-radius: 8px;
        font-family: arial, Tahoma;
        cursor: pointer;
        opacity: 0;
        z-index: 10000;
        transition: all 0.5s ease-in-out;
    }

        .up-to-top:hover {
            background-color: #ffa742;
            animation: bouncing 1.5s infinite;
        }

        .up-to-top.show-Up {
            opacity: 1;
        }


    /* ----whatsApp logo---- */
    #whatsapp-logo a {
        position: fixed;
        bottom: 10px;
        left: 10px;
        background-color: #075e54;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10000;
        transition: all 0.5s ease-in-out;
        text-decoration: none;
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #whatsapp-logo a:hover {
            background-color: #00786a;
            animation: bouncing 1.5s infinite;
        }

    #whatsapp-logo i {
        color: white;
        font-size: 25px;
    }

    /* scrollbar */
    ::-webkit-scrollbar {
        width: 15px;
    }

    ::-webkit-scrollbar-track {
        background-color: white;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #225ABC;
        transition: 0.3s;
    }

        ::-webkit-scrollbar-thumb:hover {
            background-color: #ffa742;
        }





    /* login  &  register */
    #form-login {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 100vh;
    }

        #form-login .form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 30px;
            width: 450px;
            border-radius: 20px;
            position: relative;
            transition: 1s ease;
            overflow: hidden;
            z-index: 1;
            width: 500px;
            max-width: 100%;
        }

            #form-login .form::before {
                position: absolute;
                content: "";
                width: 100%;
                height: 300%;
                bottom: -100%;
                left: 0;
                background: linear-gradient(45deg, #fa951e, #225ABC, #fa951e, #225ABC);
                z-index: -1;
                transition: 2s;
            }

            #form-login .form:hover::before {
                bottom: 0;
            }

        #form-login #logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
        }

            #form-login #logo img {
                width: 4rem;
            }

            #form-login #logo p {
                color: #fa951e;
                font-size: 22px;
                font-weight: 700;
                margin-bottom: 0;
            }

                #form-login #logo p span {
                    color: #225ABC;
                }

        #form-login .form button {
            align-self: flex-end;
        }

        #form-login .flex-column > label {
            color: white;
            font-weight: 600;
        }

        #form-login .inputForm {
            border: 1.5px solid #ecedec;
            border-radius: 10em;
            height: 50px;
            display: flex;
            align-items: center;
            padding-left: 10px;
            transition: 0.2s ease-in-out;
            background-color: white;
        }

        #form-login .input {
            margin-left: 10px;
            border-radius: 10rem;
            border: none;
            width: 100%;
            height: 100%;
        }

            #form-login .input:focus {
                outline: none;
            }

        #form-login .inputForm:focus-within {
            border: 1.5px solid orange;
        }

        #form-login .flex-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 10px;
            justify-content: space-between;
        }

            #form-login .flex-row > div > label {
                font-size: 14px;
                color: black;
                font-weight: 400;
            }

        #form-login .span {
            font-size: 14px;
            margin-left: 5px;
            color: white;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
        }

        #form-login .button-submit {
            position: relative;
            display: inline-block;
            padding: 15px 30px;
            text-align: center;
            letter-spacing: 1px;
            text-decoration: none;
            background: transparent;
            transition: ease-out 0.5s;
            border: 2px solid;
            border-radius: 10em;
            box-shadow: inset 0 0 0 0 blue;
            margin: 20px 0 10px 0;
            color: white;
            font-size: 15px;
            font-weight: 500;
            height: 50px;
            width: 100%;
            cursor: pointer;
        }

            #form-login .button-submit:hover {
                color: white;
                box-shadow: inset 0 -100px 0 0 royalblue;
            }

            #form-login .button-submit:active {
                transform: scale(0.9);
            }

        #form-login .p {
            text-align: center;
            color: white;
            font-size: 14px;
            margin: 5px 0;
        }

        #form-login .btn {
            margin-top: 10px;
            width: 100%;
            height: 50px;
            border-radius: 10em;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 500;
            gap: 10px;
            border: 1px solid #ededef;
            background-color: white;
            cursor: pointer;
            transition: 0.2s ease-in-out;
        }

            #form-login .btn:hover {
                border: 1px solid orange;
            }






    /* background */
    #Tour-main {
        position: relative;
        background: url(../img/Miradouro-Graca-Lisbon-Portugal.png) center center/cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
    }

        #Tour-main::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: rgb(0 0 0 / 70%);
        }



    /* bubbles */
    #dots-float {
        position: fixed;
        display: flex;
        /* overflow: hidden; */
        z-index: 99;
    }

        #dots-float span {
            position: relative;
            width: 15px;
            height: 15px;
            background-color: #fa951e;
            margin: 0 15px;
            border-radius: 50%;
            animation: float 10s linear 1;
            z-index: 99999999999999999999999999999999999999;
            animation-duration: calc(130s / var(--i));
            opacity: 0;
        }

            #dots-float span:nth-child(even) {
                background-color: #225ABC;
            }

    @keyframes float {
        0% {
            opacity: 1;
            transform: translateY(100vh) scale(0.3);
        }

        100% {
            opacity: 1;
            transform: translateY(-10vh) scale(0.9);
        }
    }



    /*------------------------------------- */
    /* ------------STart caursoul------------- */
    /*------------------------------------- */
    .swiper {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .swiper-slide {
        background-position: center;
        background-size: cover;
        width: 300px;
        height: 300px;
    }

        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
        }
    /*------------------------------------- */
    /* ------------end caursoul------------- */
    /*------------------------------------- */






    /*------------------------------------- */
    /* ------------STart up-nav------------- */
    /*------------------------------------- */
    #elements-up-nav {
        /* margin-right: 9rem; */
        padding-top: 5px;
        padding-bottom: 5px;
        background-color: white;
    }

        #elements-up-nav a {
            text-decoration: none;
        }

        #elements-up-nav img {
            width: 35px;
            height: 25px;
        }

        #elements-up-nav #flags {
            text-align: center;
        }

        #elements-up-nav #language {
            /* border: 1px solid #ccc; */
            /* padding: 0; */
            /* border-radius: 6px; */
            display: flex;
            justify-content: center;
            text-align: right;
            /* height: 40px; */
        }

            #elements-up-nav #language a {
                text-decoration: none;
                padding-right: 5px;
                border-radius: 6px;
                /* width: 32px; */
                /* display: flex; */
                justify-content: center;
                align-items: center;
                transition: 0.3s;
                font-size: 15px;
                color: black;
            }

                #elements-up-nav #language a.active-lang {
                    /* background-color: #ff8b08; */
                    color: #fa951e;
                    /* border: 1px solid #ff8b08; */
                    font-weight: 500;
                }

                #elements-up-nav #language a:not(a.active-lang):hover {
                    color: #908510;
                    /* border: 1px solid #eee; */
                }

            #elements-up-nav #language span {
                padding-right: 5px;
            }

    .hidden-elemnt {
        display: none;
    }

    @media (max-width: 768px) {
        #elements-up-nav > .row {
            flex-wrap: nowrap;
        }
    }
    /*------------------------------------- */
    /* ------------end up-nav------------- */
    /*------------------------------------- */



    /*------------------------------------- */
    /* ------------STart navbar------------- */
    /*------------------------------------- */
    #navbar-items {
        padding: 0 5px;
        box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.41);
        display: block;
        position: sticky;
        z-index: 999999999;
        width: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        background: rgb(0, 0, 0,0.8);
    }

        #navbar-items ul {
            flex-wrap: wrap;
        }

    .navbar-items.toop-00 {
        top: 0;
    }

    #navbar-brand img {
        width: 50px;
        margin-right: 10px;
        height: 45px;
    }

    #navbar-brand {
        color: #fa951e;
        text-decoration: none;
        font-size: 22px;
        font-weight: 800;
    }

        #navbar-brand span {
            color: #225ABC;
        }

    #navbar-items li {
        height: 72px;
    }

        #navbar-items li a.nav-link {
            color: white;
            font-size: 15px;
            padding: 12px 12px 15px 7px;
            transition: 0.3s;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 50%;
            transform: translateY(-50%);
            height: 72px;
            transition: 0.3s;
            overflow: hidden;
            gap: 5px;
        }

            #navbar-items li a.nav-link::before {
                content: "";
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 4px;
                background: #ff8b08;
                opacity: 0;
                transition: 0.4s;
            }

            #navbar-items li a.nav-link:hover,
            #navbar-items li a.nav-link.active-pages {
                color: #fa951e;
            }

                #navbar-items li a.nav-link:hover::before,
                #navbar-items li a.nav-link.active-pages::before {
                    opacity: 1;
                    left: 0;
                    width: 100%;
                }

    #navbar-items #li-Ser-hover {
        position: relative;
    }

    #navbar-items .hover-menue-ser {
        position: absolute;
        background-color: white;
        display: none;
        border-top: 5px solid #fa951e;
        z-index: 9;
    }

        #navbar-items .hover-menue-ser::before {
            content: "";
            position: absolute;
            border-color: transparent transparent #fa951e transparent;
            border-style: solid;
            border-width: 10px;
            top: -24px;
            left: 15px;
        }

    #navbar-items #li-Ser-hover:hover .hover-menue-ser {
        display: block;
    }

    #navbar-items .hover-menue-ser a {
        font-size: 14px;
        color: #666;
        display: block;
        padding: 10px 1.5rem;
    }

        #navbar-items .hover-menue-ser a.active-serv {
            background-color: #e9ecef;
        }

    #navbar-items .collapse .hover-menue-ser a:not(:last-child) {
        border-bottom: 1px solid #ededed;
    }

    @media (max-width: 991.5px) {
        #navbar-items .hover-menue-ser {
            width: 100%;
            text-align: center;
        }
    }
    /* bottum nav right */
    #navbar-items .link-carr-nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #navbar-items .link-carr-nav a {
            text-decoration: none;
        }

        #navbar-items .link-carr-nav .icon i {
            color: white;
        }
    /* This is an example, feel free to delete this code */
    .tooltip-container {
        position: relative;
        background-color: #fa951e;
        background-image: linear-gradient( 225deg, #fa951e 50%, #225ABC 100% );
        cursor: pointer;
        transition: all 0.2s;
        font-size: 17px;
        /*padding: 0.7em 1.8em;*/
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        fill: #fff;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

        .tooltip-container .borde-back {
            width: 60px;
            height: 60px;
            background-color: #e8e8e8;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: none;
            position: relative;
            z-index: 999;
        }

        .tooltip-container .icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            background-color: #fa951e;
            background-image: linear-gradient( 225deg, #fa951e 50%, #225ABC 100% );
            cursor: pointer;
        }

    .tooltip {
        position: absolute;
        top: -2px;
        left: -45px; /* Altere a posição inicial para a esquerda, fora da tela */
        transform: translateX( -32% ); /* Usando translateX para controlar a transição da esquerda para a direita */
        width: 122px;
        height: 52px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.6s;
        border-radius: 50px;
        background-color: #225ABC;
        background-image: linear-gradient( 225deg, #fa951e 50%, #225ABC 100% );
        display: flex;
        align-items: center;
        justify-content: right;
        padding-right: 16px;
        color: #fff;
        font-size: 18px;
        font-family: sans-serif;
        font-weight: 800px;
    }

    #tooltip-word-nav {
        text-align: right;
        padding-top: 14px;
        font-weight: 600;
    }

    .tooltip::before {
        position: absolute;
        content: "";
        height: 0.6em;
        width: 0.6em;
        right: -0.2em; /* Mude para a direita */
        top: 50%; /* Altere o topo para o meio da tooltip */
        transform: translateY(-50%) rotate(45deg); /* Use translateY para centralizar verticalmente */
        background: var(--background);
    }

    .tooltip-container:hover .tooltip {
        left: 100%; /* Altere para a posição desejada (a direita) */
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: -10;
    }

    .tooltip-container:hover {
        transform: translateX(-50px);
        transition: 0.5s linear;
    }

    @media (min-width: 992px) and (max-width: 1200px) {
        .tooltip-container {
            margin-left: 45px;
        }
    }

    #btn-nav {
        background-color: #fa951e;
        color: black;
    }

    @media (max-width: 991px) {
        #navbar-items .navbar-collapse {
            padding: 15px 0;
        }
    }
    /*------------------------------------- */
    /* ------------end navbar------------- */
    /*------------------------------------- */



    /*------------------------------------- */
    /* ------------start slider------------- */
    /*------------------------------------- */
    /*#bg-home1{
    background: url(../img/IMG-20240227-WA0006.jpg) center center/cover no-repeat fixed;
    height: 100vh;
    position: relative;
}
#bg-home2{
    background: url(../img/IMG-20240227-WA0003.jpg) center center/cover no-repeat fixed;
    height: 100vh;
    position: relative;
}
#bg-home3{
    background: url(../img/IMG-20240227-WA0005.jpg) center center/cover no-repeat fixed;
    height: 100vh;
    position: relative;
}
#bg-home4{
    background: url(../img/pexels-taras-chuiko-19295420.jpg) center center/cover no-repeat fixed;
    height: 100vh;
    position: relative;
}
#bg-home5{
    background: url(../img/1_R1lyhmYdnchFdMnVMqMmdQ.webp) center center/cover no-repeat fixed;
    height: 100vh;
    position: relative;
}
#bg-home6{
    background: url(../img/IMG-20240227-WA0004.jpg) center center/cover no-repeat fixed;
    height: 100vh;
    position: relative;
}
#bg-home7{
    background: url(../img/IMG-20240227-WA0002.jpg) center center/cover no-repeat fixed;
    height: 100vh;
    position: relative;
}*/
    /* #bg-home1::before, #bg-home2::before, #bg-home3::before, #bg-home4::before, #bg-home5::before, #bg-home6::before, #bg-home7::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 40%);
} */
    #slider-imgs i.icons-carusell {
        font-size: 25px;
        background: #225ABC;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /*------------------------------------- */
    /* ------------end slider------------- */
    /*------------------------------------- */




    /*------------------------------------- */
    /* ------------contact section------------- */
    /*------------------------------------- */
    #contact-main {
        padding: 3rem 0;
        text-align: center;
        background-color: #171717e6;
    }

    #h2-contact-home {
        font-size: 30px;
        color: #fa951e;
        position: relative;
        z-index: 1;
        border: 2px solid #225ABC;
        width: fit-content;
        position: relative;
        padding: 10px 20px;
        font-size: 30px;
        margin: 0 auto 40px;
        text-transform: uppercase;
        transition: 0.4s;
    }

        #h2-contact-home::after {
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: #fa951e;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            right: -30px;
            transition: 0.4s;
        }

        #h2-contact-home::before {
            content: "";
            position: absolute;
            width: 14px;
            height: 14px;
            background-color: #fa951e;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            left: -30px;
            transition: 0.4s;
        }

        #h2-contact-home:hover {
            color: white;
        }

            #h2-contact-home:hover::after {
                z-index: -1;
                background-color: #225ABC;
                animation: right-move 0.5s linear forwards;
            }

            #h2-contact-home:hover::before {
                z-index: -1;
                background-color: #225ABC;
                animation: left-move 0.5s linear forwards;
            }

    #contact-main iframe {
        height: 350px;
        width: 100%;
    }

    .form-home {
        margin-top: 3rem;
    }

    #input-contact-home {
        margin-bottom: 1.3rem;
    }

        #input-contact-home:focus, #textarea-contact-home:focus {
            box-shadow: none;
            border: 1px solid #fa951e;
        }

        #input-contact-home::placeholder {
            font-size: 13px;
        }

    #btn-contact-home {
        background-color: #225ABC;
        color: rgb(255, 255, 255);
        font-weight: 600;
        margin-top: 1.3rem;
        transition: 0.3s;
    }

        #btn-contact-home:hover {
            background-color: #276be1;
            animation: bouncing 1.5s infinite;
        }

    #box-icon-home {
        text-align: left;
        margin-top: 3rem;
    }

    #box-info-home {
        margin-bottom: 2.3rem;
        display: flex;
        align-items: flex-start;
    }

        #box-info-home i {
            font-size: 25px;
            margin-right: 30px;
            color: #ff8b08;
        }

        #box-info-home h2 {
            color: white;
            font-size: 17px;
            font-weight: 600;
        }

        #box-info-home span {
            font-size: 15px;
            color: white;
        }
    /*------------------------------------- */
    /* ------------end contact section------------- */
    /*------------------------------------- */







    /*------------------------------------- */
    /* ------------start footer------------- */
    /*------------------------------------- */
    #footer {
        background: #333 url(../img/minimalist-shape-background_112769-210.avif) repeat 0 0;
        color: #fff;
        /* padding: 30px 0 10px 0; */
        position: relative;
    }

        #footer > .row {
            padding: 30px 0 10px 0;
        }

        #footer::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #333333a8;
        }

    #footer-logo-logo h2 {
        color: #fa951e;
        font-size: 25px;
        font-weight: 600;
        text-transform: uppercase;
    }

        #footer-logo-logo h2 span {
            color: white;
        }

    #footer-logo-logo p {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 30px;
        color: #eee;
    }

    #footer-links h2 {
        font-size: 15px;
        font-weight: bold;
        border-bottom: 2px solid #fa951e;
        color: white;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 12px;
    }

    #footer-links ul li {
        color: #fa951e;
        padding: 0.5rem 0;
        border-bottom: 1px solid #594b00;
        transition: 0.3s;
    }

        #footer-links ul li:hover {
            color: #225ABC;
            padding-left: 10px;
        }

            #footer-links ul li:hover a {
                color: #225ABC;
                animation: bouncing-right 1.5s infinite;
                display: inline-block;
            }

            #footer-links ul li:hover i {
                color: #225ABC;
                animation: bouncing-right 1.5s infinite;
            }

    #footer-links a {
        text-decoration: none;
        transition: 0.3s;
        color: #eee;
    }

        #footer-links a:hover {
            color: #fa951e;
        }

    #footer-links i {
        margin-right: 5px;
        font-size: 14px;
    }

    #footer-info-contact h2 {
        font-size: 15px;
        font-weight: bold;
        border-bottom: 2px solid #fa951e;
        color: white;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 12px;
    }

    #footer-info-contact ul li {
        padding: 0.5rem 0;
        font-size: 14px;
    }

    .icons-footer {
        display: flex;
        align-items: center;
    }

        .icons-footer a, .icons-footer a:hover {
            text-decoration: none;
        }

        .icons-footer i {
            color: white;
            width: 35px;
            height: 35px;
            background-color: rgb(0, 0, 0, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 5px;
            transition: 0.3s;
        }

            .icons-footer i:hover {
                background-color: #fa951e;
            }

    #footer #copy-right {
        margin-top: 30px;
    }

        #footer #copy-right p {
            font-size: 14px;
            color: #8c8c8c;
            text-align: center;
            margin-bottom: 5px;
        }

            #footer #copy-right p span {
                color: #ff8b08;
            }
    /*------------------------------------- */
    /* ------------end footer------------- */
    /*------------------------------------- */





    /*------------------------------------- */
    /* ------------start TugaTour page------------ */
    /*------------------------------------- */
    #TugaTours #column-cards #card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    #TugaTours #Tour-main #View-tours {
        text-align: center;
        padding: 40px 0;
    }

        #TugaTours #Tour-main #View-tours a {
            text-decoration: none;
            color: rgb(255, 255, 255);
            background-color: #fa951e;
            padding: 10px 25px;
            font-size: 14px;
            display: inline-block;
            border-radius: 3px;
            text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 10px;
            transition: 0.3s;
            margin-right: 10px;
        }

            #TugaTours #Tour-main #View-tours a:hover {
                background-color: #ff8b08;
                animation: bouncing 1.5s infinite;
            }
    /*------------------------------------- */
    /* ------------end TugaTour page------------- */
    /*------------------------------------- */






    /*------------------------------------- */
    /* ------------start tour-main page------------- */
    /*------------------------------------- */
    #Tour-main {
        background-color: #353535;
        padding-top: 60px;
        padding-bottom: 60px;
    }

        #Tour-main #text-title {
            padding-bottom: 20px;
        }

            #Tour-main #text-title h1 {
                font-size: 30px;
                font-weight: 700;
                text-align: center;
                color: #276be1;
                position: relative;
            }

                #Tour-main #text-title h1 span {
                    color: #fff;
                }

            #Tour-main #text-title p {
                font-size: 18px;
                color: #fff;
                margin-top: 20px;
                text-align: center;
            }

    #Tour #column-cards #card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    #Tour-main #card-body {
        padding-left: 0;
        padding-right: 0;
    }

        #Tour-main #card-body h3 {
            font-size: 20px;
            color: #000000;
            font-weight: bold;
            text-align: center;
            text-transform: uppercase;
        }

        #Tour-main #card-body #link-card {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            margin-top: 25px;
        }

            #Tour-main #card-body #link-card > a {
                text-transform: uppercase;
                padding: 10px 25px;
                color: black;
                transition: 0.3s;
                font-size: 1.1rem;
                font-weight: bold;
                border: 1px solid #fa951e;
                position: relative;
                background: #fa951e;
            }

                #Tour-main #card-body #link-card > a::after {
                    content: "";
                    position: absolute;
                    width: 10px;
                    height: 10px;
                    background: #ff8b08;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%, -50%);
                    opacity: 0;
                    transition: 0.4s;
                }

                #Tour-main #card-body #link-card > a:hover {
                    color: #000000;
                    z-index: 9;
                    /* background-color: #dfdcde; */
                }

                    #Tour-main #card-body #link-card > a:hover::after {
                        opacity: 1;
                        width: 100%;
                        height: 100%;
                        border-radius: 6px;
                        z-index: -1;
                    }

            #Tour-main #card-body #link-card > p {
                font-weight: bold;
                color: #5c5b56;
                margin-left: 10px;
            }

            #Tour-main #card-body #link-card select {
                border: 1px solid #ccc;
                border-radius: 3px;
                padding: 5px;
            }

    #Tour-main .card {
        overflow: hidden;
        min-height: 435px;
        margin-bottom: 20px;
    }

        #Tour-main .card a#img-scale img {
            transform: scale(1.1);
            transition: 0.5s;
            max-width: 100%;
            height: auto;
        }

        #Tour-main .card a#img-scale:hover img {
            transform: scale(1);
        }

    #Tour-main #info-imgs {
        position: relative;
        overflow: hidden;
        margin-bottom: 20px;
    }

        #Tour-main #info-imgs::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(0 0 0 / 15%);
            z-index: 11;
        }

        #Tour-main #info-imgs #img-scale img {
            transform: scale(1.1);
            transition: 0.3s
        }

        #Tour-main #info-imgs:hover #img-scale img {
            transform: scale(1);
        }

    #Tour-main .info-imgs {
        position: absolute;
        text-align: right;
        padding: 10px 10px 8px 5px;
        bottom: 0;
        right: 0;
        color: white;
        font-size: 30px;
        font-weight: bold;
        background: url(../img/shadow_tour.png) repeat-x left bottom;
        width: 100%;
        z-index: 12;
    }

    #card-body-imgs {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 12;
        width: 100%;
        max-width: 100%;
        padding: 30px;
    }

        #card-body-imgs h3 {
            font-size: 30px;
            color: #fa951e;
            font-weight: bold;
            text-align: center;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: white;
        }

        #card-body-imgs a {
            text-transform: uppercase;
            padding: 10px 25px;
            color: rgb(255, 255, 255);
            transition: 0.3s;
            font-size: 1.2rem;
            font-weight: bold;
            position: relative;
            /* background: #225ABC; */
            border: 3px solid #255abc;
            z-index: 111;
        }

            #card-body-imgs a:hover {
                z-index: 9;
                animation: bouncing 1.5s infinite;
                animation-delay: 0.8s;
                box-shadow: 0 0 10px #255abc, 0 0 20px #255abc, 0 0 40px #255abc, 0 0 80px #255abc, 0 0 100px #255abc;
                transition-delay: 0.9s;
            }

            #card-body-imgs a::before {
                content: "";
                position: absolute;
                left: -20px;
                top: 50%;
                transform: translateY(-50%);
                width: 20px;
                height: 2px;
                background-color: #255abc;
                box-shadow: 5px -8px 0 #225abc, 5px 8px 0 #225abc;
                transition: width 0.5s, left 0.5s, height 0.5s, box-shadow 0.5s;
                transition-delay: 1s, 0.5s, 0s, 0s;
                z-index: -1;
            }

            #card-body-imgs a:hover::before {
                width: 60%;
                height: 100%;
                left: -2px;
                box-shadow: 5px 0 0 #225abc, 5px 0 0 #225abc;
                transition-delay: 0s, 0.5s, 1s, 1s;
            }

            #card-body-imgs a::after {
                content: "";
                position: absolute;
                right: -20px;
                top: 50%;
                transform: translateY(-50%);
                width: 20px;
                height: 2px;
                background-color: #255abc;
                box-shadow: -5px -8px 0 #225abc, -5px 8px 0 #225abc;
                transition: width 0.5s, left 0.5s, height 0.5s, box-shadow 0.5s;
                transition-delay: 1s, 0.5s, 0s, 0s;
                z-index: -1;
            }

            #card-body-imgs a:hover::after {
                width: 60%;
                height: 100%;
                right: -2px;
                box-shadow: -5px 0 0 #225abc, -5px 0 0 #225abc;
                transition-delay: 0s, 0.5s, 1s, 1s;
            }

    @media (min-width: 768px) {
        #Tour-main #column-cards {
            flex: none;
            max-width: 50%;
        }
    }

    @media (min-width: 992px) {
        #Tour-main #column-cards {
            flex: none;
            max-width: calc(100% / 3);
        }
    }

    #Tour-main .golden-bg {
        color: rgb(255, 255, 255);
        font-weight: bold;
        background-color: #225ABC;
        transition: 0.3s;
    }

        #Tour-main .golden-bg:hover {
            background-color: #276be1;
            animation: bouncing 1.5s infinite;
        }

    #Tour-main input.inpot-contrl {
        caret-color: #ff8b08;
    }

        #Tour-main input.inpot-contrl:focus {
            box-shadow: none;
            border: 1px solid #fa951e;
        }

    #Tour-main textarea.inpot-contrl {
        caret-color: #ff8b08;
    }

        #Tour-main textarea.inpot-contrl:focus {
            box-shadow: none;
            border: 1px solid #fa951e;
        }
    /*------------------------------------- */
    /* ------------end tour-main page------------- */
    /*------------------------------------- */






    /*------------------------------------- */
    /* ------------start Quem-somos page------------- */
    /*------------------------------------- */
    #Tour-main .box-text {
        padding-top: 15px;
        direction: rtl;
    }

        #Tour-main .box-text div #h-tour-somos {
            color: rgb(255, 255, 255);
            font-size: 30px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 20px;
        }

            #Tour-main .box-text div #h-tour-somos span {
                color: #fa951e;
            }

            #Tour-main .box-text div #h-tour-somos img {
                width: 40px;
                margin-right: 15px;
            }

        #Tour-main .box-text div #p-tour-somos {
            color: #ffffff;
            line-height: 1.6;
        }

            #Tour-main .box-text div #p-tour-somos:not(:last-child) {
                margin-bottom: 15px;
            }

    #Tour-main #text-title h1 span {
        color: #fa951e;
    }

    #col-img-text #hover-about {
        position: relative;
    }

        #col-img-text #hover-about::after {
            content: "";
            position: absolute;
            border-style: solid;
            right: 8px;
            bottom: 9px;
            width: 60px;
            height: 60px;
            border-width: 5px;
            transition: 0.3s;
            border-color: transparent #225ABC #225ABC transparent;
        }

        #col-img-text #hover-about::before {
            content: "";
            position: absolute;
            border-style: solid;
            left: 8px;
            top: 33px;
            width: 60px;
            height: 60px;
            border-width: 5px;
            transition: 0.3s;
            border-color: #225ABC transparent transparent #225ABC;
        }

    #col-img-text img {
        max-width: 100%;
        margin-top: 25px;
    }

    #col-img-text #hover-about:hover::after {
        right: 4px;
        bottom: 5px;
    }

    #col-img-text #hover-about:hover::before {
        left: 5px;
        top: 29px;
    }

    @media (min-width: 768px) {
        #col-img-text {
            flex: none;
            max-width: 50%;
        }

        #col-text-text {
            flex: none;
            max-width: 50%;
        }
    }

    @media (max-width: 768px) {
        #col-img-text {
            margin-bottom: 20px;
            text-align: center;
        }
    }
    /*------------------------------------- */
    /* ------------end Quem-somos page------------- */
    /*------------------------------------- */







    /*------------------------------------- */
    /* ------------start city tours Services------------- */
    /*------------------------------------- */
    #City-Tours #text-title p:first-of-type {
        margin-bottom: 0;
    }

    #City-Tours #text-title p:nth-of-type(2) {
        margin-top: 15px;
    }

    #City-Tours #text-title p:last-child {
        font-weight: bold;
        margin-bottom: 0;
    }

    #City-Tours #card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    #City-Tours #Tour-main #final-text {
        color: white;
        font-size: 30px;
        text-transform: uppercase;
        font-weight: 700;
        text-align: center;
    }

    #City-Tours #Tour-main #tour-row {
        margin-bottom: 50px;
    }

    #City-Tours #Tour-main #final-text span {
        color: #ff8b08;
    }
    /*------------------------------------- */
    /* ------------end city tours Services------------- */
    /*------------------------------------- */





    /*------------------------------------- */
    /* ------------start transfer page------------- */
    /*------------------------------------- */
    #Transfers #text-title {
        border-bottom: none;
        padding-bottom: 100px;
    }

        #Transfers #text-title p span {
            font-weight: bold;
        }

    #Transfers #box-select-price div:first-child {
        margin-bottom: 50px;
    }

    #Transfers #box-select-price h1 {
        color: #ff8b08;
        font-weight: 700;
        font-size: 30px;
        text-align: center;
    }

    #Transfers #box-select-price span {
        color: rgb(255, 255, 255);
    }

    #Transfers #box-select-price ul li {
        border: 1px solid #eee;
        text-align: center;
        padding: 15px;
        background-color: white;
        transition: 0.3s;
    }

        #Transfers #box-select-price ul li:first-child {
            background-color: #225ABC;
            color: white;
            font-weight: bold;
            border: none;
        }

        #Transfers #box-select-price ul li:not(:first-child):hover {
            background-color: #f8f8f8;
        }
    /*------------------------------------- */
    /* ------------end transfer pager------------- */
    /*------------------------------------- */





    /*------------------------------------- */
    /* ------------start events page------------- */
    /*------------------------------------- */
    #Eventos .events-img {
        padding-top: 30px;
    }

        #Eventos .events-img div#image {
            overflow: hidden;
            margin-bottom: 20px;
        }

        #Eventos .events-img div img {
            width: 100%;
            height: auto;
            transition: 0.3s;
        }

            #Eventos .events-img div img:hover {
                transform: scale(1.1);
            }

    @media (min-width: 768px) {
        #Eventos .events-img #images-eventos {
            flex: none;
            max-width: 50%;
        }
    }

    @media (min-width: 991px) {
        #Eventos .events-img #images-eventos {
            max-width: calc(100% / 3);
        }
    }

    #Eventos #text-title {
        border: none;
    }
    /*------------------------------------- */
    /* ------------end events page------------- */
    /*------------------------------------- */



    /*------------------------------------- */
    /* ------------start forta page------------- */
    /*------------------------------------- */
    #Forta #forta-img {
        padding-top: 30px;
        color: white;
    }

        #Forta #forta-img img {
            width: 100%;
            height: auto;
            max-width: 100%;
        }
    /*------------------------------------- */
    /* -----------end forta page------------- */
    /*------------------------------------- */



    /*------------------------------------- */
    /* ------------start crie-tour page------------- */
    /*------------------------------------- */
    #Crie-o-tour #text-title {
        border: none;
    }

    #Crie-o-tour label {
        color: white;
    }
    /*------------------------------------- */
    /* ------------end crie-tour page------------- */
    /*------------------------------------- */





    /*------------------------------------- */
    /* ------------start Galaria page------------- */
    /*------------------------------------- */
    #Galaria #text-title {
        border: none;
        text-align: center;
    }

    #Galaria #Tour-main {
        background: #353535;
    }

    #Galaria #text-title p {
        margin-top: 0;
    }

    #Galaria #Tour-main #img-galary {
        overflow: hidden;
        border-right: 3px solid #494949;
        border-bottom: 3px solid #494949;
    }

        #Galaria #Tour-main #img-galary img {
            width: 100%;
            height: 350px;
            transition: 0.3s;
        }

            #Galaria #Tour-main #img-galary img:hover {
                transform: scale(1.1);
            }

    @media (max-width:880px) {
        #Galaria #Tour-main #img-galary img {
            height: 260px;
        }
    }

    /*------------------------------------- */
    /* ------------end Galaria page------------- */
    /*------------------------------------- */




    /*------------------------------------- */
    /* ------------start reverca page------------- */
    /*------------------------------------- */
    #Reserva label {
        color: white;
    }

    #Reserva #text-title {
        position: relative;
        padding-left: 55px;
        margin-bottom: 10px;
        border: none;
        padding-bottom: 0;
        color: white;
    }

        #Reserva #text-title p {
            color: #ffffff;
            margin: 0;
            padding: 0;
            font-size: 12px;
            text-align: left;
        }

        #Reserva #text-title h3 {
            margin: 0;
            padding: 0;
            font-size: 22px
        }

            #Reserva #text-title h3 strong {
                position: absolute;
                background-color: #ff8b08;
                color: white;
                left: 0;
                border-radius: 50%;
                font-size: 18px;
                width: 40px;
                height: 40px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

    #Reserva #column-reverse {
        padding: 0 35px;
        border-left: 1px solid #ccc;
        margin-left: 32px;
        line-height: 25px;
    }
    /*------------------------------------- */
    /* ------------end reverca page------------- */
    /*------------------------------------- */




    /*------------------------------------- */
    /* ------------start contacts page------------- */
    /*------------------------------------- */
    #Contactos #text-title {
        text-align: center;
        border: none;
    }

    #Contactos #Tour-main label {
        color: white;
    }

    #Contactos #Tour-main #contacts-us {
        margin-bottom: 50px;
    }

    #Contactos #contacts-us > h4 {
        color: #225ABC;
        font-size: 22px;
        text-align: center;
    }

    #Contactos .inform-contact div:first-of-type img {
        width: 15rem;
    }

    #Contactos #Tour-main .info-icons {
        margin-top: 25px;
    }

        #Contactos #Tour-main .info-icons #box-info {
            margin-bottom: 25px;
        }

            #Contactos #Tour-main .info-icons #box-info i {
                color: #caaa00;
                font-size: 40px;
                margin-right: 12px;
            }

            #Contactos #Tour-main .info-icons #box-info span {
                color: #5c5b56;
            }
    /*------------------------------------- */
    /* ------------end contacts page------------- */
    /*------------------------------------- */




    /*------------------------------------- */
    /* ------------start Tour-Colina page------------ */
    /*------------------------------------- */
    #Tour-Colina #img-heroSec {
        position: relative;
    }

    #Tour-Colina hr {
        background-color: white;
    }

    #Tour-Colina #img-heroSec .infor-img-colina {
        position: absolute;
        background: url(../img/shadow_tour.png) repeat-x bottom left;
        width: 100%;
        bottom: 0;
        left: 0;
        z-index: 99999;
        height: 9rem;
    }

    @media (min-width: 769px) and (max-width: 991px) {
        #Tour-Colina #img-heroSec .infor-img-colina {
            height: 9rem;
        }
    }

    @media (max-width: 768px) {
        #Tour-Colina #img-heroSec .infor-img-colina .row {
            flex-direction: column;
        }
    }

    #Tour-Colina #img-heroSec div img {
        width: 100%;
    }

    #Tour-Colina #img-heroSec #text-main h1 {
        font-size: 36px;
        text-transform: uppercase;
        font-weight: bold;
        color: white;
    }

    @media (max-width: 768px) {
        #Tour-Colina #img-heroSec #text-main h1 {
            font-size: 22px;
        }
    }

    #Tour-Colina #img-heroSec #text-main span {
        font-size: 13px;
        color: white;
    }

    #Tour-Colina #img-heroSec #price-main {
        color: white;
        text-align: right;
        font-size: 13px;
    }

        #Tour-Colina #img-heroSec #price-main span#price {
            font-size: 60px;
            color: #fa951e;
            line-height: 60px;
            position: relative;
        }

            #Tour-Colina #img-heroSec #price-main span#price sup {
                font-size: 25px;
                position: absolute;
                top: 25px;
                right: -30px;
            }

    @media (max-width: 768px) {
        #Tour-Colina #img-heroSec #price-main span#price {
            font-size: 20px;
            line-height: 20px;
        }

        #Tour-Colina #img-heroSec #price-main {
            text-align: left;
        }

            #Tour-Colina #img-heroSec #price-main span#price sup {
                font-size: 18px;
                position: relative;
                top: -2px;
                right: 0;
            }
    }

    #Tour-Colina .site-position {
        background-color: #333;
        padding: 10px 0;
    }

        #Tour-Colina .site-position ul {
            color: #888;
            font-size: 11px;
            margin-bottom: 0;
        }

            #Tour-Colina .site-position ul li {
                display: inline-block;
                padding-right: 8px;
                margin-right: 3px;
                position: relative;
            }

                #Tour-Colina .site-position ul li:first-child {
                    margin-right: 0;
                    padding-right: 5px;
                }

                #Tour-Colina .site-position ul li:nth-of-type(2) {
                    margin-right: 0;
                    padding-right: 5px;
                }

                #Tour-Colina .site-position ul li:nth-of-type(3) {
                    margin-right: 0;
                    padding-right: 5px;
                }

                #Tour-Colina .site-position ul li a {
                    text-decoration: none;
                    color: #fff;
                    opacity: 0.7;
                }

    #Tour-Colina #img-slid #ban-slid {
        background: #4f4200 url(../img/banner_bg_colored.png) no-repeat center bottom;
        width: 100%;
        height: 4rem;
        box-shadow: 0 12px 20px 0 rgb(0 0 0 / 30%), 0 2px 4px 0 rgb(0 0 0 / 12%);
        margin-bottom: 30px;
    }

    #Tour-Colina .swiper {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #Tour-Colina .swiper-slide {
        background-position: center;
        background-size: cover;
        width: 320px;
        height: 300px;
    }

        #Tour-Colina .swiper-slide img {
            display: block;
            width: 100%;
        }

    #Tour-Colina #Tour-main a.btn-ver {
        color: #000000;
        background: #fa951e;
        cursor: pointer;
        padding: 12px 20px;
        border-radius: 3px;
        text-transform: uppercase;
        font-weight: bold;
        display: block;
        text-align: center;
        transition: 0.3s;
        font-size: 13px;
        margin-bottom: 20px;
    }

        #Tour-Colina #Tour-main a.btn-ver:hover {
            background-color: #ff8b08;
        }

    #Tour-Colina #Tour-main .card-ver .card {
        min-height: 294px;
    }

    #Tour-Colina #Tour-main .card-ver .card-body h5.card-title {
        background-color: #5c5b56;
        padding: 10px 20px 10px 18px;
        color: #fff;
        border: 1px solid #fff;
        margin: -19px -19px 12px -19px;
        border-radius: 0.25rem;
        text-align: center;
    }

    #Tour-Colina #Tour-main .card-ver #selector-ver {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        color: #666;
    }

        #Tour-Colina #Tour-main .card-ver #selector-ver select {
            width: 100px;
            border: 1px solid #ccc;
        }

        #Tour-Colina #Tour-main .card-ver #selector-ver p {
            margin-bottom: 0;
        }

    #Tour-Colina #Tour-main .card-ver #lang-ver {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #ededed;
        padding: 15px 0;
        color: #666;
    }

        #Tour-Colina #Tour-main .card-ver #lang-ver select {
            width: 100px;
            font-size: 13px;
        }

            #Tour-Colina #Tour-main .card-ver #lang-ver select option {
                font-size: 13px;
            }

    #Tour-Colina #Tour-main .card-ver #track-ver {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #ededed;
        padding: 15px 0;
        color: #666;
    }

        #Tour-Colina #Tour-main .card-ver #track-ver select {
            width: 100px;
            font-size: 13px;
        }

            #Tour-Colina #Tour-main .card-ver #track-ver select option {
                font-size: 13px;
            }

    #Tour-Colina #Tour-main .card-ver #hour-ver {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #ededed;
        border-bottom: 1px solid #ededed;
        padding: 15px 0;
        color: #666;
    }

        #Tour-Colina #Tour-main .card-ver #hour-ver select {
            width: 100px;
            font-size: 13px;
        }

            #Tour-Colina #Tour-main .card-ver #hour-ver select option {
                font-size: 13px;
            }

    #Tour-Colina #Tour-main .card-ver #Preco-ver {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #ededed;
        padding: 15px 0;
        color: #666;
    }

    #Tour-Colina #Tour-main .card-ver #total-ver {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #ededed;
        border-bottom: 1px solid #ededed;
        padding: 15px 0;
        color: #ff8b08;
        font-weight: bold;
    }

    #Tour-Colina #Tour-main .card-ver #buttn-ver {
        text-align: center;
        padding: 8px;
    }

        #Tour-Colina #Tour-main .card-ver #buttn-ver button {
            background-color: #225ABC;
            font-weight: bold;
            color: white;
            transition: 0.3s;
            border: none;
            padding: 10px 25px;
            font-size: 1.1em;
            margin-top: 15px;
        }

            #Tour-Colina #Tour-main .card-ver #buttn-ver button:hover {
                background-color: #276be1;
            }

    #Tour-Colina #Tour-main #infor-program h3 {
        font-size: 22px;
        margin-top: 5px;
        color: #ffffff;
    }

    #Tour-Colina #Tour-main #infor-program ul li {
        color: #ffffff;
    }

        #Tour-Colina #Tour-main #infor-program ul li i {
            margin-right: 5px;
            color: white;
        }

    #Tour-Colina #Tour-main #infor-program span {
        font-size: 20px;
        display: block;
        margin-bottom: 10px;
        color: white;
    }

    #Tour-Colina #Tour-main #infor-program p {
        color: white;
    }

    #Tour-Colina #swiper-pagination span {
        background-color: white;
    }

    @media (max-width: 991px) {
        #Tour-Colina #img-slid {
            flex: 0;
            max-width: 100%;
        }
    }

    @media (max-width: 991px) {
        #Tour-Colina #card-slideer {
            flex: 1;
            max-width: 100%;
        }
    }
    /*------------------------------------- */
    /* ------------end Tour-Colina page------------- */
    /*------------------------------------- */




    /*------------------------------------- */
    /* ------------start Carrinho page------------- */
    /*------------------------------------- */
    #Carrinho #Tour-main {
        background: #353535;
    }

    #Tour-main #Cariagae-sale {
        text-align: center;
        color: white;
    }

        #Tour-main #Cariagae-sale a {
            color: rgb(255, 255, 255);
            font-weight: 600;
            background: #fa951e;
            text-decoration: none;
            transition: 0.3s;
        }

            #Tour-main #Cariagae-sale a:hover {
                background: #ff8b08;
                animation: bouncing 1.5s infinite;
            }
    /*------------------------------------- */
    /* ------------end Tour-Colina page------------- */
    /*------------------------------------- */


    /*------------------------------------- */
    /* ------------start Loja page------------- */
    /*------------------------------------- */
    .up-location {
        background-color: #333;
        padding: 10px 0;
        height: 3rem;
        margin-bottom: 8rem;
    }

        .up-location ul {
            display: flex;
            gap: 5px;
        }

            .up-location ul li {
                display: inline-block;
            }

                .up-location ul li:nth-of-type(2) a {
                    color: #fff;
                    opacity: 0.7;
                    text-decoration: none;
                    font-size: 11px;
                }

                .up-location ul li:nth-of-type(3) i {
                    color: #888;
                    font-size: 11px;
                }

                .up-location ul li:last-of-type {
                    color: #888;
                    font-size: 11px;
                    display: flex;
                    align-items: center;
                }

                .up-location ul li i {
                    color: white;
                    font-size: 11px;
                }

    #Loja #navbar-items {
        position: sticky;
    }

    #Loja #Tour-main {
        padding-top: 0;
        padding-bottom: 140px;
    }

    #Loja #box {
        position: relative;
        margin-bottom: 7rem;
    }

        #Loja #box:hover #info {
            border-top-color: #225ABC;
        }

            #Loja #box:hover #info h2 {
                color: var(--main-color);
            }

        #Loja #box #image img {
            width: 100%;
            max-width: 100%;
            height: 25rem;
            max-height: 100%;
        }

        #Loja #box #info {
            position: absolute;
            background-color: white;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            bottom: -72px;
            left: 50%;
            transform: translateX(-50%);
            width: 22rem;
            max-width: 100%;
            border-top: 4px solid #fff;
            padding: 20px;
            transition: 0.5s;
            text-align: center;
        }

            #Loja #box #info h5 {
                font-weight: 700;
                text-align: center;
                margin-bottom: 20px;
                color: #37423b;
                transition: 0.3s;
            }

            #Loja #box #info button {
                background: #225ABC;
                color: rgb(255, 255, 255);
                font-weight: 600;
                padding: 0.5rem 2.75rem;
                transition: 0.3s;
            }

            #Loja #box #info a:hover {
                animation: bouncing 1.5s infinite;
                background-color: #ffa742;
            }

    @media (min-width: 992px) {
        #Loja #Tour-main #container-cards {
            max-width: 1120px;
        }
    }

    @media (min-width: 1200px) {
        #Loja #Tour-main #container-cards {
            max-width: 85rem;
        }
    }

    @media (max-width: 1200px) {
        #Loja #Tour-main #container-cards #column-card {
            flex: 0 0 calc(100%/3);
            max-width: 100%;
        }
    }

    @media (max-width: 991px) {
        #Loja #Tour-main #container-cards #column-card {
            flex: 0 0 calc(100%/2);
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        #Loja #Tour-main #container-cards #column-card {
            flex: 0 0 calc(100%);
            max-width: 100%;
        }
    }
    /*------------------------------------- */
    /* ------------end Loja page------------- */
    /*------------------------------------- */

    /*------------------------------------- */
    /* ------------start Carcavelos / Caparica------------- */
    /*------------------------------------- */
    #Carc-Cap #Tour-main {
        padding-top: 0;
    }

    #Carc-Cap .up-location {
        margin-bottom: 3rem;
    }

    #Carc-Cap #card-main {
        padding: 30px;
        background-color: #202020;
    }

        #Carc-Cap #card-main p#title-card {
            font-size: 22px;
            color: #ffffff;
        }

    #Carc-Cap #info-passag {
        display: flex;
        /* align-items: center; */
        gap: 60px;
        flex-wrap: wrap;
    }

        #Carc-Cap #info-passag img {
            width: 600px;
            height: auto;
            max-width: 100%;
        }

    #Carc-Cap #select-down {
        text-decoration: none;
        color: rgb(255, 255, 255);
        font-weight: 600;
        display: flex;
        justify-content: space-between;
    }

        #Carc-Cap #select-down:focus {
            box-shadow: none;
        }

    #Carc-Cap #info-passag .info-immg .card {
        min-height: auto;
        width: 100%;
        border: none;
    }

    #Carc-Cap #info-passag .info-immg .header-select {
        background: #fa951e;
        border: none;
    }

    @media (min-width: 1200px) {
        #Carc-Cap #info-passag .info-immg {
            width: 23rem;
        }
    }

    @media (max-width: 1200px) {
        #Carc-Cap #info-passag .info-immg {
            width: 37rem;
        }
    }

    #Carc-Cap #info-passag .info-immg .card-body {
        margin-top: 0;
    }

    #Carc-Cap #info-passag #info #select-div {
        display: flex;
        justify-content: space-evenly;
    }

        #Carc-Cap #info-passag #info #select-div input {
            width: 45px;
            height: 30px;
            padding-left: 3px;
        }

    #Carc-Cap #info-passag #info p#price {
        color: #77a464;
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: center;
    }

    #Carc-Cap #info-passag #info select {
        margin-bottom: 25px;
        width: 15rem;
        height: 30px;
    }

    #Carc-Cap #info-passag #info #adicion {
        margin-bottom: 20px;
    }

        #Carc-Cap #info-passag #info #adicion input {
            width: 3rem;
            margin-right: 20px;
        }

        #Carc-Cap #info-passag #info #adicion a {
            text-decoration: none;
            color: rgb(255, 255, 255);
            font-weight: 600;
            transition: 0.3s;
            background-color: #255abc;
            background-image: linear-gradient(160deg, #255abc 0%, #bb9115 100%);
        }

            #Carc-Cap #info-passag #info #adicion a:hover {
                background-color: #276be1;
            }

    #Carc-Cap #info-passag #info p {
        color: #666;
        border-bottom: none;
    }

        #Carc-Cap #info-passag #info p a {
            text-decoration: none;
        }

    #Carc-Cap .box .card-body {
        margin-top: 15px;
    }

        #Carc-Cap .box .card-body h5 {
            color: #fa951e;
            border: 1px solid #d3ced2;
            padding: 0.5em 1em;
            border-radius: 4px 4px 0 0;
            display: inline-block;
            border-bottom: none;
            font-size: 16px;
        }

        #Carc-Cap .box .card-body p:first-of-type {
            font-size: 22px;
            margin-top: 20px;
            color: white;
        }

        #Carc-Cap .box .card-body p:last-of-type {
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            padding: 8px 0;
        }

            #Carc-Cap .box .card-body p:last-of-type span:first-child {
                font-weight: 700;
                color: #ffffff;
                font-size: 16px;
                margin-right: 20px;
            }

            #Carc-Cap .box .card-body p:last-of-type span:last-child {
                font-style: italic;
                color: white;
            }

    #Carc-Cap #prod-relace p#title {
        color: white;
    }

    #Carc-Cap #info-offers {
        border: none;
    }

        #Carc-Cap #info-offers a img {
            transform: scale(1.04);
            transition: 0.3s;
        }

            #Carc-Cap #info-offers a img:hover {
                transform: scale(1);
            }

        #Carc-Cap #info-offers .card-body {
            text-align: center;
            transition: 0.3s;
            margin-top: 0;
        }

            #Carc-Cap #info-offers .card-body:hover {
                background-color: #225ABC;
            }

                #Carc-Cap #info-offers .card-body:hover h5 {
                    color: white;
                }

                #Carc-Cap #info-offers .card-body:hover p {
                    color: #4dff00;
                }

                #Carc-Cap #info-offers .card-body:hover a {
                    background-color: #fa951e;
                }

            #Carc-Cap #info-offers .card-body h5 {
                font-size: 1em;
                color: #000000;
                border: none;
                margin-bottom: 0;
                font-weight: 600;
            }

            #Carc-Cap #info-offers .card-body p {
                border: none;
                color: #77a464;
                display: block;
                font-weight: 400;
                margin-bottom: 0.5em;
                font-size: .857em;
                margin-top: 0;
                text-align: center;
            }

            #Carc-Cap #info-offers .card-body a {
                background-image: linear-gradient(160deg, #255abc 0%, #ffa742 100%);
                color: rgb(255, 255, 255);
                font-weight: 600;
                transition: 0.3s;
            }

                #Carc-Cap #info-offers .card-body a:hover {
                    background-image: linear-gradient(160deg, #ffa742 0%, #255abc 100%);
                    animation: bouncing 1.5s infinite;
                    animation-play-state: paused;
                }

        #Carc-Cap #info-offers:hover .card-body a {
            animation: bouncing 1.5s infinite;
        }
    /*------------------------------------- */
    /* ------------end Carcavelos / Caparica------------- */
    /*------------------------------------- */

    /*------------------------------------- */
    /* ------------start finalizar compras------------- */
    /*------------------------------------- */
    #finalizar #top {
        margin-bottom: 3rem;
    }

        #finalizar #top h4 {
            color: white;
            position: relative;
            margin-bottom: 25px;
        }

        #finalizar #top .box {
            margin-bottom: 1rem;
        }

            #finalizar #top .box label {
                color: white;
                font-weight: 600;
            }

                #finalizar #top .box label span {
                    color: red;
                }

            #finalizar #top .box input {
                caret-color: #ff8b08;
            }

                #finalizar #top .box input:focus {
                    box-shadow: none;
                    border: 1px solid #ff8b08;
                }

            #finalizar #top .box textarea {
                caret-color: #fa951e;
            }

                #finalizar #top .box textarea:focus {
                    box-shadow: none;
                    border: 1px solid #ff8b08;
                }

    #finalizar #bottom {
        margin-bottom: 50px;
    }

        #finalizar #bottom #box {
            background: white;
            padding: 20px;
            border-radius: 5px;
            padding-bottom: 13px;
        }

        #finalizar #bottom h4 {
            color: white;
            position: relative;
            margin-bottom: 25px;
        }

        #finalizar #bottom #details {
            color: rgb(0, 0, 0);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 3px 10px;
        }

            #finalizar #bottom #details:nth-of-type(2) span:last-of-type {
                color: #225ABC;
            }

            #finalizar #bottom #details:not(:last-of-type) {
                border-bottom: 1px solid #ccc;
            }

            #finalizar #bottom #details:last-of-type {
                padding-bottom: 0;
            }

            #finalizar #bottom #details:first-of-type {
                border-bottom: 1px solid #fa951e;
            }

                #finalizar #bottom #details:first-of-type h3:last-of-type {
                    color: #fa951e;
                }

            #finalizar #bottom #details h3 {
                font-size: 21px;
            }

            #finalizar #bottom #details:not(:first-of-type) h3 {
                font-size: 17px;
            }

            #finalizar #bottom #details span {
                font-size: 13px;
            }

        #finalizar #bottom #pays .card {
            min-height: auto;
            margin-bottom: 0;
            border: none;
        }

            #finalizar #bottom #pays .card .card-header {
                background-color: #fa951e;
            }

            #finalizar #bottom #pays .card h2 {
                width: fit-content;
            }

                #finalizar #bottom #pays .card h2 button {
                    text-decoration: none;
                }

                    #finalizar #bottom #pays .card h2 button label {
                        color: white;
                        font-weight: bold;
                    }

                        #finalizar #bottom #pays .card h2 button label a {
                            text-decoration: none;
                            margin-left: 5px;
                        }

                    #finalizar #bottom #pays .card h2 button:focus {
                        box-shadow: none;
                    }

        #finalizar #bottom #pays .card-body {
            background: #b2cdfa;
            font-weight: 600;
        }

            #finalizar #bottom #pays .card-body p {
                margin-top: 10px;
            }

    #finalizar .container #finish {
        position: relative;
        width: fit-content;
        margin: 0 auto;
        background-color: #225ABC;
        color: white;
        font-weight: 600;
        border: none;
        transition: 0.3s;
    }

        #finalizar .container #finish:hover {
            background-color: #276be1;
            animation: bouncing 1.5s infinite;
        }
    /*------------------------------------- */
    /* ------------end finalizar compras------------ */
    /*------------------------------------- */

    /*------------------------------------- */
    /* ------------start carrinho total----------- */
    /*------------------------------------- */
    #Carrinho-total #tabel-final {
        background-color: white;
        color: black;
        margin-bottom: 0;
    }

        #Carrinho-total #tabel-final thead th {
            padding: 1.5rem 1rem;
        }

        #Carrinho-total #tabel-final thead tr th:last-of-type {
            color: #fa951e;
        }

        #Carrinho-total #tabel-final tbody th {
            padding: 1.5rem 1rem;
        }

        #Carrinho-total #tabel-final tbody td {
            padding: 1.5rem 1rem;
        }

        #Carrinho-total #tabel-final input {
            width: 3rem;
        }

        #Carrinho-total #tabel-final tbody tr td:last-of-type {
            color: #225ABC;
        }

    #Carrinho-total #Tour-main #actualizar {
        width: fit-content;
        text-decoration: none;
        color: white;
        background: #225ABC;
        border: none;
        font-weight: 600;
        transition: 0.3s;
    }

        #Carrinho-total #Tour-main #actualizar:last-of-type {
            background-color: #fa951e;
        }

            #Carrinho-total #Tour-main #actualizar:last-of-type:hover {
                background-color: #ffa742;
            }

        #Carrinho-total #Tour-main #actualizar:hover {
            background-color: #276be1;
            animation: bouncing 1.5s infinite;
        }

    #Carrinho-total #Tour-main #last-tabel {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: white;
        color: black;
        padding: 0 10px;
        margin-bottom: 30px;
    }

        #Carrinho-total #Tour-main #last-tabel h2 {
            padding: 1.5rem 1rem;
            font-size: 21px;
            font-weight: 600;
        }

        #Carrinho-total #Tour-main #last-tabel span {
            padding: 1.5rem 1rem;
            color: #225ABC;
            font-weight: 600;
            font-size: 19px;
        }

    #Carrinho-total #Tour-main #links {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    /*------------------------------------- */
    /* ------------start carrinho total------------ */
    /*------------------------------------- */


    /* ----------start animation--------- */
    @keyframes left-move {
        50% {
            left: 0;
            width: 12px;
            height: 12px;
        }

        100% {
            left: 0;
            border-radius: 0;
            width: 51%;
            height: 100%;
        }
    }

    @keyframes right-move {
        50% {
            right: 0;
            width: 12px;
            height: 12px;
        }

        100% {
            right: 0;
            border-radius: 0;
            width: 51%;
            height: 100%;
        }
    }

    @keyframes bouncing {
        0%, 10%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }

        40%, 60% {
            transform: translateY(-8px);
        }
    }

    @keyframes bouncing-right {
        0%, 10%, 20%, 50%, 80%, 100% {
            transform: translateX(-3px);
        }

        40%, 60% {
            transform: translateX(-8px);
        }
    }
