/* MENU SUPERIOR */
.menu {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.menu li {
  margin: 0 15px;
}

.menu a {
  text-decoration: none;
  color: #ad1457;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}

.menu a:hover {
  color: #6a1b4d;
}

/* CAPA INICIAL */
.inicio {
  position: relative;
  height: 80vh;
  overflow: hidden;
  margin-top: 60px; /* para não cobrir o menu */
}

.fundo {
  width: 100%;
  height: 100%;
  position: relative;
}

.fundo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.texto-inicio {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  padding: 0 1rem;
}

.texto-inicio h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.texto-inicio p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.botao-iniciar {
  padding: 12px 24px;
  background-color: #ad1457; /* vermelho bonito */
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}


.botao-iniciar:hover {
  background-color: #8c1044;
}



/* BLOCO QUEM SOU EU */
.quem-sou {
  padding: 4rem 10%;
  background-color: #fff9f9;
  font-family: 'Segoe UI', sans-serif;
}

.subtitulo-simbolico {
  font-size: 1.8rem;
  color: #ad1457;
  margin-bottom: 2rem;
  text-align: center;
}

.conteudo-quem-sou {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.foto-cris img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
}

.texto-quem-sou {
  flex: 1;
  min-width: 280px;
  text-align: justify;
}

.texto-quem-sou p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* GALERIA SIMBÓLICA – BLOCO “MAS TAMBÉM SOU...” */
.galeria-simbolica {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
  padding: 0 10%;
}

.imagem-e-texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.imagem-e-texto img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.imagem-e-texto p {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #444;
  line-height: 1.7;
  max-width: 700px;
  text-align: justify;
  padding: 0 1rem;
}

/* BLOCO EXERCÍCIOS */
.intro-exercicios {
  text-align: justify;
  font-size: 1.5rem;
  color: #444;
  max-width: 1000px;
  margin: 0 auto 3.5rem auto;
  line-height: 1.9;
  padding: 0 1rem;
}

.exercicios h2,
.titulo-exercicios {
  text-align: center;
  color: #ad1457;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.intro-exercicios {
  text-align: justify;
  font-size: 1.3rem;
  color: #444;
  max-width: 900px;
  margin: 0 auto 3rem auto;
  line-height: 1.8;
}

.grade-exercicios {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.card-exercicio {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  width: 320px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.card-exercicio:hover {
  transform: scale(1.02);
}

.card-exercicio img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card-exercicio h3 {
  font-size: 1.4rem;
  color: #ad1457;
  margin-bottom: 0.5rem;
}

.card-exercicio p {
  font-size: 1.05rem;
  color: #444;
  text-align: justify;
  line-height: 1.6;
}

.convite {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 3rem;
  color: #666;
}

/* BLOCO 4 – GALERIA DAS TRANSFORMAÇÕES */

.galeria {
  background-color: #fdf8f4;
  padding: 80px 20px;
  text-align: center;
}

.conteudo-galeria {
  max-width: 1200px;
  margin: 0 auto;
}

.galeria h2 {
  font-size: 2.8em;
  margin-bottom: 10px;
  font-weight: 600;
}

.galeria p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.grade-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.item-galeria {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.3s ease;
}

.item-galeria:hover {
  transform: translateY(-10px);
}

.item-galeria img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 15px;
}

.item-galeria p {
  font-size: 1em;
  color: #333;
  line-height: 1.4;
}

/* BLOCO 5 – BARALHO DA ALMA */

.baralho {
  background-color: #fdf8f4;
  padding: 80px 20px;
  text-align: center;
}

.conteudo-baralho {
  max-width: 1200px;
  margin: 0 auto;
}

.baralho h2 {
  font-size: 2.8em;
  margin-bottom: 10px;
  font-weight: 600;
}

.baralho p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Layout de grade igual ao da galeria */
.grade-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 10px;
  justify-items: center;
}

/* Estilo base das cartas */
.item-galeria.carta {
  width: 220px;
  height: 320px;
  perspective: 1000px;
  position: relative;
  border-radius: 20px;
}

/* Frente e verso */
.item-galeria .frente,
.item-galeria .verso {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 20px;
  backface-visibility: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #fff;
}

.item-galeria .frente img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.item-galeria .verso {
  transform: rotateY(180deg);
  font-size: 0.95em;
  color: #333;
  line-height: 1.4;
  text-align: left;
  padding: 20px;
  box-sizing: border-box;
}

/* Efeito de virar */
.item-galeria.carta.virada .frente {
  transform: rotateY(180deg);
}

.item-galeria.carta.virada .verso {
  transform: rotateY(360deg);
}

/* BLOCO 6 – DIVÃ AJUSTADO PARA VISUAL LATERAL */

.diva-da-cris {
  background-color: #fffafc;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.diva-conteudo-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.diva-imagem img {
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.diva-texto {
  flex: 1;
  max-width: 600px;
}

.diva-texto h2 {
  color: #ad1457;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.frase-cris {
  font-style: italic;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  text-align: left;
}

#mensagemUsuario {
  width: 100%;
  height: 140px;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 1rem;
  resize: vertical;
}

.diva-texto button {
  background-color: #ad1457;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.diva-texto button:hover {
  background-color: #8c1044;
}

.resposta-ia {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f8f1f5;
  border-radius: 10px;
  color: #444;
  font-size: 1.05rem;
  text-align: left;
  animation: fadeIn 0.6s ease-in-out;
}

/* Animação suave na resposta */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.texto-pequeno {
  font-size: 0.95rem;
  color: #888;
}

.resposta-ia button {
  background-color: #e1cbe0;
  color: #5d1049;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1.2rem;
}

.resposta-ia button:hover {
  background-color: #d2b3d5;
}
/* === BLOCO 7 – APERTE O PLAY DA ALMA === */
#youtube-videos {
  padding: 4rem 10%;
  background-color: #fffafc;
  font-family: 'Georgia', serif;
  color: #5d1049;
}

#youtube-videos h2 {
  color: #ad1457;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

#youtube-videos p {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: #333;
}

