.card {
    background-color: white;
    border-radius: 20px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    border: unset;
    overflow: hidden;
    margin: 16px;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    height: 100%;
    /* Faz o card ter altura total */
}

.card .card-body {
    padding: 1rem 2rem;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card.highlighted {
    opacity: 0.5;
}

.card.active {
    opacity: 1;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h1 {
    font-size: 28px;
}

.card-content {
    padding: 20px;
}

.card-content h2 {
    margin-top: 0;
    color: #8c1aff;
}

.card-content p {
    margin-bottom: 20px;
}

.btn {
    background-color: #ffffff;
    color: var(--facilcred-color);
    border-color: var(--facilcred-color);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

.main-index .img-fluid {
    max-width: 100%;
    height: auto;
}

.private-offer,
.particular-offer {
    background-color: #FFF;
}

.tabs-header {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.tabs-container {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.tabs {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
}

.tab {
    flex: 1;
    padding: 12px 20px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    border-radius: 20px;
}

.tabb {
    flex: 1;
    padding: 12px 20px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    border-radius: 20px;
}


.tab.active {
    background-color: #E1540F;
    border-top-right-radius: 1px;
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
    font-weight: bold;
}

.tabb.active {
    background-color: #E1540F;
    border-top-left-radius: 1px;
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 1px;
    font-weight: bold;
}

.tab-content {
    padding: 20px;
}

.particulars-content,
.companies-content {
    display: none;
}

.particulars-content.active,
.companies-content.active {
    display: block;
}

.card-read-more {
    position: absolute;
    margin-bottom: .5rem;
    bottom: 0;
}