/* Estilos para os cards de destaque */

/* Container para o carrossel */
.benefits-slider-container {
    position: relative;
    padding: 20px 0;
    width: 100%;
}

.benefits-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.benefits-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.benefits-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-nav-button {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
    color: #d53959;
}

.slider-nav-button:hover {
    background-color: #d53959;
    color: white;
}

/* Estilos do card */
.benefit-card {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    min-width: 300px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card .heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 235, 235, 0.7);
    border-radius: 5px;
    color: #d53959;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-card .heart-icon.active {
    background-color: #d53959;
    color: white;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 2rem;
    color: #d53959;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.benefit-card .separator {
    width: 30%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px auto;
}

.benefit-card .button-btn {
    margin-top: auto;
}