#youtube-videos h3 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #7b1b4a;
  font-weight: bold;
  text-align: left;
}

#youtube-videos ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

#youtube-videos li {
  background-color: #fdf6f9;
  border: 1px solid #f3dbe6;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

#youtube-videos li:hover {
  transform: scale(1.02);
}

#youtube-videos a {
  color: #5d1049;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
}

#youtube-videos a:hover {
  color: #ad1457;
  text-decoration: underline;
}
/* BLOCO 8 – PRODUTOS E SERVIÇOS */
.bloco-produtos {
  background-color: #fffafc;
  padding: 5rem 10%;
  font-family: 'Georgia', serif;
  color: #5d1049;
  text-align: center;
}

.titulo-vermelho-central {
  font-size: 2.4rem;
  color: #ad1457;
  margin-bottom: 2rem;
}

.grade-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.card-produto {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-produto:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-produto img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.card-produto h3 {
  font-size: 1.4rem;
  color: #ad1457;
  margin-bottom: 0.6rem;
}

.card-produto p {
  font-size: 1.05rem;
  color: #444;
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.botao-produto {
  background-color: #ad1457;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.botao-produto:hover {
  background-color: #8c1044;
  transform: scale(1.05);
}
/* === BLOCO 8 – PRODUTOS E SERVIÇOS === */
.bloco-produtos {
  background-color: #fffafc;
  padding: 5rem 10%;
  font-family: 'Georgia', serif;
  color: #5d1049;
  text-align: center;
}

.titulo-vermelho-central {
  font-size: 2.4rem;
  color: #ad1457;
  margin-bottom: 2rem;
}

.grade-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.card-produto {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-produto:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-produto img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.card-produto h3 {
  font-size: 1.4rem;
  color: #ad1457;
  margin-bottom: 0.6rem;
}

.card-produto p {
  font-size: 1.05rem;
  color: #444;
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.botao-produto {
  background-color: #ad1457;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.botao-produto:hover {
  background-color: #8c1044;
  transform: scale(1.05);
}
/* === BLOCO 9 – CONTATO === */
.bloco-contato {
  background-color: #fdf6f8;
  padding: 5rem 10%;
  font-family: 'Georgia', serif;
  color: #5d1049;
  text-align: center;
}

.descricao-contato {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.grade-contato {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
}

.formulario-contato {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario-contato input,
.formulario-contato textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
  resize: vertical;
}

.formulario-contato button {
  background-color: #ad1457;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-contato button:hover {
  background-color: #8c1044;
}

.contato-direto {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: left;
}

.contato-direto h3 {
  color: #ad1457;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.contato-direto p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.botao-whatsapp {
  background-color: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.botao-whatsapp:hover {
  background-color: #1ebe5d;
}
