/*     
 Theme Name: Lucitec
 Author Name:Lucineia Chagas
 */

/* ==============================
   PÁGINA: SERVIÇOS LUCITEC
   Descrição: estilos específicos da página de serviços
   ============================== */

/* =========================
   SEÇÃO DE MENTORIA ACADÊMICA - CARDS
========================= */

/* =========================
   SEÇÃO DE MENTORIAS PREMIUM
========================= */

/* Container principal */
#mentoria-cards-premium {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #d4f6f8 100%);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Título das seções de mentoria */
.mentoria-titulo {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #007b8f;
  font-weight: 600;
}

/* Container flexível para os cards de mentoria */
#mentoria-cards-premium > .container > div:first-child {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* Card individual da mentoria */
.card-premium {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 180, 204, 0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12), 0 0 15px rgba(0,180,204,0.2);
  padding: 30px 25px;
  width: 350px;
  min-height: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Hover nos cards */
.card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 0 25px rgba(0,180,204,0.3);
  background: #007b8f;
  color: #ffffff;
}

.card-premium:hover h3,
.card-premium:hover p,
.card-premium:hover .icon {
  color: #ffffff;
}

/* Ícones */
.card-premium .icon {
  font-size: 3rem;
  color: #00b4cc;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

/* Títulos dos cards */
.card-premium h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #007b8f;
}

/* Descrição */
.card-premium p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  flex-grow: 1;
}

/* =========================
   CARROSSEL DE PUBLICAÇÕES - ESTILO FITA
========================= */

.carousel-container {
  overflow-x: auto;
  overflow-y: visible; /* deixa passar verticalmente */
  padding-top: 10px;  /* espaço extra pra animação */
  padding-bottom: 10px;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.carousel-track {
  display: inline-flex;
  gap: 20px;
}

.carousel-card {
  display: inline-block;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid rgba(0, 180, 204, 0.3);
  padding: 15px 25px;
  min-width: 400px; /* deixa bem retangular */
  height: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.carousel-card a {
  text-decoration: none;
  color: #007b8f;
  display: block;
}

.carousel-card a h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.carousel-card a p {
  font-size: 0.95rem;
  color: #555555;
}

/* Esconde barra de rolagem no Webkit */
.carousel-container::-webkit-scrollbar {
  display: none;
}

/* Responsividade */
@media (max-width: 1024px) {
  .carousel-card {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .carousel-card {
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .carousel-card {
    min-width: 200px;
    padding: 12px 18px;
  }
}

/* =========================
   SEÇÃO FINAL - CTA 
========================= */

#contato-final {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #f0f9fb 100%);
  font-family: 'Poppins', sans-serif;
}

#contato-final h2 {
  color: #131616;
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
}

#contato-final p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  text-align: justify;
  margin-right: 20px;
}

#contato-final a {
  display: inline-block;
  background: linear-gradient(90deg, #14b4c0, #00c7d5);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(20,180,192,0.3);
}

#contato-final a:hover {
  background: linear-gradient(90deg, #00c7d5, #14b4c0);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(20,180,192,0.4);
  color: #fff;
}

/* Brilho animado no botão */
#contato-final a::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(45deg);
  opacity: 0.7;
  animation: brilho-btn 3s linear infinite;
  pointer-events: none;
  filter: blur(8px);
}

@keyframes brilho-btn {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* E-mail */
#contato-final p {
  font-size: 0.95rem;
  color: #14b4c0;
  margin-top: 25px;
  text-align: center;
  font-weight: 500;
}

/* Responsividade */
@media (max-width: 1024px) {
  #monitoria-cards-premium .card-premium { width: 240px; height: 320px; }
  #contato-final > div > div { flex: 1 1 100%; text-align: center; }
  #contato-final p { margin-right: 0; }
  #contato-final a { margin-bottom: 15px; }
}

@media (max-width: 768px) {
  #monitoria-cards-premium .card-premium { width: 45%; height: auto; min-height: 280px; }
  #contato-final > div > div { flex: 1 1 100%; text-align: center; }
}

@media (max-width: 480px) {
  #monitoria-cards-premium .card-premium { width: 90%; height: auto; min-height: 280px; }
  #contato-final > div > div { flex: 1 1 100%; text-align: center; }
}