
.bloco-saude {
    font-family: 'Figtree',sans-serif;
}
.botoes-tabs {
    margin: 1.5rem 0;
    text-align: center;
}
.tab-btn {
    background: white;
    border: 1px solid #ccc;
    padding: 0.6rem 1.2rem;
    margin-right: 0.5rem;
    border-radius: 60px;
    cursor: pointer;
    font-family: 'Figtree', sans-serif!important;
    font-size:23px!important;
    color: #006250!important;
        width: 22%;
}
.tab-btn.ativo {
    background: #006250;
    color: white;
    font-family: 'Figtree', sans-serif!important;
    font-size:23px!important;
    color: #fff!important;
}
.bloco-swiper {
    width: 100%;
}
.conteudo-slide {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border: 1px solid #ccc;
    border-radius: 0 2rem 0 2rem;
    overflow: hidden;
}
.slide-text {
    flex: 1;
    padding: 2rem;
    background: #f4f4f4;
    font-family: 'Figtree', sans-serif!important;
    font-size:20px!important;
    color: #006250;
}
.slide-text h4 {
    color: #006250;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Figtree', sans-serif!important;
    font-size:16px!important;
}
.slide-text h3 {
    color: #006250;
    font-family: 'Figtree', sans-serif!important;
    font-size:31px!important;
}
.slide-text ul {
    padding-left: 1rem;
}
.slide-button {
    display: none;
    margin-top: 1rem;
    background: white;
    border: 1px solid #006250;
    color: #006250;
    border-radius: 20px;
    padding: 0.4rem 1rem;
    cursor: pointer;
}
.slide-img {
    flex: 1;
}
.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.tab-btn:hover {
    background: #006250;
    color: white!important;
    border-color: #006250;
}


/* Responsivo */
@media (max-width: 768px) {
    .conteudo-slide {
        flex-direction: column;
    }
    .slide-img, .slide-text {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .slide-img img {
        height: auto;
        border-radius: 0 0 2rem 2rem;
    }
    .botoes-tabs {
        flex-wrap: wrap;
    }
    .tab-btn {
        margin-bottom: 0.5rem;
    }
}


/* Transições suaves */
.conteudo-slide {
    transition: all 0.4s ease-in-out;
}
.slide-img img {
    transition: transform 0.4s ease-in-out;
}
.slide-img img:hover {
    transform: scale(1.02);
}

/* Swiper animation (já é por padrão suave, mas garantimos) */
.swiper-slide {
    transition: transform 0.4s ease-in-out;
}
