html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container-fluid{
            height: 100%;
          }
          
  .pagina {
        height: 100%;
      }

  
  .custom-card {
    border-radius: 10px; /* Arredonda as bordas do card */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra de fundo */
  }
  
  .wrapper{
        width:100%;
        max-width: 500px;
      }
      
  .floating-icon {
      position: absolute;
      bottom: 60%; /* Posiciona o ícone no meio verticalmente */
      left: 50%; /* Posiciona o icone no meio horizontalmente */
      transform: translate(-50%, 0); /* Centraliza o ícone */
      animation: floatUpDown 3s infinite alternate; /* Animação */
      z-index: 999;
  }

  @keyframes floatUpDown {
    0% {
      transform: translate(-50%, 0); /* Posição inicial */
    }
    100% {
      transform: translate(-50%, -50px); /* Posição final */
    }
  }
  
  .center-image {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 120px;
    height: auto;
  }
  
  #carouselExampleControls {
    position: relative;
    z-index: 1; 
  }
  
  .img-3d {
    transition: transform 0.5s; /* Adiciona uma transição suave */
  }
  .img-3d:hover {
    transform: rotateY(30deg); /* Rotaciona a imagem ao passar o mouse sobre ela */
  }
  
  
  .container-fluid {
    perspective: 1000px; /* Define a perspectiva */
  }
  
  .modal-header{
    border-bottom: 0px !important;
  }
  
  .modal-footer{
    border-top: 0px !important;
  }
  
  
  #loaderModal {
    background: rgba(0, 0, 0, 0.5); /* cor de fundo com opacidade */
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .spinner {
    animation: spin 2s linear infinite;
  }