/* Reset de estilos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Corpo da página */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #2c3e50;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

/* Container principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background-color: #fdfdfd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  width: 100%;
  text-align: center;
  border: 4px solid #00cc99;
  animation: borderGlow 3s infinite alternate ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
}

/* Cabeçalho */
.headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.headline span {
  color: #00cc99;
  font-weight: bold;
}

/* Seção dos vídeos */
.video-section {
  margin: 60px 0;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 25px;
}

/* Moldura animada ao redor do vídeo */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 650px;
  margin: 30px auto;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 4px solid transparent;
  animation: borderPulse 2.5s infinite ease-in-out;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@keyframes borderPulse {
  0% {
    border-color: #00cc99;
  }
  50% {
    border-color: #2c3e50;
  }
  100% {
    border-color: #00cc99;
  }
}

/* Seção CTA */
.cta-section {
  margin-top: 50px;
}

.btn-cta {
  display: inline-block;
  padding: 18px 40px;
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  background-color: #1a252f;
  transform: scale(1.03);
}

/* Texto legal */
.legal {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin-top: 50px;
}

/* Responsividade */
@media (max-width: 768px) {
  .headline {
    font-size: 1.8rem;
  }

  .video-section,
  .cta-section {
    margin-bottom: 30px;
  }

  .btn-cta {
    width: 100%;
    padding: 20px 0;
    font-size: 1.3rem;
  }

  .legal {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .headline {
    font-size: 1.6rem;
  }

  .btn-cta {
    padding: 18px 0;
  }
}

/* Animação da borda */
@keyframes borderGlow {
  0% {
    border-color: #00cc99;
    box-shadow: 0 0 8px #00cc99;
  }
  50% {
    border-color: #2c3e50;
    box-shadow: 0 0 20px #2c3e50;
  }
  100% {
    border-color: #00cc99;
    box-shadow: 0 0 8px #00cc99;
  }
}

/* Botão flutuante WhatsApp */
.whatsapp-support {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00cc99;
  color: white;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
  font-size: 1rem;
}

.whatsapp-support:hover {
  background-color: #2c3e50;
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Cabeçalho com logo centralizada */
header {
  text-align: center;
  padding: 20px 0;
}

.logo {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 30px 20px;
  background-color: #f6f6f6;
  color: #444;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  border-top: 2px solid #00cc99;
}

footer a {
  color: #00cc99;
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  text-decoration: underline;
  color: #2c3e50;
}
body {
  font-family: 'Roboto', sans-serif;
  background-image: url(''); /* Caminho da imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* opcional: mantém o fundo fixo ao rolar */
  color: #2c3e50;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

