/* Especialidades */
section.especialidades {
    margin-bottom: 170px;
}

section.especialidades h2 {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

section.especialidades p.subtitle {
    text-align: center;
    font-size: 18px;
    color: #000;
    padding-bottom: 80px;
    max-width: 620px;
    margin: auto;
}

section.especialidades h2:before,
section.especialidades h2:after {
    content:'';
    width: 100px;
    height: 1px;
    display: block;
    height: 1px;
    background: #dedede;
}

section.especialidades .boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

section.especialidades .box {
    position: relative;
    width: 100%;
    height: 500px;
    display: block;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

section.especialidades .box .background {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: all .2s;
}

section.especialidades .box:hover .background {
    transform: scale(1.05);
}

section.especialidades .box a {
    position: absolute;
    z-index: 15;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    outline-offset: -10px;
}

section.especialidades .box .icone {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}

section.especialidades .box .icone img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section.especialidades .content {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    padding: 30px;
    min-width: 100%;
}

section.especialidades .box h3 {
    text-align: center;
    z-index: 6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    font-size: 24px;
    transition: .5s;
    margin-bottom: 15px;
}

section.especialidades p {
    color: #fff;
    text-align: center;
    line-height: 24px;
}

section.especialidades .box:hover h3 {
    bottom: 45px;
}

section.especialidades .box h3:after {
    content:'';
    width: 0;
    height: 2px;
    display: block;
    background: #fff;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}

section.especialidades .box:hover h3::after {
    width: 100px;
}


/* Section Frase */
section.frase {
    background: url(../img/bg-frase.jpg) center center no-repeat;
    background-size: cover;
    display: block;
    padding: 100px 0;
}

section.frase h2 {
    font-size: 36px;
    color: #fff;
    text-align: center;
    font-weight: 300;
    margin: 0;
    padding: 0 100px; 
    line-height: 1.5;
}

section.frase h2:before {
    content:'“';
    font-weight: bold;
    color: #fff;
    font-family: var(--font);
    margin-right: 10px;
    font-size: 36px;
    display: inline-block;
}

section.frase h2:after {
    content:'„';
    font-weight: bold;
    color: #fff;
    font-family: var(--font);
    margin-left: 10px;
    font-size: 36px;
    display: inline-block;
}



/* Benefícios */
section.beneficios {
    padding: 120px 0;
    background: #f9f9f9;
    border-top: 1px #dedede solid;
}

section.beneficios h2 {
    gap: 40px;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 130px;
    color: var(--azul);
}

section.beneficios h2::after {
    content: '.';
    color: var(--verde);
}

section.beneficios .owl-carousel .owl-stage-outer {
    overflow: visible;
}

section.beneficios .item {
    border: 1px #dedede solid;
    border-radius: 10px;
    padding: 40px;
    background: #fff;
}

section.beneficios .item .icone {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--azul);
    border-radius: 50%;
    margin-top: -90px;
}

section.beneficios .item .icone svg {
    width: 60px;
    height: 60px;
    fill: #fff;
}

section.beneficios .item img {
    display: block;
    width: auto;
    margin: auto;
}

section.beneficios .item h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
}

section.beneficios .item p {
    line-height: 24px;
    font-size: 15px;
    color: #333;
}

section.beneficios .owl-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 0;
    top: -190px;
}

section.beneficios .owl-nav button {
    border: 3px var(--azul) solid !important;
    border-radius: 50px;
    width: 75px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.beneficios .owl-nav button svg {
    width: 35px;
    height: 35px;
    fill: var(--azul);
}

section.beneficios .owl-nav button:hover svg {
    fill: #fff;
}

section.beneficios .owl-nav button:hover {
    background: var(--verde);
    border: 3px var(--verde) solid !important;
}

section.beneficios button.owl-prev {
    transform: rotate(180deg);
}


/* Numeros */
section.numeros {
    background: url(../img/bg-numeros.jpg) center center no-repeat;
    background-size: cover;
    color: #fff;
    padding: 120px 0;
}

section.numeros h2 {
    font-size: 42px;
    font-weight: bold;
    text-align: center;   
    margin-bottom: 15px;
}

section.numeros h2::after {
    content: '.';
    color: var(--verde);
}

section.numeros h3 {
    font-size: 24px;
    color: #8dbbdd;
    text-align: center;
    margin-bottom: 70px;
}


section.numeros .blocos {
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: center;
}

section.numeros .blocos.secundarios {
    border-top: 1px #1c547e solid;
    margin-top: 30px;
    padding-top: 30px;
    justify-content: space-between;
}

section.numeros .bloco {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 15px;
}

section.numeros .bloco .icone {
    width: 110px;
    height: 110px;
    background: #1e679e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.numeros .blocos.secundarios .icone {
    width: 85px;
    height: 85px;
}

section.numeros .bloco .icone svg {
    fill: #fff;
    width: 65px;
    height: 65px;
}

section.numeros .blocos.secundarios .icone svg {
    width: 50px;
    height: 50px;
}

section.numeros .bloco h4 {
    position: relative;
    font-size: 44px;
    font-weight: bold;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

section.numeros .blocos.secundarios .bloco h4 {
    font-size: 34px;
    color: var(--verde);
}

section.numeros .blocos.secundarios .bloco h4 {
    margin-bottom: 0;
}

section.numeros .bloco h4::after {
    content: '';
    background: red;
    width: calc(100% + 15px);
    height: 2px;
    display: block;
    position: absolute;
    bottom: 0;
    left: -15px;
}

section.numeros .blocos.secundarios .bloco h4::after {
    display: none;
}

section.numeros .bloco h5 {
    font-size: 18px;
}



