.mentoria-wrapper {
    background-color: #ffffff;
    width: 100%;
  }


.mentoria {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
  }
  
  
  .mentoria-title {
    background-color: #c89b42;
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 40px;
  }
  
  .mentoria-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .mentoria-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 1.5rem;
    border: 2px solid #caa64d;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(202, 166, 77, 0.4);
    animation: border-glow 2s ease-in-out infinite;
    font-size: 1.8rem;
    color: #121331;
    font-weight: 700;
    text-align: left;
    min-height: 100px;
    padding-left: 3rem;
  }
  
  /* Ícone igual ao ensinar-box */
  .mentoria-item::before {
    content: '✔';
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%); /* ⬅️ centraliza verticalmente */
    color: #c89b42;
    font-size: 2rem; /* ⬆️ aumenta tamanho */
    font-weight: bold;
    text-shadow: 0 0 6px rgba(202, 166, 77, 0.6);
  }
  
  
  .mentoria-item p {
    font-size: 1.8rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
  }
  
  .mentoria-item span {
    color: #ffc636;
    font-weight: 700;
  }
  
  /* Responsivo até 768px */
  @media (max-width: 768px) {
    .mentoria-title {
      font-size: 1.5rem;
      padding: 10px 20px;
    }
  
    .mentoria-item {
      flex-direction: column;
      align-items: flex-start;
      padding: 16px 16px 16px 3.2rem; /* inclui espaço pro ícone ::before */
    }
  
    .mentoria-item::before {
      font-size: 1.5rem;
      top: 1.2rem;
      left: 1rem;
    }
  
    .mentoria-item p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .mentoria-title {
      font-size: 1.3rem;
      padding: 8px 16px;
    }
  
    .mentoria-item {
      padding-left: 2.8rem;
    }
  
    .mentoria-item::before {
      font-size: 1.3rem;
      top: 1.1rem;
      left: 0.9rem;
    }
  
    .mentoria-item p {
      font-size: 0.95rem;
    }
  }
  