* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

section.banner {
    margin-top: 90px;
}

section.banner .container {
    position: relative;
    overflow: hidden;
}



.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

section.banner .container .content-banner {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 0;
}

section.banner .container .content-banner img {
    flex: 0 0 50%;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

section.banner .container .content-banner img:hover {
    opacity: 0.8;
}

section.banner .container .prev,
section.banner .container .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
    user-select: none;
}

section.banner .container .prev:hover,
section.banner .container .next:hover {
    opacity: 0.7;
}

section.banner .container .prev {
    left: 15px;
}

section.banner .container .next {
    right: 15px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ccc;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


section.detalhes {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 80px 150px 80px;
}

section.detalhes .container {
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
    width: 100%;
    gap: 30px;
}

section.detalhes .container .left {
    max-width: 740px;
    width: 100%;
}

section.detalhes .container .left .rua {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 24px;
    color: #0C223A;
}

section.detalhes .container .left .endereco {
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    color: #6D6E70;
}

section.detalhes .container .left .separador {
    width: 100%;
    height: 1px;
    background: #DEDEDE;
    margin-top: 25px;
}

section.detalhes .container .left .detalhes-tecnicos {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 35px 0 45px;
}

section.detalhes .container .left .detalhes-tecnicos .card {
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 130px;
    width: 100%;
}

section.detalhes .container .left .detalhes-tecnicos .card img {
    max-width: 24px;
    margin-bottom: 8px;
}

section.detalhes .container .left .detalhes-tecnicos .card p {
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    color: #0C223A;
}

section.detalhes .container .left .descricao {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

section.detalhes .container .left .descricao h3 {
    font-family: 'archivo', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 20px;
    color: #0C223A;
}

section.detalhes .container .left .descricao p {
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    color: #6D6E70;
}

section.detalhes .container .left .form {
    background: #F4F4F4;
    border-radius: 10px;
    padding: 20px;
    margin: 40px 0;
}

section.detalhes .container .left .form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.detalhes .container .left .form form h3 {
    font-family: 'archivo', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    color: #0C223A;
}

section.detalhes .container .left .form form p {
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    color: #6D6E70;
}

section.detalhes .container .left .form form input {
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    color: #A1A1A1;
    border-radius: 4px;
    border: 1px solid #DEDEDE;
    padding: 14px 10px;
    background: #fff;
}

section.detalhes .container .left .form form input:focus {
    outline: none;
}

section.detalhes .container .left .form form .interesse {
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    color: #0C223A;
    border-radius: 4px;
    border: 1px solid #DEDEDE;
    padding: 14px 10px;
    background: #fff;

}

section.detalhes .container .left .form form .check label {
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 14px;
    color: #30455C;
}

section.detalhes .container .left .form form .check label span {
    color: #F4750E;
}

section.detalhes .container .left .form form button {
    cursor: pointer;
    padding: 18px 40px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 24px;
    border-radius: 5px;
    background: #F97430;
    align-self: start;
    border: none;
    color: #fff;
    margin-top: 35px;
}

section.detalhes .container .left .form form button:hover {
    background: #FFAA65;
}

section.detalhes .container .left .maps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.detalhes .container .left .maps h3 {
    font-family: 'archivo', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 20px;
    color: #0C223A;
}

section.detalhes .container .left .maps .map {
    min-height: 300px;
    width: 100%;
    background: red;
}

section.detalhes .container .right {
    max-width: 350px;
    width: 100%;
    gap: 30px;
    display: flex;
    flex-direction: column;
}

section.detalhes .container .right .right-detalhes {
    max-width: 350px;
    width: 100%;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    box-shadow: 0 2px 4px 0 rgba(46, 46, 46, 0.2);
    align-self: start;
    padding: 25px;
}

section.detalhes .container .right .right-detalhes dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
}

section.detalhes .container .right .right-detalhes dl dt {
    font-family: 'archivo', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    color: #0C223A;

}

section.detalhes .container .right .right-detalhes dl dd {
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    color: #6D6E70;
    text-align: right;
}

section.detalhes .container .right .right-detalhes p {
    padding: 30px 0;
    border-bottom: 1px solid #F4750E;
    font-family: 'archivo', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 14px;
    color: #44494D;
}

section.detalhes .container .right .share {
    display: flex;
    justify-content: space-between;
}

section.detalhes .container .right .share .compartilhe {
    max-width: 185px;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #0C223A;
} 

section.detalhes .container .right .share .imprimir {
    max-width: 123px;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #0C223A;
}

section.outros {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 80px;
    background: #EEF2F6;
}

section.outros .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-direction: column;
    max-width: 1140px;
    width: 100%;
}

section.outros .container h2 {
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    line-height: 40px;
    color: #0C223A;
}

section.outros .container .cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

section.outros .container .card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px 0 rgba(46, 46, 46, 0.2);
    max-width: 255px;
    width: 100%;
}

section.outros .container .card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

section.outros .container .card .card-dados {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
}

section.outros .container .card .card-dados #outros-valor,
section.outros .container .card .card-dados #outros-valor a {
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 24px;
    color: #0C223A;
    padding-bottom: 10px;
    text-decoration: none;
}

section.outros .container .card .card-dados p {
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    color: #5C6476;

}

#carousel img {
    max-width: 30vw;
    height: auto;
}  


@media (max-width: 1366px) {
    #carousel img {
    max-width: 50vw;
    height: auto;
    }   
}


@media (max-width: 1024px) {
    section.detalhes .container .left .detalhes-tecnicos {
        flex-wrap: wrap;
        align-items: center;
        justify-content: left;
    }
}


/* Mobile Responsivo */
@media (max-width: 768px) {
    section.banner .container .content-banner img {
        flex: 0 0 100%;
    }
    
    section.banner .container .prev {
        left: 10px;
    }
    
    section.banner .container .next {
        right: 10px;
    }
    
    .modal-content {
        padding: 10px;
    }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    section.detalhes {
        padding: 100px 20px;
    }

    section.detalhes .container {
        flex-direction: column;
    }

    section.detalhes .container .left {
        text-align: center;
    }

    section.detalhes .container .left .detalhes-tecnicos {
        justify-content: center;
    }

    section.outros {
        padding: 80px 20px;
    }

    section.outros .container .cards {
        flex-direction: column;
    }

    section.outros .container .card {
        max-width: 100%;
    }

    section.detalhes .container .right, section.detalhes .container .right .right-detalhes {
        max-width: 100%;
    }

    section.detalhes .container .right .share {
        justify-content: center;
        gap: 20px;
    }

    section.detalhes .container .left .detalhes-tecnicos .card {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    section.banner .container .prev,
    section.banner .container .next {
        width: 30px;
        height: 30px;
    }
}
#btn-tour {
    cursor: pointer;
    padding: 10px 25px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 20px;
    border-radius: 5px;
    background: #F97430;
    align-self: start;
    border: none;
    color: #fff;
    margin-bottom: 35px;
    display: block;
    width: auto;
    text-align: center;
    align-content: center;
    text-decoration: none;
}

section.detalhes .container .left .form form .select-wrapper {
    width: 100%;
}

section.detalhes .container .left .form form .select-wrapper select {
    width: 100%;
    padding: 10px 5px;
    font-family: 'archivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    color: #000;
    border-radius: 4px;
    border: 1px solid #DEDEDE;
}