:root {
    --verde-escuro: #16412b;
    --verde-medio: #7a7c2e;
    --verd-claro: #cdff46;
    --amarelo: #E1DD1D;
    --marrom: #a06318;
}

body {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    margin: 0;
    background-color: #f6f8e7;
    color: #333;
}

header {
    background-color: #fff;
    /* background-color: #f6f8e7; */

    nav {
        height: 100px;
        display: flex;
        align-items: center;

        a {
            display: inline;
        }

        .logo {
            height: 70px;
        }
    }
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 130%;
    color: var(--verde-escuro);
}

.btn-cta {
    background: #8f9900;
    border-radius: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border: 0 !important;
    padding: 16px 25px 15px 25px;
    transition: all .5s;
    display: inline-block;

    &:hover,
    &:active,
    &:visited {
        color: #fff;
        background: #6e7600;
    }
}

.hero {
    position: relative;
    overflow: hidden;

    .box-img {
        height: 500px;
        position: relative;
        z-index: 1;

        img {
            object-fit: cover;
            width: 100%;
            max-height: 100%;
            height: 500px;
        }
    }

    .box-info {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 2;
        background-color: rgb(0, 0, 0, 0.45);

        h1 {
            font-weight: bold;
            color: #fff;
            font-size: 3rem;
        }

        .marquee-container {
            width: 100%;
            overflow: hidden; /* Esconde o texto fora da área */
            background-color: #c8d401;
            padding: 10px 0;
            position: absolute;
            z-index: 999;
            bottom: 0;
        }
        
        .marquee-text {
            color: #845012;
            display: inline-block;
            white-space: nowrap; /* Impede que o texto quebre linha */
            padding-left: 100%; /* Começa fora da tela à direita */
            animation: marquee 18s linear infinite; /* Tempo e tipo de animação */
            font-size: 1.2rem;
            font-weight: 500;
        }
    }

    /* ::after {
        overflow: hidden;
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 60px;
        background: #fff;
        border-top-left-radius: 70% 100%;
        border-top-right-radius: 70% 100%;
    } */
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); } /* Move para a esquerda */
}

.destaques {
    padding: 20px 0 60px 0;

    h2 {
        margin-bottom: 20px;
    }

    .roteiro-destaque {
        display: grid;
        grid-template-columns: 45% auto;
        border-radius: 10px;
        box-shadow: 1px 3px 10px 1px rgba(0,0,0,.15);
        color: #333;
        background-color: rgba(255,255,255,.7);

        .box-img {
            position: relative;
            height: 100%;
            overflow: hidden;
            border-radius: 10px 0 0 10px;

            img {
                width: 100%;
                max-width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 10px 0 0 10px;
                transition: all .5s;
            }
        }

        .box-info {
            padding: 15px 30px;
            font-size: 1.3rem;

            h3 {
                font-size: 2rem;
                font-weight: 700;
                color: var(--verde-escuro);
            }

            p {
                color: #333;
            }

            .box-item {      
                display: flex;
                align-items: center;
                padding-left: 5px;

                i {
                    color: #8f9900;
                    font-size: 1rem;
                }
            
                p {
                    margin-bottom: 0;
                    font-size: 15px;
                    padding-left: 10px;
                }
            }

            .precificacao {
                p {
                    font-weight: 800;
                    font-size: 1.8rem;
                    color: var(--verde-escuro);
                }
            }
        }

        &:hover {
            .box-img {
                img {
                    transform: scale(1.07);
                }
            }

            .btn-cta {
                color: #fff;
                background: #6e7600;
            }
        }
    }
}

.inclusos {    
    .box-item {
        box-shadow: 1px 3px 10px 1px rgba(0,0,0,.15);
        border-radius: 10px;
        padding: 15px 15px;
        text-align: center;
        height: 100%;
        background-color: rgba(255,255,255,.7);
        
        i {
            color: #8f9900;
            font-size: 1.5rem;    
        }
    
        p {
            margin-bottom: 0;
        }
    }
}

