/* Seção Programas */
.programas-section {
  padding: 80px 0;
  background: var(--color-neutral);
  position: relative;
  overflow: hidden;
}

.programas-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.programas-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.programas-header {
  text-align: center;
  margin-bottom: 60px;
}

.programas-title {
  font-size: 40px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 20px;
  position: relative;
}

.programas-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}

.programas-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 200;
}

.programas-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 15px;
  margin-top: 50px;
  width: 100%;
  justify-content: center;
}

.programa-card {
  flex: 1 1 0;
  min-width: 300px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-neutral-dark);
  display: flex;
  flex-direction: column;
}

.programa-card::before {
  /* content: ""; */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--color-primary);
}

/* Efeito hover removido conforme solicitado */

.programa-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.programa-icon {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(226, 147, 121, 0.3);
}

.programa-icon svg {
  width: 25px;
  height: 25px;
  color: var(--color-text-light);
}

.programa-name {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text-dark);
  margin: 0;
}

.programa-description {
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex-grow: 0;
  font-weight: 300;
}

.programa-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.programa-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 300;
}

.programa-features li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: bold;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.programa-button {
  background: var(--color-primary);
  color: var(--color-text-light);
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 80%;
  box-shadow: 0 4px 15px rgba(226, 147, 121, 0.3);
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

/* Efeito hover do botão removido conforme solicitado */

/* Responsividade */
@media (max-width: 1100px) {
  .programas-grid {
    flex-wrap: wrap;
  }

  .programa-card {
    flex: 1 1 calc(50% - 10px);
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .programas-section {
    padding: 60px 0;
  }

  .programas-title {
    font-size: 2.5rem;
  }

  .programa-card {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .programas-container {
    padding: 0 15px;
  }

  .programas-title {
    font-size: 2rem;
  }

  .programas-subtitle {
    font-size: 1rem;
  }

  .programa-card {
    padding: 20px 15px;
  }

  .programa-header {
    flex-direction: column;
    text-align: center;
  }

  .programa-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .programa-name {
    font-size: 1.4rem;
  }
}

@media (min-width: 1000px) and (max-width: 1300px) {
  .programa-card {
    flex: 1 1 0px;
    min-width: 250px;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 20px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-neutral-dark);
    display: flex;
    flex-direction: column;
  }
}
