

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  background-image: url(''); /* Caminho da imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #2c3e50;
  line-height: 1.7;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #f4f4f4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-align: center;
  width: 100%;
}

/* Logo */
.logo {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.3);
}

/* Headline */
.headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  word-break: break-word;
  padding: 0 10px;
}


.headline span {
  display: block;
  margin-top: 10px;
  color: #00cc99;
  font-weight: bold;
}

/* Seção Sobre o Método */
.about-method-section {
  margin-bottom: 40px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.section-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.method-benefits {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.method-benefits li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

/* Vídeo */
.video-section {
  margin: 50px 0;
  text-align: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 4px solid transparent;
  animation: borderPulse 2s infinite ease-in-out;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000;
  border: none;
}


@keyframes borderPulse {
  0% { border-color: #00cc99; }
  50% { border-color: #2c3e50; }
  100% { border-color: #00cc99; }
}

/* CTA */
.cta-section {
  margin-top: 40px;
}

.btn-cta {
  display: inline-block;
  padding: 18px 35px;
  background-color: #00cc99;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  animation: ctaPulse 3s infinite ease-in-out;
}

.btn-cta:hover {
  background-color: #00b388;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 204, 153, 0.3);
}

@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 rgba(0, 204, 153, 0.0); }
  50% { box-shadow: 0 0 25px rgba(0, 204, 153, 0.8); }
  100% { box-shadow: 0 0 0 rgba(0, 204, 153, 0.0); }
}

/* Legal */
.legal {
  font-size: 1rem;
  color: #aaa;
  text-align: center;
  margin-top: 40px;
}

/* Sobre */
.sobre-section p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

.sobre-section ul {
  list-style: none;
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.sobre-section ul li::before {
  content: "✔ ";
  color: #00cc99;
  font-weight: bold;
  margin-right: 5px;
}

/* Responsivo */
@media (max-width: 768px) {
  .headline {
    font-size: 1.4rem;
    padding: 0 10px;
  }

  .logo {
    width: 70%;
    margin-bottom: 0;
  }

  .btn-cta {
    width: 100%;
    padding: 20px 0;
    font-size: 1.4rem;
  }

  .legal {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .headline {
    font-size: 1.2rem;
    padding: 0 10px;
  }

  .logo {
    max-width: 90%;
  }

  .btn-cta {
    padding: 18px 0;
  }
}
