@media (max-width: 768px) {
    .md\:flex {
      display: none !important;
    }
  }
  /* Mentoria - Cards e Títulos */
  .mentoria-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }
  
  .mentoria-desc {
    color: #e5e5e5;
    font-size: 1.15rem;
    margin-bottom: 2rem;
  }
  
  .mentoria-card {
    background: linear-gradient(135deg, #18181b 60%, #27272a 100%);
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(225,29,72,0.08), 0 2px 8px rgba(0,0,0,0.18);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    border-top: 4px solid #e11d48;
  }
  .mentoria-card:hover {
    box-shadow: 0 16px 40px rgba(225,29,72,0.18), 0 4px 16px rgba(0,0,0,0.28);
    transform: translateY(-8px) scale(1.03);
  }
  .mentoria-card-icon {
    font-size: 2.5rem;
    color: #e11d48;
    min-width: 3.5rem;
    text-align: center;
  }
  .mentoria-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .mentoria-card-list {
    color: #e5e5e5;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mentoria-card-list li {
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
  }
  .mentoria-card-list i {
    color: #e11d48;
    margin-right: 0.5rem;
  }
  .mentoria-chip {
    background: #e11d48;
    color: #fff;
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-size: 0.95rem;
    margin: 0.15rem;
    display: inline-block;
  }
  .mentoria-cta {
    background: #e11d48;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(225,29,72,0.18);
    transition: background 0.3s, transform 0.3s;
  }
  .mentoria-cta:hover {
    background: #b91c1c;
    transform: translateY(-3px) scale(1.04);
  }
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Permanent+Marker&display=swap');
          
          body {
              font-family: 'Montserrat', sans-serif;
              background-color: #0a0a0a;
              color: #f5f5f5;
              scroll-behavior: smooth;
          }
          
          .marker-font {
              font-family: 'Permanent Marker', cursive;
          }
          
          .gallery-img {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

/* Indicador de que a imagem é clicável */
.gallery-img::after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 8px;
    border-radius: 50%;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-img:hover::after {
    opacity: 1;
}
          
          .nav-link {
              position: relative;
          }
          
          .nav-link::after {
              content: '';
              position: absolute;
              width: 0;
              height: 2px;
              bottom: -2px;
              left: 0;
              background-color: #e11d48;
              transition: width 0.3s ease;
          }
          
          .nav-link:hover::after {
              width: 100%;
          }
          
          .btn-primary {
              transition: all 0.3s ease;
          }
          
          .btn-primary:hover {
              transform: translateY(-3px);
              box-shadow: 0 10px 15px rgba(225, 29, 72, 0.3);
          }
          
          .testimonial-card {
              transition: all 0.3s ease;
              display: flex;
              flex-direction: column;
              align-items: center;
              justify-content: center;
              text-align: center;
          }
          
          .testimonial-card:hover {
              transform: translateY(-10px);
          }
          
          .scroll-indicator {
              animation: bounce 2s infinite;
          }
          
          @keyframes bounce {
              0%, 20%, 50%, 80%, 100% {
                  transform: translateY(0);
              }
              40% {
                  transform: translateY(-20px);
              }
              60% {
                  transform: translateY(-10px);
              }
          }
          
          .modal {
              transition: opacity 0.3s ease;
          }
          
          .mentorship-card {
              transition: all 0.3s ease;
          }
          
          .mentorship-card:hover {
              transform: translateY(-5px);
          }
          
          /* Custom scrollbar */
          ::-webkit-scrollbar {
              width: 8px;
          }
          
          ::-webkit-scrollbar-track {
              background: #1a1a1a;
          }
          
          ::-webkit-scrollbar-thumb {
              background: #e11d48;
           
              border-radius: 4px;
          }
          
          ::-webkit-scrollbar-thumb:hover {
              background: #b91c1c;
          }
          
          /* Modal da galeria */
#gallery-modal {
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100vw; 
  height: 100vh;
  display: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#gallery-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.gallery-modal-backdrop {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100vw; 
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
}

.gallery-modal-content {
  position: relative;
  z-index: 2;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.gallery-modal-close {
  position: absolute;
  top: 20px; 
  right: 20px;
  font-size: 2.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-modal-close:hover {
  background: rgba(225, 29, 72, 0.8);
  transform: scale(1.1);
}

.gallery-modal-nav {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin: 0 15px;
  z-index: 3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-modal-nav:hover {
  background: rgba(225, 29, 72, 0.8);
  transform: scale(1.1);
}

#gallery-modal-img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  transition: transform 0.3s ease;
}

#gallery-modal-img:hover {
  transform: scale(1.02);
}
  body.modal-open {
    overflow: hidden;
  }