#sobre,
#tratamentos,
#clubedobotox,
#instagram,
#contato {
    padding: 40px 0;
}

.cta a {
    display: inline-block;
    border: 2px solid var(--rosa-forte);
    color: var(--rosa-forte);
    display: inline-block;
    border-radius: 5px;
    font-size: 1.3rem;
    padding: 10px 15px;
    transition: all .3s;
}

.cta a:hover {
    background-color: var(--rosa-forte);
    color: #fff;
}

/* TRATAMENTOS */
/* TRATAMENTOS */
#tratamentos {
    background-image: url(/assets/images/comp/4.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Container do Owl Carousel - ajusta altura conforme conteúdo */
#tratamentos .owl-carousel .item {
    height: auto !important; /* força o container a seguir a altura do conteúdo */
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
}

/* Card do procedimento */
#tratamentos .card-proc {
    position: relative;
    max-width: 80vw;
    margin: 20px auto;
    overflow: hidden;
}

/* Imagem do card */
#tratamentos .card-proc img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Overlay que aparece no hover */
#tratamentos .card-proc .content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(227, 190, 195, 0.6);
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s;
    overflow-y: auto;
}

/* Overlay aparece ao passar o mouse */
#tratamentos .card-proc:hover > .content {
    bottom: 0;
}

/* Ajustes para mobile */
@media (max-width: 767px) {
    #tratamentos .card-proc {
        max-width: 90vw;
    }

    #tratamentos .card-proc .content {
        padding: 24px;
    }

    #tratamentos .card-proc h3 {
        font-size: 1.4rem;
    }

    #tratamentos .card-proc p {
        font-size: 1rem;
    }
}