.roteiros {
    .filtros {
        ul {
            display: flex;
            margin: 0;
            padding: 0;
            list-style: none;
            
            li {
                margin-right: 15px;

                a {
                    display: inline-block;
                    padding: 4px 30px 5px 30px;
                    color: #8f9900;
                    background-color: rgba(255,255,255,.7);
                    cursor: pointer;
                    text-decoration: none;
                    border-radius: 10px;
                    border: solid 1px #8f9900;
                    transition: all .5s;
                    font-size: 1.4rem;
                    font-weight: 500;

                    &.active {
                        background-color: #8f9900;
                        color: #fff;
                    }
                    
                    &:hover {
                        background-color: #788101;
                        color: #fff;

                    }
                }
            }
        }
    }

    .roteiro {
        box-shadow: 1px 3px 10px 1px rgba(0,0,0,.15);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: #333;
        cursor: pointer;
        height: 100%;
        background-color: rgba(255,255,255,.7);
        
        .box-img {
            position: relative;
            height: 260px;
            overflow: hidden;
            border-radius: 10px 10px 0 0;
            
            img {
                width: 100%;
                max-width: 100%;
                height: 260px;
                object-fit: cover;
                border-radius: 10px 10px 0 0;
                transition: all .5s;
            }
        }
        
        .box-info {
            padding: 15px;
            font-size: 1.3rem;
            display: flex;
            flex-direction: column;
            height: calc(100% - 260px);

            h3 {
                font-size: 1.8rem;
                font-weight: 700;
                color: var(--verde-escuro);
                margin-bottom: 5px;
            }
            
            p {
                text-decoration: none;
                margin-bottom: 5px;
            }

            .box-item {      
                display: flex;
                align-items: center;
                padding-left: 5px;

                i {
                    color: #8f9900;
                    font-size: 1rem;
                }
            
                p {
                    margin-bottom: 0;
                    font-size: 15px;
                    padding-left: 10px;
                }
            }
            
            .precificacao {
                p {
                    font-weight: 800;
                    font-size: 2rem;
                    color: var(--verde-escuro);
                }
            }

            .btn-cta {
                margin-top: auto;
            }
        }

        &:visited,
        &:active {
            text-decoration: none;
        }

        &:hover {
            .box-img {
                img {
                    transform: scale(1.07);
                }
            }

            .btn-cta {
                color: #fff;
                background: #6e7600;
            }
        }
    }
    
    .box-roteiros {
        transition: all .5s;
        min-height: 470px;

        /* .tps-roteiros, */
        .tp-roteiro {
            display: none;
            transition: all .5s;
        
            &.active {
                display: block;
            }
        }
    }
}

.modal-backdrop.show {
    opacity: .7;
}

.modal-roteiro {
    .modal-dialog {
        width: 80vw !important;
        max-width: 80vw !important;
    }

    .modal-content {
        height: 85vh;
    }

    .modal-body,
    .modal-footer {
        overflow-x: hidden;
        background-color: #f6f8e7;
    }

    .modal-hero {
        position: relative;
        overflow-x: hidden;

        .box-img {
            width: calc(100% - 20px);
            height: 330px;
            position: relative;
            z-index: 1;
            margin: 10px auto 0 auto;
            border-radius: 10px;
            overflow: hidden;

            img {
                object-fit: cover;
                width: 100%;
                max-height: 100%;
                height: 330px;
                border-radius: 10px;
            }
        }

        .box-info {
            width: calc(100% - 20px);
            height: calc(100% - 10px);
            border-radius: 10px;

            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
            background-color: rgb(0, 0, 0, 0.50);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem 2rem 1rem 2rem;

            .box {
                /* width: fit-content;
                display: inline-block;
                background-color: rgba(0,0,0,.2);
                border-radius: 10px;
                padding: 20px; */
            }

            h3 {
                font-weight: bold;
                color: #fff;
                font-size: 2.6rem;
                margin-bottom: 0;
            }

            p {
                color: #fff;
            }

            .precificacao {
                span {
                    color: #fff;
                }
                p {
                    font-size: 1.6rem;
                    font-weight: 600;
                }
            }
        }
    }

    .btn-cta {
        background: #46a720;
        color: #fff;

        &:hover {
            background: #368815;
            color: #fff;
        }
    }

    .descritivo {
        box-shadow: 1px 3px 10px 1px rgba(0,0,0,.15);
        padding: 20px;
        background-color: rgba(255,255,255,.7);
        border-radius: 10px;

        .box-conteudo {
            p {
                &:last-of-type {
                    margin-bottom: 0;
                }
            }
        }
    }

    .precificacao {
        p {
            font-weight: 800;
            font-size: 2rem;
            color: var(--verde-escuro);
            margin-bottom: 0;
        }
    }

    .btn-close {
        position: absolute;
        top: 30px;
        right: 30px;
        background-color: #f4f4f4;
        border-radius: 50%;
        padding: 3px;
        width: 35px;
        height: 35px;
    }
}

.single {
    .modal-roteiro {
        padding: 0;

        .modal-dialog {
            width: 100vw !important;
            max-width: 100vw !important;
            height: 100% !important;
            min-height: 100% !important;
            max-height: 100% !important;
            margin: 0;
        }

        .modal-content {
            height: 100vh;
        }
    }
}


