* {
    box-sizing: border-box;
}

body {
    margin: 0;
    line-height: 1.6;
}
.tith1{
    margin-bottom: 20px;
}
.tith1 h1{
    color: #3C6D8D;
    cursor: pointer;
    font-size: 1.8em; padding: 5px 0;
}
.titp p{
    color:#000; padding-bottom: 10px;
}

._lineHeight_10oxb_13 {
    height: 2px;
}
._line_10oxb_3 {
    width: 100%;
    background-color:#E77621 ;
}
header.header-top {
    background-color:#E78B10;
    padding: 10px 20px;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-left h1 {
    font-size: 24px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-left img{
    width: 150px;
}

.header-center p {
    font-size: 28px;
    font-style: normal;
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.header-right .icon {
    font-size: 22px;
}

.flag {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.qr {
    width: 40px;
}

/* MENU */
.main-menu {
    background-color: #f5f5f5;
    position: relative;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #3C6D8D;
    cursor: pointer;
}

.menu-items  {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    flex-wrap: wrap;
}

.menu-items li a {
    font-weight: bold;
    color: #3C6D8D;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.3s ease;padding: 20px 10px;
}

.menu-items  li:hover {
   background: #ccc;
}

/* BARRA COLORIDA */
.menu-bar-colorful {
    display: flex;
    height: 8px;
}

.bar {
    flex: 1;
}

.bar-1 { background-color: #3C6D8D; }
.bar-2 { background-color: #F5BF41; }
.bar-4 { background-color: #E77621; }
.bar-3 { background-color: #D54F49; }

/* CONTEÚDO */
main.content {
    padding: 20px;
}

main h2 {
    color: #3C6D8D;
}



.banner-slider {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}

.banner-text h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
/* RESPONSIVO */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .header-right {
        justify-content: center;
    }


    .menu-toggle {
        display: block;
        margin: 0 auto;
    }

    .menu-items {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #f5f5f5;
    }

    .menu-items.show {
        display: flex;
    }

    .menu-items li {
        padding: 10px 0;
        width: 100%;
        justify-content: center;
    }

    main.content {
        padding: 15px;
    }

    footer {
        font-size: 12px;
    }
}
textarea:focus, input:focus, select:focus {
    outline: 0;
}
/* Campo de busca e botão mapa */
.top-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}


.top-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.map-btn {
    background-color: #E77621;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.share-btn {
    font-size: 20px;
    cursor: pointer;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    padding:10px 0; z-index: 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 20px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 0 0 calc(100% / 4.7);
    position: relative;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 12px 16px;
}

.card-title {
    font-weight: bold;
    font-size: 1.1em;
    color: #3C6D8D;
}

.card-desc {
    color: #555;
    font-size: 0.95em;
    margin-top: 4px;
}

.heart {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    padding: 6px;
    font-size: 18px;
    color: #666;
    z-index: 2; display: none;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #E77621;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.nav-left {
    left: -20px;
}

.nav-right {
    right: -20px;
}

@media (max-width: 1024px) {
    .card {
        flex: 0 0 calc(100% / 3.5);
    }
}

@media (max-width: 768px) {
    .card {
        flex: 0 0 calc(100% / 2.5);
    }
    .card img {
        width: 100%;
        height: 150px; ;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .card {
        flex: 0 0 100%;
    }

    .nav-button {
        top: 50%;
        bottom: 10px;
        transform: none;
    }

    .nav-left {
        left: -18px;
    }

    .nav-right {
        right: -18px;
    }

    .card img {
        width: 100%;
        height: 250px; ;
        object-fit: cover;
    }
}

.footer {
    color: white;
    padding: 40px 20px 10px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 220px;
}

.footer-column h4 {
    margin-bottom: 12px;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px; font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column img {
    vertical-align: middle;
}

.powered {
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 20px 10px 0;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .powered {
        align-self: center;
        margin-top: 20px;
    }

    .footer-column {
        width: 100%;
    }
}
.container-filter {
    display: flex;
    flex-direction: column;
}

.filter-toggle {
    display: none;
    background: #333;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
}

.container-filter .filters {
    background: #f4f4f4;
    padding: 5px; border-radius: 5px;
}

.container-filter .filters h3 {
    color: #3C6D8D;
    margin-bottom: 0.5rem;
}

.container-filter .filters label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cards h2{
    color: #3C6D8D;
    margin-bottom: 0.5rem; font-weight: bold;
}
.container-filter .cards {
    padding: 1rem; padding-left: 20px;
}

.container-filter .card {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
}

.container-filter .card img {
    width: 100%;
    border-radius: 8px;
}

.container-filter .card-content {
    padding:5px 20px 0 10px;
}

.container-filter .card-content h4 {
    margin: 0.3rem 0;
    color: #3C6D8D;
}
.container-filter .card p,.cards p {
    color: #000; line-height: 24px;
}

.cards > p{
    padding: 10px 0; border-bottom: 1px solid #b1afaf; margin-bottom: 20px;
}

.card-content h4{
    font-weight: bold; font-size: 20px;
}
.card-img-wrapper {
    width: 250px;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0; margin-right: 10px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (min-width: 768px) {
    .container-filter {
        flex-direction: row;
    }

    .filter-toggle {
        display: none;
    }

   .container-filter .filters {
        width: 25%;
        display: block !important;
    }

    .container-filter .cards {
        width: 75%;
    }

    .container-filter  .card {
        flex-direction: row;
        align-items: flex-start;
    }

}

@media (max-width: 767px) {
    .container-filter .filters {
        display: none;
    }
}



.filtro-container {
    max-width: 300px;
    padding: 20px;
    color: #333;
}

.filtro-container h3 {
    color: #3C6D8D;
    font-size: 1.2rem;
    margin-bottom: 15px; font-weight: bold;
}

.filtro-container h4 {
    color: #3C6D8D;
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 1rem; font-weight: bold;
}

.filtro-lista,
.filtro-tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filtro-lista li,
.filtro-tags li {
    margin-bottom: 10px;
}

.filtro-lista label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}


.filtro-tags .tag {
    background-color: #3C6D8D;
    color: white;
    border: none;
    padding: 6px 10px;
    font-size: 0.85rem;
    border-radius: 5px;
    margin-bottom: 6px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
}

.filtro-tags .tag.ativo::before {
    content: "✔ ";
}

/* Responsivo */
@media (max-width: 480px) {
    .filtro-container {
        max-width: 100%;
        padding: 15px;
    }

    .filtro-tags .tag {
        font-size: 0.8rem;
        padding: 5px 8px;
    }

    .filtro-lista label {
        font-size: 0.9rem;
    }
}
/* Container do form */
.search-form {
    display: flex;
    width: 100%;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    background-color: white;
}


/* Campo de texto */
.search-form input[type="text"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1rem;
    outline: none;
    border: 1px solid #999;
    border-right: none;
    border-radius: 50px 0 0 50px;
}

/* Botão de busca */
.search-form button {
    width: 100px;
    background-color: #D54F49;
    border: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 50px 50px 0;
    cursor: pointer; border: 1px solid #D54F49;
    transition: background-color 0.3s;
}

.search-form button:hover {
    background-color: #F5BF41;
}


/* Ícone de lupa */
.search-form i.bi {
    font-size: 1.3rem; font-weight: bold;
}


/* Responsivo */
@media (max-width: 480px) {
    .search-form input[type="text"] {
        padding: 12px;
        font-size: 0.9rem;
    }

    .search-form button {
        width: 100%;
    }
}

.text h1 {
    font-size: 2.5rem;
    color: #3C6D8D;
    font-weight: bold;
    border-bottom: 3px solid #ed4e8a;
    display: inline-block;
    margin-bottom: 8px;
}

.text .subtitle {
    margin-top: 4px;
    color: #444;
    font-size: 0.95rem;
}

.text .buttons {
    display: flex;
    gap: 8px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.text .button {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: #f9f9f9;
    font-size: 0.9rem;
    cursor: pointer;
}

.text .image-container {
    margin: 16px 0;
}

.text .image-container img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.text .tabs {
    display: flex;
    gap: 12px;
    margin: 16px 0 8px;
    border-bottom: 1px solid #ccc;
}

.tabs span {
    padding-bottom: 4px;
    cursor: pointer;
    color: #666;
}

.text .tabs span.active {
    color: #3C6D8D;
    font-weight: bold;
    border-bottom: 2px solid #3C6D8D;
}

.text .description {
    font-size: 0.95rem;
    margin-top: 8px;
    line-height: 1.5;
    display: none;
}

.text .description.active {
    display: block;
}
.text .description p {
        color: #555555; line-height: 30px;
}

.info-lista {
    margin-top: 24px;
    border-top: 1px solid #ddd;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.info-item .icon {
    font-size: 1.2rem;
    color: #3C6D8D;
    width: 30px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.info-item .text {
    font-size: 0.95rem;
    color: #333;
}

.info-item .text a {
    color: #333;
    text-decoration: none;
    word-break: break-word;
    font-size: 0.95rem;
}

