.blocoPodcast {
    grid-column: span 12;
    grid-row: auto;
    position: relative;
    margin-top: 100px;
}
.blocoPodcast > h2 {
    font-family: 'RedHatDisplay-Regular', sans-serif;
    font-size: 100px;
    line-height: 110px;
    color: #FFFFFF;
    margin-bottom: 60px;
}
.blocoPodcast > h2 > b {
    font-family: 'RedHatDisplay-Bold', sans-serif;
    color: #009640;
}
.blocoPodcast > p {
    font-family: 'RedHatDisplay-Regular', sans-serif;
    font-size: 44px;
    line-height: 50px;
    color: #FFFFFF;
    margin-bottom: 12px;
    max-width: 590px;
}
.blocoPodcast > button {
    font-family: 'RedHatDisplay-Bold', sans-serif;
    font-size: 20px;
    line-height: 22px;
    color: #009640;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    cursor: pointer;
}
.blocoPodcast > button > img {
    border: 1px solid #009640;
    width: 62px;
    height: 62px;
    border-radius: 50%;
}
.blocoPodcast > div {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.blocoPodcast > div > figure {
    width: 590px;
    min-width: 590px;
    height: 332px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.blocoPodcast > div > figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}
.blocoPodcast > div > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blocoPodcast > div > figure > div {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}
.blocoPodcast > div > figure > div > img {
    box-shadow: 0px 30px 30px #0000000D;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    width: 68px;
    height: 68px;
}
.blocoPodcast > div > figure > div > h3 {
    font-family: 'RedHatDisplay-Regular', sans-serif;
    font-size: 26px;
    line-height: 32px;
    color: #FFFFFF;
}
.blocoPodcast > div > .bloco-podcast-splide.splide {
    width: 720px;
}
.blocoPodcast > div > .bloco-podcast-splide.splide li {
    display: flex;
    flex-direction: column;
    gap: 44px;
    cursor: pointer;
}
.blocoPodcast > div > .bloco-podcast-splide.splide li > img {
    width: 220px;
    height: 220px;
    box-shadow: 0px 30px 30px #0000000D;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
}
.blocoPodcast > div > .bloco-podcast-splide.splide li > h2 {
    font-family: 'RedHatDisplay-Regular', sans-serif;
    font-size: 26px;
    line-height: 32px;
    color: #FFFFFF;
}
.blocoPodcast > div > .bloco-podcast-splide.splide li > a {
    display: flex;
    flex-direction: column;
    gap: 44px;
}
.blocoPodcast > div > .bloco-podcast-splide.splide li > a > img {
    width: 220px;
    height: 220px;
    box-shadow: 0px 30px 30px #0000000D;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
}
.blocoPodcast > div > .bloco-podcast-splide.splide li > a > h2 {
    font-family: 'RedHatDisplay-Regular', sans-serif;
    font-size: 26px;
    line-height: 32px;
    color: #FFFFFF;
}
.blocoPodcast > div > .bloco-podcast-splide.splide .splide__arrow--prev {
    left: -65px;
}
.blocoPodcast > div > .bloco-podcast-splide.splide .splide__arrow--next {
    right: -65px;
}
.blocoPodcast > div > .bloco-podcast-splide.splide .splide__arrow {
    background: unset;
    width: 70px;
    height: 70px;
}
.blocoPodcast > div > .bloco-podcast-splide.splide .splide__arrow > svg {
    fill: #009640;
    width: 100px;
    height: 100px;
}
.blocoPodcast > a {
    font-family: 'RedHatDisplay-Bold', sans-serif;
    font-size: 28px;
    line-height: 32px;
    color: #009640;
    border: 2px solid #009640;
    border-radius: 43px;
    padding: 24px 0;
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 80px;
}
.blocoPodcast > a:hover {
  background-color: #009640;
  color: #fff;
}
.blocoPodcast > .bg-podcast-microfone {
    position: absolute;
    right: 0;
    top: -200px;
    width: 544px;
    height: 464px;
}
.modalBlocoPodcast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modalBlocoPodcast-content {
    position: relative;
    max-width: 90%;
    width: 800px;
    max-height: 90%;
    aspect-ratio: 16 / 9;
}
.modalBlocoPodcast-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.modalBlocoPodcast-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: #f00;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
}
.modalBlocoPodcast-close:hover {
    background: #c00;
}
@media screen and (max-width: 768px) {
    .blocoPodcast {
        grid-column: 1/-1;
        grid-row: auto;
        position: relative;
        margin-top: 190px;
    }
    .blocoPodcast > h2 {
        font-size: 38px;
        line-height: 40px;
        margin-bottom: 28px;
        text-align: center;
    }
    .blocoPodcast > p {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 32px;
        max-width: unset;
        text-align: center;
    }
    .blocoPodcast > button {
        font-size: 18px;
        line-height: 20px;
        margin: 0 auto 12px;
    }
    .blocoPodcast > button > img {
        width: 30px;
        height: 30px;
    }
    .blocoPodcast > div {
        flex-direction: column;
        gap: 70px;
    }
    .blocoPodcast > div > figure {
        width: 100%;
        min-width: unset;
        height: 200px;
        box-shadow: 0px 15px 30px #00000029;
        border-radius: 20px;
        overflow: visible;
    }
    .blocoPodcast > div > figure > img {
        border-radius: 20px;
    }
    .blocoPodcast > div > figure:after {
        border-radius: 20px;
    }
    .blocoPodcast > div > figure > div {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -45px;
    }
    .blocoPodcast > div > figure > div > img {
        display: none;
    }
    .blocoPodcast > div > figure > div > h3 {
        font-size: 16px;
        line-height: 32px;
        white-space: nowrap;
    }
    .blocoPodcast > div > .bloco-podcast-splide.splide {
        width: 100%;
    }
    .blocoPodcast > div > .bloco-podcast-splide.splide li {
        max-width: 80px;
    }
    .blocoPodcast > div > .bloco-podcast-splide.splide li > img {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }
    .blocoPodcast > div > .bloco-podcast-splide.splide li > h2 {
        display: none;
    }
    .blocoPodcast > div > .bloco-podcast-splide.splide li > a {
        max-width: 80px;
    }
    .blocoPodcast > div > .bloco-podcast-splide.splide li > a > img {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }
    .blocoPodcast > div > .bloco-podcast-splide.splide li > a > h2 {
        display: none;
    }
    .blocoPodcast > a {
        font-size: 16px;
        line-height: 18px;
        padding: 15px 0;
        margin-top: 30px;
    }
    .blocoPodcast > .bg-podcast-microfone {
        top: -200px;
        width: 172px;
        height: 162px;
    }
    .modalBlocoPodcast-close {
        right: 0;
    }
}
@media screen and (min-width: 1460px) {
    .blocoPodcast > .bg-podcast-microfone {
        right: calc(-1 * (50vw - 670px))!important;
    }
}
@media (min-width: 1200px) and (max-width: 1459px) {
    .blocoPodcast > .bg-podcast-microfone {
        right: calc(-1 * (50vw - 540px))!important;
    }
}