body, p {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

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

#sobre,
#tratamentos,
#clubedobotox,
#in.secao-contato .info-contato {
    margin-top: 1.5rem;
}

.menu-links.menu-desktop a {
    color: white;
    font-weight: 600;
    padding: 5px 10px;
}

.menu-links.menu-desktop a:hover {
    color: #fff;
}

.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: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.6s ease;
    overflow-y: auto;
    color: #fff; /* Cor do texto branca para melhor contraste */
    display: flex;
    align-items: flex-end;
}

.redes-sociais-footer a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.redes-sociais-footer a:hover {
    color: var(--rosa-forte);
}

.redes-sociais-footer a:last-child {
    margin-right: 0;
}

.menu-desktop-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.redes-sociais-navbar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.redes-sociais-navbar a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.redes-sociais-navbar a:hover {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Banner Text */
.banner-text-container {
    position: absolute;
    top: 8%;
    left: 5%;
    color: white;
    max-width: 600px;
    z-index: 10;
    animation: slideInFromLeft 1.2s ease-out forwards;
    opacity: 0;
    padding: 0;
}

.banner-text-container h1, .banner-text-container h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.banner-text-container p {
    font-size: 1.6rem;
    margin-top: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Destaque para palavras-chave */
.highlight {
    color: #ff9eb9; /* Rosa mais claro que o rosa-forte (#f67599) */
    font-weight: 700;
}

/* Navbar com fundo rosa e animação */
.animated-navbar {
    background: linear-gradient(to right, #ffd6e4, #ffb6c9) !important;
    animation: fadeInDown 0.8s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.animated-navbar:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.logo-img {
    max-height: 60px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner overlay com gradiente */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0) 100%);
    z-index: 5;
}

/* 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;
    }
}

/* Footer sutil e compacto */
footer img {
    max-width: 120px;
    margin-bottom: 10px;
}

footer .copyright {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

footer .links-footer {
    font-size: 0.8rem;
    margin-bottom: 0;
}

footer .links-footer a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer .links-footer a:hover {
    color: #555;
}

.redes-sociais-footer {
    margin: 0;
}

.redes-sociais-footer a {
    font-size: 1.2rem;
    margin: 0 8px;
}
