.specialty-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-image: url('/assets/imgs/ambiente-de-atendimento-odontológico.jpeg');
    background-size: cover;
    background-position: center;
}

.specialty-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.75);
}

.specialty-hero-content {
    position: relative;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.specialty-hero-content p {
    font-size: 1.3rem;
}

.specialty-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.specific-specialty-img {
    width: 100%;
    height: 100%;
    max-width: 420px;
    object-fit: cover;
    border-radius: 16px;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.specific-specialty-banner .split-layout > div:last-child {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 3;
}

.specialty-subsection + .specialty-subsection,
.split-layout-tight + .split-layout-tight,
.section + .section-tight,
.section-tight + .section {
    border-top: 1.8px solid rgba(25, 16, 43, 0.09);
}

.specialty-subtype-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 8rem 0;
}

.specialty-subtype {
    font-size: 1.4rem;
    font-weight: 500;
}

.specialty-description {
    margin-top: 1rem;
    line-height: 1.5;
    font-size: 1.2rem;
}

.specialty-specifics-divider {
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 8rem;
    margin-top: 2rem;
}

.specialty-subtype-img {
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 380px;
    object-fit: cover;
    margin: 5rem 0;
    height: auto;
    aspect-ratio: 16 / 10;
    flex-shrink: 0;
}

.benefit-card {
    background: var(--secondary-bg-color);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-card p {
    max-width: 32ch;
}

.benefit-card h3 {
    font-weight: 600;
}

.process .section-title {
    padding: 2rem;
}

.process {
    max-width: 940px;
    margin: auto;
    padding: 0 auto;
    background: var(--secondary-bg-color);
    padding: 1.75rem 2rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.process-step h3 {
    color: var(--primary-color);
}

.process .grid-3 {
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

@media (max-width: 1100px) {
    .specialty-subtype-title {
        margin: 0;
    }

    .specialty-description {
        padding-bottom: 2rem;
    }
}