    body {
          background: rgba(84, 0, 84, 0.25);
        }
      
        .carousel-blur {
      background: rgba(84, 0, 84, 0.25);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
          border-radius: 20px;
          padding: 30px 20px;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }
      
        .depoimento {
          position: absolute;
          top: 0;
          left: 100%;
          width: 100%;
          opacity: 0;
          transform: translateX(0);
          transition: all 0.8s ease-in-out;
        }
      
        .depoimento.ativo {
          left: 0;
          opacity: 1;
          transform: translateX(0);
          z-index: 2;
        }
      
        .depoimento.saindo {
          transform: translateX(100%);
          opacity: 0;
          z-index: 1;
        }
      
        .foto {
          width: 75px;
          height: 75px;
          border-radius: 50%;
          margin-bottom: 15px;
          border: 3px solid #ffffff;
        }
      
        #provasSociais h4 {
          color: #ffffff;
          margin-bottom: 8px;
        }
      
        #provasSociais p {
          color: #ffffff;
          font-style: italic;
          max-width: 90%;
          margin: 0 auto;
        }