.social-media-section {
    display: flex;
    flex-direction: column;
    gap: 63px;
    padding: 335px 0 352px 0;
}

.social-media-section > h2 {
    font-family: 'InterTight-Regular';
    font-weight: normal;
    font-size: 70px;
    line-height: 100px;
    color: #222222;
    text-align: center;
    margin: 0;
}

.social-media-section > h2 > strong {
    font-family: 'InterTight-Bold';
    font-weight: bold;
    color: #FC743F;
}

.social-media-section > .social-media-container {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-family: 'InterTight-Regular';
    color: #FFFFFF;
}
.social-media-behance-img {
    position: absolute;
    box-shadow: 0px 10px 20px #00000033;
    border-radius: 26px;
    width: 380px;
    height: 380px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.social-media-section > .social-media-container > .social-media-box {
    position: relative;
    width: 436px;
    height: 662px;
}

.social-media-section > .social-media-container > .social-media-box > .social-media-background {
    position: absolute;
    z-index: 0;
}

.social-media-section > .social-media-container > .social-media-box > .social-media-header {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    z-index: 1;
    padding: 22px 28px 28px 28px;
    box-sizing: border-box;
}

.social-media-section > .social-media-container > .social-media-box > .social-media-header > .behance-title {
   font-size: 24px;
   /* tem que adicionar a font jakarta sans  */
   font-weight: bold;
}

.social-media-section > .social-media-container > .social-media-box > .social-media-header > .instagram-title {
    font-size: 24px;
    font-family: 'InterTight-SemiBold';
    font-weight: 500;
 }

/* Estilos do carrossel */
.splide__slide img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 26px;
  }

  /* Centralizando o carrossel */
  .splide {
    width: 380px;
    margin: 104px auto;
  }

  /* Personalizando os pontinhos (indicadores de paginação) */
  .splide__pagination {
    display: flex;
    justify-content: center;
    gap: 18px;
    bottom: 0;
  }

  .splide__pagination__page {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    margin: 0;
    bottom: -58px;
  }

  .splide__pagination__page.is-active {
    width: 28px;
    height: 28px;
    background-color: #FEFEFE;
    transform: none;
    border: none;
  }

 .social-media-section > .social-media-container > .social-media-box > .social-media-cta-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 28px;
    left: 29px;
    z-index: 1;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 26px;
    font-size: 22px;
    font-family: 'InterTight-Regular';
    font-weight: normal;
    width: 380px;
    height: 52px;
    text-decoration: none;
 }

 .social-media-section > .social-media-container > .social-media-box > .social-media-cta-button > span > strong {
    font-weight: bold;
    font-family: 'InterTight-Bold';
 }

 @media (max-width: 769px) {
    .social-media-section {
        gap: 32px;
        padding: 110px 0 120px 0;
    }
    
    .social-media-section > h2 {
        font-size: 38px;
        line-height: 44px;
        text-align: start;
        padding: 0 20px;
    }
    
    .social-media-section > .social-media-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        width: 100%;
        padding: 0 20px;
    }
    
    .social-media-section > .social-media-container > .social-media-box {
        position: relative;
        width: 100%;
        height: 480px;
    }

    .social-media-section > .social-media-container > .social-media-box > .social-media-background {
        width: 100%;
        height: 480px;
        object-fit: cover;
        border-radius: 30px;
    }
    
    .social-media-section > .social-media-container > .social-media-box > .social-media-header {
        gap: 8px;
        padding: 12px;
    }

    .social-media-section > .social-media-container > .social-media-box > .social-media-header > img {
        width: 38px;
        height: 38px;
     }

    .social-media-section > .social-media-container > .social-media-box > .social-media-header > .behance-title {
        font-size: 16px;
     }
    
    .social-media-section > .social-media-container > .social-media-box > .social-media-header > .instagram-title {
        font-size: 16px;
     }
    
    .splide__slide img {
        width: 296px;
        height: 296px;
        border-radius: 18px;
    }

    .splide {
        width: 296px;
        margin: 60px auto;
    }

    .splide__pagination {
        gap: 16px;
        bottom: 0;
    }

    .splide__pagination__page {
        width: 12px;
        height: 12px;
        bottom: -44px;
    }

    .splide__pagination__page.is-active {
        width: 20px;
        height: 20px;
        bottom: -47px;
    }
    
     .social-media-section > .social-media-container > .social-media-box > .social-media-cta-button {
        bottom: 12px;
        left: 50%;   
        transform: translate(-50%, -50%);
        font-size: 18px;
        width: 296px;
        height: 44px
     }
     .social-media-behance-img {
        width: 320px;
        height: 313px;
        top: 66px;
        transform: translate(-50%);
     }
}