/*     
 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 CONSULTORIA PREMIUM
========================= */

#consultoria-cards-premium {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #d4f6f8 100%);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.consultoria-titulo {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #007b8f;
  font-weight: 600;
}

/* Container flexível para os cards */
#consultoria-cards-premium > .container > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* Card individual */
.card-premium {
  background: linear-gradient(to bottom, #ffffff, #d4f6f8); /* degradê suave */
  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;
  height: 250px; /* altura fixa para uniformizar */
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #000; /* títulos e textos pretos por padrão */
}


.card-premium:hover {
  background: #007b8f; /* fundo escurece */
  color: #fff; /* textos e ícones ficam brancos */
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 0 25px rgba(0,180,204,0.3);
}

/* Ícone */
.card-premium .icon {
  font-size: 3rem;
  color: #00b4cc;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.card-premium:hover .icon {
  color: #fff;
}


/* Título do card */
.card-premium h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #007b8f;
}

/* Título do card */
.card-premium:hover h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #fff;
}


/* Descrição do card */
.card-premium p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  flex-grow: 1;
}

/* Descrição do card */
.card-premium:hover p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  flex-grow: 1;
}

/* Responsividade */
@media (max-width: 1024px) {
  .card-premium {
    width: 240px;
    height: 340px;
  }
}

@media (max-width: 768px) {
  .card-premium {
    width: 45%;
    height: auto;
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .card-premium {
    width: 90%;
    height: auto;
    min-height: 320px;
  }
}

/* Brilho animado + glow premium no último card */
.card-premium:last-child {
  position: relative;
  overflow: hidden; /* mantém o brilho dentro do card */
  border: 2px solid rgba(255,255,255,0.4); /* borda mais evidente para glow */
  box-shadow: 0 10px 30px rgba(0,180,204,0.3), 0 0 20px rgba(0,180,204,0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Brilho que percorre o card */
.card-premium:last-child::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 3s linear infinite;
  pointer-events: none;
  filter: blur(10px); /* suaviza o brilho */
}

/* Glow contínuo nas bordas */
.card-premium:last-child::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,180,204,0.5);
  opacity: 0.6;
  pointer-events: none;
}

/* Animação do brilho */
@keyframes brilho {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}


/* =========================
   BOTÃO CTA PREMIUM
========================= */

#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);
}

/* Hover do botão */
#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);
}

/* Animação do brilho */
@keyframes brilho-btn {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}
