/* Corpo Clínico */
section.corpo__clinico {
    padding: 150px 0;
}

section.corpo__clinico h2 {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
}

section.corpo__clinico h2:before,
section.corpo__clinico h2:after {
    content:'';
    width: 100px;
    height: 1px;
    display: block;
    height: 1px;
    background: #dedede;
}

section.corpo__clinico .boxes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 100%;
}

section.corpo__clinico .box {
    box-shadow: 0 0 50px #00000021;
    background: #fff;
    text-align: center;
    padding: 5px;
    transition: all .5s;
}

section.corpo__clinico .box:hover {
    transform: scale(1.05);
    position: relative;
    z-index: 99;
}

section.corpo__clinico .box img.perfil {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

section.corpo__clinico .box .social {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--marrom);
    width: 70px;
    justify-content: space-between;
    padding:5px 0;
    border-radius: 50px;
    margin: auto;
    margin-top: -15px;
    position: relative;
    z-index: 2;
}

section.corpo__clinico .box .social svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

section.corpo__clinico .box .social a:hover svg {
    fill: #ffc0b4
}

section.corpo__clinico .box h3 {
    font-weight: 600;
    color: #000;
    font-size: 16px;
    margin-top: 20px;
}

section.corpo__clinico .box p.cargo {
    color: #a66156;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 13px;
}

section.corpo__clinico .box a {
    width: 100%;
    text-align: center;
}

section.corpo__clinico a.cta__primary {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    margin-bottom: 5px;
    font-weight: 600;
}

section.corpo__clinico a.cta__primary i {
    display: table;
    width: 2px;
    height: 20px;
    background: var(--marrom);
    margin-right: 10px;
    position: relative;
}

section.corpo__clinico a.cta__primary i::before {
    content: '';
    width: 20px;
    height: 2px;
    display: block;
    position: absolute;
    left: -9px;
    top: 9px;
    background: var(--marrom);
}

section.corpo__clinico a.cta__primary:hover i, 
section.corpo__clinico a.cta__primary:hover i::before {
    background: #fff;
}

section.corpo__clinico .agendamento {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px #3b8400 solid;
    color: #333;
    font-weight: 600;
    gap: 10px;
    text-transform: uppercase;
    padding: 10px;
    transition: all .4s;
}

section.corpo__clinico .agendamento svg {
    width: 20px;
    height: 20px;
    fill: #3b8400;
}

section.corpo__clinico .agendamento:hover {
    background: #3b8400;
    color: #fff;
}

section.corpo__clinico .agendamento:hover svg {
    fill: #fff;
}
