/* =====================
   RESPONSIVO PARA DISPOSITIVOS MÓVEIS
===================== */

/* Estilo da área de categorias (ajustar para telas pequenas) */
.categories {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  /* Estilo do card (ajustar o tamanho para telas pequenas) */
  .card-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .card {
    width: 250px;
    height: 350px;
  }
  
  .card-face {
    padding: 1.5rem 1rem;
  }
  
  /* Estilo do ícone de perfil (ajustar o tamanho para telas pequenas) */
  .profile-icon {
    width: 80px;
    height: 80px;
  }
  
  /* Estilo do texto de introdução (ajustar para telas pequenas) */
  .intro-text {
    font-size: 0.85rem;
    padding: 0 1rem;
  }
  
  /* =====================
     RESPONSIVO PARA TELAS MÉDIAS
  ===================== */
  @media (min-width: 768px) {
    .categories {
      gap: 2rem;
    }
  
    .card-wrapper {
      margin-top: 2rem;
    }
  
    .card {
      width: 300px;
      height: 420px;
    }
  
    .card-face {
      padding: 2rem 1.5rem;
    }
  
    .profile-icon {
      width: 100px;
      height: 100px;
    }
  
    .intro-text {
      font-size: 0.95rem;
      padding: 0 1.5rem;
    }
  }
  
  /* =====================
     RESPONSIVO PARA TELAS GRANDES
  ===================== */
  @media (min-width: 1200px) {
    .card-wrapper {
      display: flex;
      justify-content: center;
    }
  
    .card {
      width: 350px;
      height: 470px;
    }
  }
  