/* Cores: Verde Principal (#035730), Amarelo Destaque (#ffd700) */
/* Configurações globais e reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  html,
  body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background-color: #acf0a9;
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* -------------------------------------- */
  /* NAV - Reutilizada */
  /* -------------------------------------- */
  #main-nav {
    background-color: #035730;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  /* ... (O restante do CSS da NAV e do Hamburguer deve ser copiado do sobre.html/atividades.html) ... */
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
  }
  
  .logo-img {
    height: 40px;
    margin-right: 10px;
  }
  .logo-text {
    font-size: 1.4em;
    font-weight: 700;
  }
  .nav-links {
    display: flex;
    gap: 25px;
  }
  
  .nav-item {
    color: white;
    font-weight: 600;
    padding: 5px 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 3px solid transparent;
  }
  
  .nav-item:hover,
  .nav-item.active {
    color: #ffd700;
    border-bottom: 3px solid #ffd700;
  }
  
  .special-link {
    background-color: #e6b800;
    padding: 8px 15px;
    border-radius: 5px;
    border-bottom: none !important;
  }
  
  .special-link:hover {
    background-color: #ffc400;
    color: #035730;
  }
  
  .hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    padding: 5px;
  }
  
  /* -------------------------------------- */
  /* HERO PAGE (Faixa Panorâmica) - Reutilizada */
  /* -------------------------------------- */
  
  #hero-page {
    margin-top: 60px;
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  }
  
  #hero-page h1 {
    color: white;
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  #hero-page p {
    color: white;
    font-size: 1.1em;
    font-weight: 300;
    max-width: 80%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
  
  /* -------------------------------------- */
  /* LISTAGEM DE CARDS (CURSOS) */
  /* -------------------------------------- */
  
  .courses-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
  }
  
  .courses-section h2 {
    color: #035730;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .course-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer; /* Indica que é clicável */
  }
  
  .course-card:hover {
    transform: translateY(-5px);
  }
  
  .card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-content h3 {
    color: #035730;
    font-size: 1.3em;
    margin-bottom: 10px;
  }
  
  .card-content p {
    font-size: 0.9em;
    color: #000;
    margin-bottom: 15px;
  }
  
  .card-button {
    display: inline-block;
    background-color: #035730;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.2s;
  }
  
  .card-button:hover {
    background-color: #024325;
  }
  
  /* -------------------------------------- */
  /* FILTRO (Categorias) - Reutilizada e Adaptada */
  /* -------------------------------------- */
  
  .filter-container {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .filter-button {
    background-color: #035730;
    color: white;
    border: 2px solid #035730;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
  }
  
  .filter-button:hover,
  .filter-button.active {
    background-color: #ffd700;
    color: #035730;
    border-color: #ffd700;
  }
  
  .filter-button.active {
    box-shadow: 0 0 0 2px #035730;
  }
  
  /* -------------------------------------- */
  /* MODAL DE DETALHES DO CURSO (Overlay) */
  /* -------------------------------------- */
  
  .modal-overlay {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto; /* Permite rolar o conteúdo do modal */
    padding: 20px 0;
  }
  
  .modal-content {
    background-color: #b7e7b5;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 30px;
  }
  
  .close-button {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .close-button:hover {
    color: #035730;
  }
  
  #modal-title {
    color: #035730;
    font-size: 2.2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
  }
  
  /* Seção Descrição e Imagem */
  .modal-description-section {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .modal-description-section img {
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .modal-description-section p {
    flex: 1;
    line-height: 1.7;
  }
  
  /* Seção Depoimento */
  .modal-depoimento {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .modal-depoimento h3 {
    color: #035730;
    margin-bottom: 15px;
  }
  
  .depoimento-content {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }
  
  .depoimento-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  /* Seção Aprendizado */
  .modal-aprendizado h3 {
    color: #035730;
    margin-bottom: 15px;
  }
  
  .modal-aprendizado ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .modal-aprendizado ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23035730" width="18px" height="18px"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>')
      no-repeat left center;
    background-size: 18px;
    padding-left: 25px;
    line-height: 1.8;
    margin-bottom: 5px;
  }
  
  /* -------------------------------------- */
  /* FOOTER - Reutilizado (Visual Original) */
  /* -------------------------------------- */
  
  .site-footer {
    background-color: #035730;
    color: white;
    padding: 40px 0 10px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
    margin-bottom: 10px;
  }
  
  .footer-col {
    flex: 1 1 1;
    min-width: 250px;
  }
  
  .footer-col.logo-text {
    text-align: center;
  }
  
  .footer-col h3 {
    font-size: 1.3em;
    color: #ffd700; /* Amarelo (Original) */
    margin-bottom: 15px;
  }
  
  .footer-col h4 {
    font-size: 1em;
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .footer-col.logo-text p {
    font-size: 0.7em;
    line-height: 1.6;
  }
  
  .footer-col.links ul {
    list-style: none;
  }
  
  .footer-col.links a {
    display: block;
    padding: 5px 0;
    transition: color 0.2s;
  }
  
  .footer-col.links a:hover {
    color: #ffd700;
  }
  
  .footer-col.contact p {
    margin-bottom: 10px;
  }
  
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    font-size: 0.8em;
    opacity: 0.8;
  }
  
  /* -------------------------------------- */
  /* RESPONSIVIDADE */
  /* -------------------------------------- */
  
  @media (max-width: 900px) {
    /* NAV */
    .hamburger {
      display: block;
    }
    .nav-links {
      display: none;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #035730;
      flex-direction: column;
      padding: 10px 0;
    }
    .nav-links.open {
      display: flex;
    }
    .nav-item {
      width: 100%;
      padding: 10px 20px;
      border-bottom: none !important;
    }
  
    /* HERO */
    #hero-page h1 {
      font-size: 2.5em;
    }
    #hero-page p {
      font-size: 1em;
    }
  
    /* CARDS */
    .cards-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    /* MODAL */
    .modal-content {
      margin: 20px 10px;
      padding: 20px;
    }
  
    .modal-description-section {
      flex-direction: column;
    }
  
    .modal-description-section img {
      max-width: 100%;
      order: -1;
    }
  
    .depoimento-content {
      flex-direction: column;
      text-align: center;
    }
  
    .depoimento-content img {
      margin-bottom: 10px;
    }
  
    /* FOOTER */
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
  
    .footer-col {
      min-width: 100%;
      text-align: center;
    }
  
    .footer-col.links a {
      display: inline-block;
      margin: 0 10px;
    }
  }

  