
        .data {
            position: relative;
            width: 10%;
            height: 10%;
            border-radius: 10%;
            align-items: center;
            text-align: center;
            transition: 0.5s;
          }
          .data .circulo {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 10%;
            overflow: hidden;
          }
  
          .data .circulo::before {
            content: "?";
            color: rgba(255, 255, 255, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 70px;
            font-weight: 800;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #313644;
            clip-path: circle(90px at center);
            transition: all 1s;
          }
  
          .data .contenido {
            position: relative;
            width: 100%;
            height: 100%;
          
            transition: 0.2s;
            opacity: 0;
            visibility: hidden;
          }
  
          .data:hover .grow.circulo::before {
            color: rgba(255, 255, 255, 0);
            background: var(--theme-color);
            clip-path: circle(150% at center);
          }
  
          .data:hover .rotateZ.circulo::before {
            color: rgba(255, 255, 255, 0);
            background: var(--theme-color);
            clip-path: circle(150% at center);
            transform: rotateZ(360deg);
          }
  
          .data:hover .rotateX.circulo::before {
            color: rgba(255, 255, 255, 0);
            background: var(--theme-color);
            clip-path: circle(150% at center);
            transform: rotateX(360deg);
          }
  
          .data:hover .rotateY.circulo::before {
            color: rgba(255, 255, 255, 0);
            background: var(--theme-color);
            clip-path: circle(150% at center);
            transform: rotateY(360deg);
          }
  
          .data:hover .contenido {
            visibility: visible;
            transition-delay: 0.8s;
            opacity: 1;
            overflow: auto; /* Add this line */
            max-height: 100%; /* Add this line */
          }
          .data .contenido > h1,
          .data .contenido > h2 {
            color: white;
            text-decoration: underline;
          }
          .data .contenido > h3 {
            color: white;
            text-decoration: underline;
          }
          .data .contenido > p {
            color: white;
          }
  
          .data .contenido > img {
            border-radius: 50%;
            max-height: 40vh;
          }