@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/poppins-v23-latin-500italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/poppins-v23-latin-700italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('./fonts/poppins-v23-latin-900italic.woff2') format('woff2');
}



/* ------------------ RESET E BASE ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #551E3E;
}

/* ------------------ HEADER ------------------ */




.inicio-header {
  background: url('../img/Fundopink.jpg') center/cover no-repeat fixed;
  color: white;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.inicio-header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.inicio-logo {
  font-size: 1.7rem;
  font-weight: 700; /* Especifica o peso */
  font-family: 'Poppins', sans-serif;
  font-style: italic; /* Especifica o estilo */
  text-align: center;
}

.inicio-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.inicio-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  /* Aplicando a fonte personalizada */
  font-family: 'Poppins', sans-serif;
  /* Garantindo que o estilo seja italic, conforme a fonte carregada */
  font-style: italic;
  transition: color 0.3s;
}

.inicio-nav a:hover {
  color: #ffd6ec;
}

@media (min-width: 768px) {
  .inicio-header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .inicio-logo {
    text-align: left;
  }

  .inicio-nav {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}
/* ------------------   ICONES-ANIMAÇÃO ------------------ */

.floating-logos {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-logo {
  position: absolute;
  width: 50px;
  height: auto;
  opacity: 0.3;
  user-select: none;
}


@keyframes floatLogo {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-120vh) translateX(50vw);
    opacity: 0;
  }
}

/* ------------------ SEÇÕES BASE ------------------ */
.section {
  padding: 3rem 2rem;
  width: 100%;
}  

/*.section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
} */

.section h2 {
  color: #A62F6A;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.section ul {
  list-style: disc inside;
}

/* SEÇÃO BASE - MOBILE */
@media (max-width: 768px) {
  .section {
    padding: 2rem 1rem;
  }
}

/* ------------------ SEÇÃO HERO ------------------ */

/* Imagem do coração */
.decoracao-coracao {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  z-index: 3;
}

/* Imagem da cadeira */
.decoracao-cadeira {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  z-index: 3;
}

.section-hero {
  background: url('../img/Fundopink.jpg') center/cover no-repeat fixed;
  color: #551E3E;
  text-align: center;
  padding: 12rem 15rem;
  position: relative;
  overflow: hidden;
  font-size: 1.6rem;
}

.hero-content {
  position: relative;
  padding: 7rem 2rem;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 1;
}

/* Camada de fundo com opacidade */
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgb(255, 254, 254);
  z-index: 0;
  border-radius: 1rem;
  opacity: 0.9;
}

/* Garante que o conteúdo fique acima da camada */
.hero-content *:not(.hero-bg) {
  position: relative;
  z-index: 1;
}