footer {
    background-color: #303937;
    padding-top: 110px;
    z-index: 1;

    .btn-whatsapp {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        position: fixed;
        z-index: 2;
        border-radius: 50%;
        background-color: #46a720;
        bottom: 60px;
        right: 4%;
        transition: all 0.35s;
        box-shadow: 0px 0px 10px #444;

        img {
            max-width: 50px;
            max-height: 50px;
        }
    }

    .endereco {
        text-align: right;
        margin-bottom: 30px;
      
        strong {
            font-style: normal;
            font-weight: 900;
            font-size: 14px;
            line-height: 18px;
            text-transform: uppercase;
            color: #f5f6e1;
        }

        p {
            font-style: normal;
            font-weight: 500;
            font-size: 19px;
            line-height: 24px;
            color: #FFFFFF;
            margin-top: 5px;
        }
    }

    .logo-footer {
        text-align: center;

        img {
            height: 90px;
        }
    }

    .copyright {
        margin-top: 50px;
        padding: 30px 0 30px 0;
        background-color: #29312f;

        p {
            font-style: normal;
            font-weight: 500;
            font-size: 13px;
            line-height: 190%;
            color: #979090;

            a {
                color: #899b29;
            }
        }
    }
}


@media (max-width: 1200px) {

}

@media (max-width: 992px) {
    header {
        nav {
            height: 65px;
            
            .logo {
                height: 50px;
            }
        }
    }

    .btn-cta {
        width: 100%;
    }

    h2 {
        font-size: 1.6rem;
        font-weight: 600;
    }

    .hero {
        .box-img {
            height: 270px;

            img {
                height: 270px;
            }
        }

        ::after {
            display: none;
        }

        .box-info {
            h1 {
                font-size: 1.6rem;
                font-weight: 600;
            }
        }
    }

    .destaques {
        padding: 20px 0 60px 0;

        h2 {
            margin-bottom: 10px;
        }

        .roteiro-destaque {
            display: flex;
            flex-direction: column;

            .box-img {
                border-radius: 10px;
                margin: 10px 10px 0 10px;

                img {
                    border-radius: 10px;
                    height: 300px;
                }
            }

            .box-info {
                padding: 15px;
                font-size: 1.1rem;

                h3 {
                    font-size: 1.6rem;
                    font-weight: 600;
                    color: var(--verde-escuro);
                }

                .precificacao {
                    p {
                        font-weight: 1.7rem;
                    }
                }
            }
        }
    }

    .roteiros {
        .filtros {
            overflow-x: auto;
            padding-bottom: 20px;

            ul {
                li {
                    margin-right: 15px;
                    
                    a {
                        border-radius: 25px;
                        border: solid 1px #aaa;
                        font-size: 1.2rem;
                    }
                }
            }
        }

        .roteiro {
            height: 100%;

            .box-img {
                height: 180px;
                border-radius: 10px;
                margin: 10px;

                img {
                    max-width: 100%;
                    height: 180px;
                    border-radius: 10px;
                }
            }

            .box-info {
                padding: 0px 10px 10px 10px;

                h3 {
                    font-size: 1.3rem;
                    font-weight: 600;
                }

                p,
                .precificacao {
                    display: none;
                }

                .box-item {
                    p {
                        display: block;
                    }
                }
            }
        }
    }

    .modal-roteiro {
        .modal-dialog {
            width: 90vw !important;
            max-width: 90vw !important;
            margin-left: auto;
            margin-right: auto;
        }

        .modal-content {
            height: 80vh;
        }
    }

    footer {
        padding-top: 90px;
        text-align: center;

        .logo-footer {
            img {
                height: 70px;
            }
        }

        .copyright {
            margin-top: 30px;
        }
    }
}

@media (max-width: 768px) {
    .destaques {
        .roteiro-destaque {
            .box-img {
                img {
                    height: 260px;
                }
            }
        }
    }

    .modal-roteiro {
        /* .modal-dialog {
            width: 90vw !important;
            max-width: 90vw !important;
        } */
        

        .modal-content {
            height: 90vh;
        }

        .modal-body {
            overflow-x: hidden;
        }

        .modal-hero {
            position: relative;
            overflow-x: hidden;

            .box-img {
                height: 280px;
                position: relative;
                z-index: 1;

                img {
                    object-fit: cover;
                    width: 100%;
                    max-height: 100%;
                    height: 280px;
                }
            }

            .box-info {
                z-index: 2;
                background-color: rgb(0, 0, 0, 0.50);
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                padding: 0 10px 10px 15px;

                h3 {
                    font-weight: bold;
                    color: #fff;
                    font-size: 1.9rem;
                }

                p {
                    color: #fff;
                }

                .precificacao {
                    span {
                        color: #fff;
                    }
                    p {
                        font-size: 1.3rem;
                        font-weight: 600;
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}