/*     
 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 CURSOS E WORKSHOPS - PREMIUM
========================= */

.curso1-section {
  width: 100%;
  padding: 80px 10%;
  background: linear-gradient(135deg, #fdfcf8, #f3f5e1);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  box-sizing: border-box;
}

.curso1-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.curso1-texto {
  flex: 1;
  min-width: 400px;
  text-align: justify;
}

.curso1-texto h2 {
  color: #011a1b;
  font-size: 2rem;
  margin-bottom: 25px;
}

.curso1-texto p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.curso1-imagem {
  flex: 1;
  min-width: 350px;
  text-align: center;
}

.curso1-imagem img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curso1-imagem img:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

/* Responsividade */
@media (max-width: 1024px) {
  .curso1-container {
    flex-direction: column;
    gap: 40px;
  }
  .curso1-texto, .curso1-imagem {
    min-width: 100%;
    text-align: center;
  }
  .curso1-texto h2 {
    font-size: 1.8rem;
  }
  .curso1-texto p {
    font-size: 0.95rem;
  }
  .curso1-imagem img {
    max-width: 80%;
  }
}

/* Sessão 2 do Curso – Layout Premium duas linhas */
.curso1-secao2 {
  width: 100%;
  padding: 60px 10%;
  background: linear-gradient(135deg, #d1e8fa, #f0f7fc);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  box-sizing: border-box;
}

/* Linha superior: vídeo e sobre o conteúdo */
.curso1-container2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Vídeo */
.curso1-video video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curso1-video video:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Sobre o conteúdo */
.curso1-sobre h2 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.curso1-sobre p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

/* Cards do curso – Estilo Premium igual aos serviços */
.curso1-conteudo ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.curso1-conteudo li {
  background: #ffffff;
  border: 2px solid #14b4c0; /* contorno verde premium */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 180px;
  font-size: 0.85rem;
  color: #1a1a1a; /* texto preto */
  cursor: pointer;
}

.curso1-conteudo li img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  filter: hue-rotate(160deg); /* transforma imagem para tom verde se necessário */
}

.curso1-conteudo li strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #15777e; /* título verde */
}