/* ESTADO INICIAL DAS FRASES */
.section-hero h1,
.section-hero p {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.slide-left {
  transform: translateX(-100%);
    font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: negrito;
}
.slide-right {
  transform: translateX(100%);
    font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: negrito;
}

.section-hero .slide-left.show,
.section-hero .slide-right.show {
  transform: translateX(0);
  opacity: 1;
}

/* BOTÕES */
.hero-buttons {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons.show {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  padding: 0.75rem 1.5rem;
  margin: 0 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  transform: scale(1.05);
}

.btn.tiktok {
  background: linear-gradient(135deg, #66254a, #B83A78);
  color: white;
}

.btn.kwai {
  background: linear-gradient(135deg, #66254a, #B83A78);
  color: white;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-hero {
    padding: 2rem 1.5rem;
    font-size: 0.9rem;
  }
  .hero-content {
    padding: 2rem 1rem;
  }
  
  
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    margin: 0.5rem 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .decoracao-coracao {
    width: 80px;
    left: -35px;
  }

  .decoracao-cadeira {
    width: 80px;
    right: -20px; 
  }
}



/* ------------------ SEÇÃO CTA ------------------ */
.section-cta {
  background: #F7F3F5;
  text-align: center;
  padding: 4rem 2rem;
}

.section-cta a {
  display: inline-block;
  margin-top: 1rem;
  background: #A62F6A;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

/* ------------------ SEÇÃO IMAGEM ------------------ */
.section-cta {
  background: #F7F3F5;
  text-align: center;
  padding: 4rem 2rem;
}

.section-cta a {
  display: inline-block;
  margin-top: 1rem;
  background: #A62F6A;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

/* ------------------ SEÇÃO IMAGEM ------------------ */
.section-imagem {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../img/Fundoo.jpg') center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Agora centraliza verticalmente */
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
  gap: 2rem; /* espaço entre as imagens */
}


/* Logos flutuantes (opcional) */
.floating-logos {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center; /* Centraliza os logos */
  gap: 1rem;
  z-index: 3;
  padding: 0 1rem;
  box-sizing: border-box;
}

.floating-logo {
  width: 40px;
  height: auto;
  opacity: 0.2;
}


/* Imagem central */
.img-central {
  width: 500px;
  max-width: 1000px;
  height: auto;
  z-index: 1;
  padding: 1rem;
}

/* Imagem inferior */
.img-bloco {
  width: 800px;
  max-width: 1200px;
  height: auto;
  z-index: 1;
  padding: 1rem;
  pointer-events: none;
  
}

/* Responsivo */
@media (max-width: 768px) {
  .section-imagem {
    padding: 2rem 0;
    min-height: auto;
    
  }

  .floating-logos {
    top: 0.5rem;
    gap: 0.5rem;
  }

  .floating-logo {
    width: 28px;
  }

  .img-central{
    width: 200px;
    max-width: 600px;
    padding: 0.5rem;
    z-index: 4;
  }
  .img-bloco {
    max-width: 100%;
    padding: 0.5rem;
    z-index: 4;
  }
}





/* ------------------ FOOTER ------------------ */
footer {
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* ------------------ BARRAS COLORIDAS ------------------ */
.barra-cores,
.barra-cores-dupla {
  display: flex;
  height: 30px;
  width: 100%;
}

.barra-cores::before,
.barra-cores::after,
.barra-cores div,
.barra-cores-dupla::before,
.barra-cores-dupla::after {
  content: '';
  flex: 1;
}

.barra-cores::before { background-color: #f17dc4; }
.barra-cores div     { background-color: #c42d8e; }
.barra-cores::after  { background-color: #4e1c38; }

.barra-cores-dupla::before { background-color: #c42d8e; }
.barra-cores-dupla::after  { background-color: #4e1c38; }

/* BARRAS - MOBILE */
@media (max-width: 768px) {
  .barra-cores,
  .barra-cores-dupla {
    height: 20px;
  }
}





#quem-somos-lirios {
  position: relative;
  background: url('../img/Fundoo.jpg') center/cover no-repeat fixed;
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
}


#quem-somos-lirios::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.0);
  z-index: 0;
}

#quem-somos-lirios .conteudo {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
   font-weight: 500px;
  font-style: negrito;
}

#quem-somos-lirios h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #551e3e;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
  
}

#quem-somos-lirios h3 {
  font-size: 1.6rem;
  color: #551e3e;
  font-weight: 500;
  margin: 1.5rem 0 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
      font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: negrito;
}

#quem-somos-lirios p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #551e3e;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

/* BLOCO: imagem à esquerda e texto à direita */
.bloco-imagem-texto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.imagem-lado {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.texto-lado {
  max-width: 500px;
  text-align: left;
}

.texto-lado h3 {
  color: #ff5e9c;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  
  
}

.texto-lado p {
  color: #e6e6e6;
  font-size: 1.05rem;
}

/* BLOCO: texto à esquerda e vídeo à direita */
.bloco-video-texto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  
}

.video-lado {
  width: 320px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(255, 94, 0, 0.3);
}

.imagem-lateral-esquerda {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -120px;
  margin: auto 0;           /* Centraliza verticalmente */
  transform: none;          /* Remove o translateY */
  width: 380px;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}


/* Oculta por padrão */
.imagem-lateral-topo,
.imagem-lateral-base {
  display: none;
  position: absolute;
  width: 140px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}


/* Animações suaves com fade e slide */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.animated {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}


@media (max-width: 950px) {
  .imagem-lateral-esquerda {
    left: -250px; /* ajuste para telas menores *//* ajuste o tamanho conforme necessário */
  }
}








/* RESPONSIVO */
@media (max-width: 768px) {
  .bloco-imagem-texto,
  .bloco-video-texto {
    flex-direction: column;
    text-align: center;
  }

  .texto-lado {
    text-align: center;
  }

  .video-lado,
  .imagem-lado {
    width: 100%;
    max-width: 90vw;
  }

  #quem-somos-lirios h2 {
    font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: negrito;
  }

  .imagem-lateral-esquerda {
    display: none;
  }
}

/* Exibe e posiciona somente em telas até 414px */
@media (max-width: 768px) {
  .imagem-lateral-topo {
    display: block;
    top: 0;
    left: 40%;
    top: 0px; /* ajuste conforme necessário */
    width: 90px; /* ajuste conforme necessário */
   
  }

  .imagem-lateral-base {
    display: block;
    bottom: 0;
    left: -70px;
    width: 200px; /* ajuste conforme necessário */
  }
}





/*mossas frentes de trabalho*/

.nossos-servicos-section {
  background: url('../img/Fundoo.jpg') center/cover no-repeat fixed;
  background-size: cover;
  padding: 4rem 1rem;
  color: #c42b89;
  scroll-behavior: smooth;
  position: relative;
}

.nossos-servicos-container {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
}

.nossos-servicos-titulo {
  text-align: center;
  color: #551e3e;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
}

.servico-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.9);
  z-index: 1;
}

.servico-conteudo {
  flex: 1;
  padding: 2rem;
  min-width: 300px;
  z-index: 1;
}

.plataforma-titulo {
  font-size: 1.8rem;
  color: #551e3e;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
}

.servico-lista {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.servico-lista li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.servico-lista li::before {
  position: absolute;
  left: 0;
  color: #fff;
}

.cta-botao {
  display: inline-block;
  background-color: #c42b89;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 0 #551e3e, 0 4px 15px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  cursor: pointer;
  text-align: center;
}

.cta-botao:hover {
  background-color: #e23a9e;
  box-shadow: 0 8px 15px rgba(196, 43, 137, 0.6), 0 4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.cta-botao:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #551e3e;
  background-color: #a82371;
}

/* Animação para botão com destaque */
.botao-com-destaque {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.piscando {
  width: 12px;
  height: 12px;
  background-color: #ff4081;
  border-radius: 50%;
  animation: piscar 1s infinite;
  box-shadow: 0 0 10px #ff4081;
}

@keyframes piscar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.servico-imagem {
  flex: 1;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  min-width: 300px;
  z-index: 1;
}

.servico-imagem .frase {
  background: rgba(196, 43, 137, 0.9);
  padding: 1rem 1.5rem;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 10px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 1000;
  z-index: 1;
}

/* Imagens específicas */
.imagem-tiktok {
  background-image: url('../img/1.png');
}

.imagem-kwai {
  background-image: url('../img/2.png');
}

.imagem-lateral-direita {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -120px;
  margin: auto 0;           /* Centraliza verticalmente */
  transform: none;          /* Remove o translateY */
  width: 380px;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}


/* Responsivo */
@media (max-width: 768px) {
  .servico-item {
    flex-direction: column;
  }

  .nossos-servicos-titulo {
    font-size: 2rem;
  }

  .plataforma-titulo {
    font-size: 1.5rem;
  }

  .cta-botao {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .imagem-lateral-direita {
    display: none;
  }
}


/* ------------------ quem pode participar ------------------ */
/* SEÇÃO */
.publico-section {
  position: relative;
  padding: 80px 20px;
  background: url('../img/Fundopink.jpg') center/cover no-repeat fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

/* CONTAINER */
.publico-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

/* TÍTULO */
.publico-titulo {
  font-family: 'PoppinsTitle', sans-serif;
  font-size: 36px;
  color: #551E3E;
    font-weight: 1000;
  font-style: negrito;
  margin-bottom: 50px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* BLOCOS */
.publico-blocos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  z-index: 1;
}

/* ITEM */
.publico-item {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 30px 5px;
  box-shadow:
    -8px 0 16px rgba(0, 0, 0, 0.02),
    8px 0 16px rgba(0, 0, 0, 0.08),
    0 6px 12px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 1;
}


.publico-item:hover {
  transform: translateY(-5px);
}

/* ÍCONE */
.publico-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* SPAN */
.publico-item span {
  font-family: 'PoppinsTitle', sans-serif;
  font-size: 18px;
  color: #551E3E;
  margin-top: 10px;
  font-weight: 1000;
  font-style: negrito;
}

/* PARÁGRAFO */
.publico-item p {
  font-family: 'PoppinsText', sans-serif;
  font-size: 15px;
  color: #c42b89;
  margin: 10px 0 0;
  font-weight: 700;
  font-style: negrito;
}

/* TEXTO EXTRA */
.publico-extra {
  font-family: 'PoppinsText', sans-serif;
  font-size: 13px;
  color: #551E3E;
  margin-top: 8px;
  font-weight: 700;
  font-style: negrito;
}

/* SEÇÃO PARTICIPANTES DENTRO DO MESMO BLOCO */
.publico-participantes {
  margin-top: 60px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.706);
}

.participantes-titulo {
  font-family: 'PoppinsTitle', sans-serif;
  color: #551E3E;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

/* DUAS COLUNAS */
.participantes-duas-colunas {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.participantes-lista {
  flex: 1 1 250px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'PoppinsText', sans-serif;
  color: #c42b89;
  font-size: 16px;
  
}

.participantes-lista li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.imagem-esquerda-publico {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -120px;
  margin: auto 0;            /* Isso centraliza verticalmente */
  transform: none;           /* Remove o translateY se for usar o método do margin */
  width: 380px;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

.publico-item {
  position: relative; /* necessário para posicionar ícone */
  overflow: visible;
}

.publico-icon-topo {
  position: absolute;
  top: -30px; /* metade para fora */
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  z-index: 2;
}

.participantes-img-direita {
  position: absolute;
  right: -100px;
  bottom: -2px;
  width: 240px;
  z-index: 1;
}

/* ajuste necessário para o container pai */
.publico-participantes {
  position: relative;
  overflow: visible;
}


/* Animações */
/* Estado inicial: invisível e deslocado */
.fade-up-publico,
.fade-in-publico,
.slide-left-publico,
.slide-right-publico {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Movimentos iniciais */
.fade-up-publico {
  transform: translateY(40px);
}

.fade-in-publico {
  transform: scale(0.95);
}

.slide-left-publico {
  transform: translateX(-60px);
}

.slide-right-publico {
  transform: translateX(60px);
}

/* Quando animado, fica visível e volta à posição */
.animated-publico {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) scale(1) !important;
}



/* RESPONSIVO */
@media (max-width: 768px) {
  .participantes-duas-colunas {
    flex-direction: column;
    align-items: stretch;
    gap: 0; /* remove gap */
  }

    .participantes-img-direita {
    display: none;
  }

  .participantes-lista {
    flex: none;
    width: 100%;
    padding: 0 5px;
    font-size: 15px;
    margin-bottom: 5px; /* espaçamento menor */
  }

  /* Remove margem da última lista para eliminar espaçamento extra embaixo */
  .participantes-lista:last-child {
    margin-bottom: 0;
  }

  .participantes-lista li {
    font-size: 15px;
    line-height: 1.5;
  }

  .participantes-titulo {
    font-size: 22px;
  }

  .publico-participantes {
    padding: 20px 15px;
  }

  .imagem-esquerda-publico {
    display: none; /* Esconde a imagem lateral esquerda em telas menores */
  }
}


/* ------------------ depoimentos ------------------ */
.depoimentos-sec {
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('../img/Fundoo.jpg') center/cover no-repeat fixed;
  background-size: cover;
}

.depoimentos-sec h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #551E3E;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 3;
}

.depoimento-item {
  position: relative;
  background: #fdfdfd;
  border-radius: 10px;
  padding: 20px 15px 15px;
  max-width: 220px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.706);
  z-index: 3;
}

.foto-perfil {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border: 4px solid #551E3E;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  top: -45px;
  background: #fff;
}

.foto-perfil img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nome-usuario {
  margin-top: -35px;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 1rem;
  color: #551E3E;
}

/* Suporte para vídeos verticais */
.depoimento-item video,
.depoimento-item img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: 8px;
}

/* NOVO: Classe dedicada para vídeos */
.video-depoimento {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  max-height: 480px;
}

/* Corações decorativos */
.decoracao-coracoes {
  position: absolute;
  right: -15px;
  top: 50%; /* posiciona no meio da altura da viewport */
  transform: translateY(-50%); /* desloca a imagem pra cima metade da altura dela */
  max-width: 170px;
  
  z-index: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .decoracao-coracoes {
    display: none;
  }

    .depoimentos-grid {
    gap: 30px;
  }

    .depoimento-item {
    top: 20px;
  }
}

/* Responsivo para monitores grandes */
@media (min-width: 1920px) {
  .depoimentos-sec {
    padding: 80px 60px;
  }

  .depoimentos-grid {
    gap: 5px;
  }



  .depoimentos-sec h2 {
    font-size: 3rem;
  }

  .decoracao-coracoes {
    right: -30px; /* Ajusta a posição para monitores grandes */
    max-width: 300px; /* Aumenta o tamanho da imagem */
  }
}



/* SEÇÃO FINAL – CHAMADA PARA AÇÃO */
/* SEÇÃO FINAL – CHAMADA PARA AÇÃO */
.chamada-final-section {
  background: url('../img/Fundoo.jpg') center/cover no-repeat fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #551E3E;
  padding: 200px 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.chamada-final-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 98, 213, 0.1); /* escurece o fundo */
  z-index: 0;
}

.chamada-titulo {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: fadeSlideFromRight 1.5s ease forwards;
  opacity: 0;
}

.chamada-subtitulo {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

/* GRUPO DE BOTÕES */
.chamada-botoes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* ESTILO DOS BOTÕES */
.cta-btn {
  background-color: #c42b89;
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(196, 43, 137, 0.4);
}

.cta-btn:hover {
  background-color: #e23a9e;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(196, 43, 137, 0.6);
}

.imagem-direita-chamada {
  position: absolute;
  bottom: 200px;
  right: 0;
  max-width: 350px;
  height: auto;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none; /* para não atrapalhar cliques nos botões */
}

@media (max-width: 1280px) {
  .chamada-final-section {
    padding: 100px 50px;
  }

  .chamada-titulo {
    font-size: 1.8rem;
  }

  .chamada-subtitulo {
    font-size: 1.1rem;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 12px 18px;
  }

  .imagem-direita-chamada {
    max-width: 250px;
    bottom: 150px; /* ajuste conforme necessário */
    
  }
}

@media (max-width: 1057px){
  .imagem-direita-chamada{
    top: 0;
  }
  
}

/* MOBILE RESPONSIVO */
@media (max-width: 768px) {
  .chamada-final-section {
    padding: 60px 15px;
  }

  .chamada-titulo {
    font-size: 2rem;
  }

  .chamada-subtitulo {
    font-size: 1.1rem;
  }

  .chamada-botoes {
    flex-direction: column;
    gap: 15px;
    align-items: center; /* <-- centraliza os botões na vertical */
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

    .imagem-direita-chamada {
    max-width: 120px;
    right: 30%;
   
    top: 10px;
  }
}

/* ANIMAÇÃO (opcional) */
@keyframes fadeSlideFromRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}


@media (min-width: 1920px) {
  .imagem-lateral-esquerda
  .imagem-esquerda-publico {
  position: absolute;
  right: -15px;
  top: 50%; /* posiciona no meio da altura da viewport */
  transform: translateY(-50%); /* desloca a imagem pra cima metade da altura dela */
  max-width: 170px;
  bottom: unset;
  top: 0;
  z-index: 0;
  opacity: 0.9;
  }
}





