section.especialidades {
    padding-bottom: 30px;
}
section.especialidades .text-introduction{
    padding-top: 40px;
    padding-bottom: 8px;
    margin: 0 auto;
    width: 990px;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}
section.especialidades .text-introduction:before{
    content: "";
    position: absolute;
    width: 95%;
    height: 2px;
    background-color: #b5a073;
    bottom: 0;
}
section.especialidades .text-introduction p{
    font-size: 16.67px;
    font-weight: 500;
}
section.especialidades .wrapper {
    display: flex;
    flex-direction: column;
}
section.especialidades .wrapper .main{
    display: flex;
    gap: 70px;
}
section.especialidades .box-options{
    position: relative;
    width: 419px;
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}
section.especialidades .box-options:before{
    content: "";
    position: absolute;
    width: 428px;
    height: 479px;
    background-image: url("../img/especialidades/assets_top.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: -20px;
    right: -50px;
    transform: scale(1.2);
    z-index: -1;
    pointer-events: none;
}
section.especialidades .box-options a{
    z-index: 2;
    position: relative;
    width: 100%;
    display: inline-flex;
    align-items: center;
    padding: 5px;
    padding-left: 10px;
    background-color: #B7A377;
    color: #fff;
    font-size: 20.83px;
    transition: all .4s ease-in-out;
    gap: 5px;
}
section.especialidades .box-options a i{
    transition: all .4s ease-in-out;
    opacity: 0;
    font-size: 28px;
}
section.especialidades .box-options a:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #145b42;
    left: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease-in-out;
}
section.especialidades .box-options a.active,
section.especialidades .box-options a:hover{
    background-color: transparent;
}
section.especialidades .box-options a.active i,
section.especialidades .box-options a:hover i{
    opacity: 1;
}
section.especialidades .box-options a.active:before,
section.especialidades .box-options a:hover:before{
    transform: scaleX(1);
}
section.especialidades .content-especialidade{
    width: 738px;
    transform: translateY(-13px);
}
section.especialidades .content-especialidade h3{
    -webkit-text-stroke: 0.3px var(--marrom);
    font-weight: 500;
    font-size: 20.83px;
    margin-bottom: 8px;
}
section.especialidades .content-especialidade h4{
    font-size: 16.67px;
    font-style: italic;
    font-weight: 500;
    -webkit-text-stroke: 0.3px var(--marrom);
}
section.especialidades .content-especialidade p{
    font-size: 16.67px;
    font-weight: 500;
    margin-bottom: 22px;
}
section.especialidades .content-especialidade .row{
    margin-bottom: 40px;
}
section.especialidades .content-especialidade .row h4{
    margin-bottom: 15px;
}
section.especialidades .content-especialidade .row ul {
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    row-gap: 13px;
}
section.especialidades .content-especialidade .row ul li{
    font-size: 16.67px;
    font-weight: 500;
}
section.especialidades .content-especialidade .row ul li::marker{
    font-size: 0.7em;
}
section.especialidades .gallery{
    position: relative;
    width: 100%;
    height: 327px;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(80px, 0.8fr) 0.8fr 1fr 1fr minmax(80px, 0.85fr);
    grid-template-areas: 
    "image1 image1 image2 image2 image5"
    "image1 image1 image2 image2 image5"
    "image1 image1 image3 image4 image5"
    "image1 image1 image3 image4 image5"
    "image1 image1 image3 image4 image5";
    margin-bottom: 50px;
}
section.especialidades .gallery:before{
    content: "";
    position: absolute;
    width: 512px;
    height: 640px;
    background-image: url("../img/especialidades/assets_bottom.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: -65px;
    right: -40px;
    z-index: -1;
    pointer-events: none;
}
section.especialidades .gallery .image{
    cursor: pointer;
    overflow: hidden;
    display: inline-flex;
    background-color: red;
}
section.especialidades .gallery .image:hover img{
    filter: none;
}
section.especialidades .gallery .image img{
    transition: all .3s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.especialidades .gallery .image1{
    grid-area: image1;
}
section.especialidades .gallery .image2{
    grid-area: image2;
}
section.especialidades .gallery .image3{
    grid-area: image3;
}
section.especialidades .gallery .image4{
    grid-area: image4;
}
section.especialidades .gallery .image5{
    grid-area: image5;
}
section.especialidades .video{
    display: flex;
    justify-content: center;
    width: 660px;
    height: 361px;
    display: inline-flex;
    margin: 0 auto;
    background-color: red;
}
section.link-footer{
    background-color: var(--marrom);
}
section.link-footer .wrapper h4{
    background-color: #c8bca1;
    color: #fff;
}
section.lead{
    background-image: url("../img/leads/especialidades.webp");
}
section.lead .box-form h3,
section.lead .box-form .group-link label{
    color: var(--marrom);
}
section.lead .box-form .wrapper {
    row-gap: 20px;
}
section.lead .box-form .group-link input{
    background-color: var(--marrom);
    color: #fff;
}
section.lead .box-form .group-link input::placeholder{
    color: #fff
}

section.lead .box-form .group-terms label,
section.lead .box-form .group-terms label a{
    color: var(--marrom) !important;
}
section.lead .box-form .group-button{
    margin-top: 0;
}
section.lead .box-form button{
    color: #fff !important;
    background-color: var(--marrom) !important;
}


@media(max-width: 768px) {
    section.especialidades {
        overflow-x: hidden !important;
    }
    section.especialidades .text-introduction{
        width: 100%;
    }
    section.especialidades .wrapper .main{
        flex-direction: column;
    }
    section.especialidades .box-options{
        width: 100%;
    }
    section.especialidades .content-especialidade{
        transform: none;
        width: 100%;
    }
    section.especialidades .gallery{
        grid-template-areas: 
        "image1"
        "image2"
        "image3"
        "image4"
        "image5";
        height: auto;
        grid-template-columns: auto;
    }
    section.especialidades .gallery .image{
        width: 100%;
        height: 300px;
    }
    section.especialidades .video{
        width: 100%;
    }
}