/*     
 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 MARKETING DIGITAL - CARDS
========================= */

#marketing-cards-premium {
  padding: 60px 20px;
  background: linear-gradient(to bottom,#ffffff 0%, #d4f6f8 100%);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.marketing-titulo {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #007b8f;
  font-weight: 600;
}

/* Container flexível para os cards */
#marketing-cards-premium > .container > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* Card individual */
#marketing-cards-premium .card-premium {
  background: linear-gradient(to bottom, #ffffff, #d4f6f8);
  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: 260px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #000;
}

#marketing-cards-premium .card-premium:hover{
  background: #007b8f;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 0 25px rgba(0,180,204,0.3);
}

#marketing-cards-premium .card-premium:hover .icon {
  color: #fff;
}

/* Ícone */
#marketing-cards-premium .card-premium .icon {
  font-size: 3rem;
  color: #00b4cc;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

/* Título do card */
#marketing-cards-premium .card-premium h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #9babac;
  transition: color 0.3s ease;
}


/* Descrição do card */
#marketing-cards-premium .card-premium p {
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Último card maior e degradê especial */
#marketing-cards-premium .card-premium:last-child {
  width: 100%;
  height: 250px;
  background: linear-gradient(to right, #b6eff7, #38bcbe);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(79, 212, 245, 0.4);
  box-shadow: 0 10px 30px rgba(0,180,204,0.3), 0 0 20px rgba(0,180,204,0.2);
  border-radius: 20px;
}

/* Brilho animado no último card */
#marketing-cards-premium .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);
}

@keyframes brilho {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* =========================
   SEÇÃO FINAL - CTA MARKETING DIGITAL
========================= */

#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) {
  #mentoria-cards-premium .card-premium { width: 240px; height: 340px; }
  #mentoria-cards-premium .card-premium:last-child { width: 100%; height: 340px; }
  #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) {
  #mentoria-cards-premium .card-premium { width: 45%; height: auto; min-height: 320px; }
  #mentoria-cards-premium .card-premium:last-child { width: 90%; }
  #contato-final > div > div { flex: 1 1 100%; text-align: center; }
}

@media (max-width: 480px) {
  #mentoria-cards-premium .card-premium { width: 90%; height: auto; min-height: 320px; }
  #mentoria-cards-premium .card-premium:last-child { width: 90%; }
  #contato-final > div > div { flex: 1 1 100%; text-align: center; }
}