/* Hover – Invertendo cores */
.curso1-conteudo li:hover {
  background: #15777e; /* fundo verde */
  color: #ffffff;       /* texto branco */
  border-color: #15777e;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.curso1-conteudo li:hover strong,
.curso1-conteudo li:hover img {
  color: #ffffff;
  filter: brightness(0) invert(1); /* imagem branca no hover */
}

/* Responsividade */
@media (max-width: 1024px) {
  .curso1-conteudo ul {
    grid-template-columns: 1fr;
  }
  .curso1-conteudo li {
    height: auto;
    padding: 18px;
  }
}


/* Sessão Quem Criou o Curso – Premium com fundo e borda luminosa */
.curso1-criadora {
  width: 100%;
  padding: 60px 10%;
  background: linear-gradient(135deg, #e2dede, #ffffff); /* degradê suave premium */
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  border-radius: 12px; /* leve arredondamento na sessão */
}

/* Container flexível */
.curso1-criadora-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Foto da criadora com borda luminosa */
.curso1-criadora-foto img {
  width: 250px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border: 3px solid rgba(20,180,192,0.5); /* borda luminosa sutil */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.curso1-criadora-foto img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  border-color: rgba(8, 110, 117, 0.8);
}

/* Texto da criadora */
.curso1-criadora-texto {
  flex: 1.5;
  min-width: 280px;
}

.curso1-criadora-texto h2 {
  color: #0e2122;
  margin-bottom: 20px;
  border-bottom: 2px solid #05676e;
  padding-bottom: 10px;
  font-size: 2rem;
}

.curso1-criadora-texto p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

/* Responsividade */
@media (max-width: 1024px) {
  .curso1-criadora-container {
    flex-direction: column;
    text-align: center;
  }

  .curso1-criadora-texto h2 {
    text-align: center;
    font-size: 1.8rem;
  }

  .curso1-criadora-texto p {
    text-align: center;
    font-size: 1rem;
  }

  .curso1-criadora-foto img {
    width: 200px;
  }
}

/* Sessão Perguntas Frequentes – Premium */
/* Sessão Perguntas Frequentes – Premium com fundo */
/* Sessão Perguntas Frequentes – Premium com fundo largo */
.curso1-faq {
  width: 100%;
  padding: 60px 5%; /* reduzimos a margem lateral para deixar mais largo */
  background: linear-gradient(135deg, #a5f0f5, #f5faff); /* fundo degradê elegante */
  font-family: 'Helvetica Neue', Arial, sans-serif;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Centraliza conteúdo com largura maior */
.curso1-faq-container {
  max-width: 900px; /* agora mais largo que antes */
  margin: 0 auto;
}

/* Título */
.curso1-faq h2 {
  font-size: 2rem;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.curso1-faq h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #14b4c0;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* Accordion */
.faq-item {
  background: #ffffffcc; /* leve transparência para harmonizar com o degradê */
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  filter: brightness(1.05);
}

.faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  outline: none;
  position: relative;
  transition: color 0.3s ease;
}

.faq-item summary:hover {
  color: #047180;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.3rem;
  color: #14b4c0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] summary::before {
  content: '−';
  transform: rotate(180deg);
  color: #047180;
}

.faq-item p {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 1024px) {
  .curso1-faq {
    padding: 50px 5%;
  }
  .curso1-faq-container {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .faq-item p {
    font-size: 0.9rem;
  }
}

/* Sessão CTA – Acesse o Curso */
.curso1-cta {
  padding: 60px 10%;
  background: linear-gradient(135deg, #e3dbf1, #f4eefc); /* degradê suave premium */
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.curso1-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/fundo.png') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
  border-radius: 12px;
}

.curso1-cta-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.curso1-cta h1 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0f0101;
  margin: 0 0 15px 0;
}

.curso1-cta a.cta-button {
  display: inline-block;
  background: #312e55;
  color: #fff;
  padding: 18px 50px;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.curso1-cta a.cta-button:hover {
  background: #726ea3;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Responsividade */
@media (max-width: 768px) {
  .curso1-cta h1 {
    font-size: 1.5rem;
  }

  .curso1-cta a.cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
  }
}

/* Brilho suave no hover */
.curso1-conteudo li::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.4s ease;
  border-radius: 12px;
  pointer-events: none;
}

.curso1-conteudo li:hover::after {
  opacity: 1;
}

.curso1-cta-premium {
  padding: 60px 10%;
  background: linear-gradient(135deg, #e3dbf1, #f4eefc);
  text-align: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.curso1-cta-premium h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #180353;
  margin-bottom: 30px;
}

.curso1-cta-premium .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.curso1-cta-premium .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 50px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.curso1-cta-premium .cta-button.aluno {
  background: #312e55;
}

.curso1-cta-premium .cta-button.matricula {
  background: #14b4c0;
}

/* Ícones dentro do botão */
.curso1-cta-premium .cta-button .icon {
  font-size: 1.3rem;
}

/* Brilho suave no hover */
.curso1-cta-premium .cta-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.4s ease;
  border-radius: 12px;
  pointer-events: none;
}

.curso1-cta-premium .cta-button:hover::after {
  opacity: 1;
}

.curso1-cta-premium .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.curso1-cta-premium .cta-button.aluno:hover {
  background: #726ea3;
}

.curso1-cta-premium .cta-button.matricula:hover {
  background: #0f96a5;
}

/* Responsividade */
@media (max-width: 768px) {
  .curso1-cta-premium h2 {
    font-size: 1.6rem;
  }

  .curso1-cta-premium .cta-button i {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  stroke-width: 2;
}
}

