/* ========== BANNER DO TRATAMENTO ========== */

.banner-tratamento {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-tratamento .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 79, 128, 0.6); /* azul escuro com transparência */
}

.titulo-banner {
    position: relative;
    color: #fff;
    font-size: 2.5rem;
    z-index: 2;
    text-align: center;
    font-weight: bold;
}

/* ================== TRATAMENTOS - LANDING PAGE ================== */
.tratamento-landing {
    margin-top: 100px; /* Garante que o conteúdo não fique atrás do menu fixo */
}

.tratamento-landing h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #084f80;
    margin-bottom: 1.5rem;
}

.conteudo-tratamento {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 2rem;
}

.conteudo-tratamento img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tratamento-landing .btn {
    font-size: 1.125rem;
    padding: 12px 32px;
}

/* Responsivo */
@media (max-width: 768px) {
    .tratamento-landing h1 {
        font-size: 2rem;
    }

    .conteudo-tratamento {
        font-size: 1rem;
    }

    .tratamento-landing .btn {
        width: 100%;
    }
}
