.txt-break {
    word-break: break-word;
}
.moduleCollapse .collapse, .moduleCollapse .collapsing {
    height: 4.2rem;
}
.moduleCollapse .collapse {
    position: relative;
    display: block;
    overflow: hidden;
}
.moduleCollapse .collapse:before {
    content: ' ...';
    position: absolute;
    right: 5px;
    bottom: -5px;
}
.moduleCollapse .collapse.show {
    height: auto;
}
.moduleCollapse .collapse.show:before {
    display: none;
}
@media (min-width: 648px) {
    .bgBannerColor {
        /* background-color: rgba(255,255,255,0.85) !important; */
        background-color: rgba(0,0,0,0.50) !important;
    }
    .bgBannerColorTitle {
        color: white !important;
    }
    .bgBannerColorDesc{
        color: white !important;
    }
    .bgBannerColorButton{
        color: white !important;
        border: 1px solid white;
    }
}
@media (min-width: 992px) {
    .termoInfo {
        display: none;
    }
}
/* Barra de search start */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 25px;
    max-width: 70%;
    margin: 20px auto;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-input {
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 25px;
    outline: none;
    font-size: 16px;
}

.search-actions {
    display: flex;
    align-items: center;
    padding-right: 5px;
}

.portal-search-button {
    background-color: #00579B;
    border: none;
    width: 45px;
    height: 48px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 5px;
    margin-right: -20px;
}

.filter-btn {
    background: none;
    border: none;
    color: #666;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}
.portal-search-button i {
    color: white;
    font-size: 16px;
}
.portal-search-button:hover {
    background-color: #f0f0f0;
}
.portal-search-button:hover i {
    color: #00579B;
}

.filter-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 100;
    padding: 20px;
    text-align: left;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.filter-item label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.filter-item select {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

.filter-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-apply { background: #00579B; color: white; border: none; padding: 8px 15px; border-radius: 8px; cursor: pointer; }
.btn-reset { background: #eee; color: #666; border: none; padding: 8px 15px; border-radius: 8px; cursor: pointer; }

@media (max-width: 780px) {
    .search-container { max-width: 95%; }
    .filter-grid { grid-template-columns: 1fr; }
}
/* Barra de search end */