
.carrossel-cp {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Para suporte a iOS */
    width: 100%;
    max-width: 1280px;
    height: auto; /* Defina a altura conforme necessário */
    margin: 16px 0;
  }
  
  .carrossel-cp .item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 233px;
    height: auto;
    scroll-snap-align: center;
    margin: 8px;
    transition: 0.2s ease-in-out;
    
    
  }

  .carrossel-cp .item a img{
    border-radius: 16px;
    background-color: #CECECE;
    width: 100%;
    height: auto;
  }
  
  .carrossel-cp .item:hover{
    transform: scale(1.02);
  }

  .carrossel-cp::-webkit-scrollbar {
   height: 8px;
   background-color: #ffffff;
   border-radius: 8px;

  }

  .carrossel-cp::-webkit-scrollbar-thumb {
    background-color: #7D98F8; /* Cor do polegar */
    border-radius: 5px; /* Raio das bordas do polegar */
    
  }
  
  /* Muda a cor do polegar quando hover */
  .carrossel-cp::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-primary-blue);
  }

  .item-description{
    color: var(--color-font-defeault);
    margin: 8px 0;
    font-size: 14px;
  }
  .item-description p{font-size: 14px!important;}

  .scroll-h-icon{
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
  }




  .big-carrossel-cp {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Para suporte a iOS */
    width: 100%;
    max-width: 1280px;
    height: auto; /* Defina a altura conforme necessário */
  }
  
  .big-carrossel-cp .item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    height: auto;
    scroll-snap-align: center;
    margin: 8px;
    transition: 0.2s ease-in-out;
    
    
  }

  .big-carrossel-cp .item a img{
    border-radius: 16px;
    background-color: #CECECE;
    width: 100%;
    height: auto;
  }
  
  .big-carrossel-cp .item:hover{
    transform: scale(1.02);
  }

  .big-carrossel-cp::-webkit-scrollbar {
   height: 8px;
   background-color: #ffffff;
   border-radius: 8px;

  }

  .big-carrossel-cp::-webkit-scrollbar-thumb {
    background-color: #7D98F8; /* Cor do polegar */
    border-radius: 5px; /* Raio das bordas do polegar */
    
  }
  
  /* Muda a cor do polegar quando hover */
  .big-carrossel-cp::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-primary-blue);
  }









  #iframe-video{
    width: 100%;
    height: 592px;
    border: 0;
    border-radius: 24px;
  }






@media screen and (max-width: 768px) {

    #iframe-video{
        height: 428px;
    }
}