@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap);
/* =====================
   🌍 Reset e Estilos Globais
   ===================== */

   body,
   html {
     background-color: #f8f9fa;
     font-family: 'Poppins', sans-serif;
     color: #2e2e2e;
     min-height: 100vh;
   }

   h1 {
     font-size: clamp(1.5rem, 2vw, 2.25rem);
     text-transform: uppercase;
     color: rgb(0, 168, 74);
     text-align: center;
     font-weight: 700;
     letter-spacing: 1px;
     margin-bottom: 1.5rem;
   }

   /* Links */
   a {
     text-decoration: none;
     color: rgb(0, 168, 74);
     font-weight: bold;
     transition: color 0.3s ease-in-out;
   }

   a:hover {
     color: #2a6d2f;
   }

   /* =====================
      📌 Área de Filtros
      ===================== */
   .filtro-container {
     background-color: #ffffff;
     border: 1px solid #dfe7dd;
     border-radius: 12px;
     padding: 1.5rem;
     margin-bottom: 2rem;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
   }

   .p-dropdown,
   input[type="text"] {
     width: 14rem;
     font-weight: normal;
     transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
     border-radius: 8px;
   }

   .p-dropdown:hover,
   input[type="text"]:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
     border-color: #00a84a;
   }

   /* =====================
      📌 Cartões (Cards)
      ===================== */
   .card {
     padding: 2rem;
     background: #ffffff;
     border: 2px solid #36853b;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     border-radius: 8px;
     margin-bottom: 2rem;
     transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
   }

   .card:hover {
     transform: translateY(-5px);
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
   }

   /* =====================
      📌 Botões
      ===================== */
   .course-button {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
     margin-top: 1rem;
   }

   .course-button .p-button {
     text-align: center;
     font-size: 0.9rem;
     padding: 12px 24px;
     background-color: rgb(0, 168, 74);
     color: #fff;
     text-transform: uppercase;
     border: none;
     border-radius: 8px;
     font-weight: bold;
     cursor: pointer;
     transition: background-color 0.3s, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
   }

   .course-button .p-button:hover {
     background-color: rgb(0, 157, 68);
     transform: scale(1.05);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   }

   .course-button .p-button:active {
     transform: scale(0.98);
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
   }

   /* =====================
      📌 Grid de Cursos
      ===================== */
   .course-grid-item {
     padding: 1.5rem;
     margin: 0.5rem;
     border: 1px solid #c4e2c5;
     border-radius: 8px;
     background-color: #ffffff;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
   }

   .course-grid-item:hover {
     transform: scale(1.02);
     box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
     background-color: #f5f9f5;
   }

   .course-grid-item .course-grid-item-top,
   .course-grid-item .course-grid-item-bottom {
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1rem;
   }

   .course-grid-item .course-grid-item-content {
     text-align: center;
     text-transform: uppercase;
   }

   .course-category {
     font-size: 0.9rem;
     color: #777;
     font-weight: bold;
     text-align: center;
   }

   .course-name {
     font-size: 1.3rem;
     font-weight: bold;
     color: rgb(0, 168, 74);
     margin-top: 10px;
     background-color: #f5f9f5;
     padding: 0.5rem;
     border-radius: 8px;
     border: 1px solid #c4e2c5;
   }

   .course-description {
     font-size: 1rem;
     color: #555;
     margin-top: 5px;
     text-align: center;
   }

   /* =====================
      📱 Responsividade
      ===================== */
   @media (max-width: 1024px) {
     .nav-bar {
       flex-direction: column;
       gap: 0.5rem;
     }

     .course-grid-item {
       padding: 1rem;
     }
   }

   @media screen and (max-width: 576px) {
     h1 {
       font-size: 1.2rem;
     }

     .nav-bar {
       flex-direction: column;
       align-items: flex-start;
     }
   }

   /* Ajuste para campo de pesquisa com ícone */
   .p-input-icon-left input[type="text"] {
     padding-left: 2.5rem !important;
   }

