/* RESET */
:root {
  --cor01: #00a7cf;
  --cor02: #02bce5;
  --cor03: #ffffff;
  --cor04: #e12d77;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f5f5;
  color: #333;
  text-align: center;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #00a7cf, #02bce5, #e12d77);
  padding: 20px;
  color: #fff;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.sub {
  font-size: 1.2rem;
}

/* VIDEO */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container video {
  width: 400px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

iframe {
  width: 100%;
  height: 390px;
  border-radius: 12px;
  border: none;
}

/* PRODUTO */
.produto-container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px;
  background-color: #fffafc;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 1100px;
  margin: 30px auto;
}

.produto-imagem img {
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.produto-texto h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  font-size: 24px;
  color: #333;
  text-align: left;
}

.produto-texto p {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  word-break: normal;
  white-space: normal;
  margin: 0 0 12px 0;
  padding: 0;
}

.produto-texto ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.produto-texto ul li {
  margin: 8px 0;
  font-size: 16px;
  color: #444;
}

.botao-comprar {
  display: inline-block;
  background: #ff0066;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
}

.botao-comprar:hover {
  background: #e6005c;
}

/* CTA */
.cta {
  margin: 40px 20px;
}

.btn {
  display: inline-block;
  padding: 20px 40px;
  background: #e12d77;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #00a7cf;
}

.garantia {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
}

/* DEPOIMENTOS */
.depoimentos {
  border: 3px solid #ccc;
  border-radius: 12px;
  padding: 20px 60px 20px 20px;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
}

.depoimentos h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
  font-size: 22px;
  color: #333;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card span {
  display: block;
  margin-top: 10px;
  color: #666;
  font-size: 0.9rem;
}

/* GALERIA */
.galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.galeria img {
  width: 100%;
  border-radius: 8px;
  border: 3px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.galeria img:hover {
  transform: scale(1.03);
  border-color: #ff0077;
}

/* SEGURANÇA */
.seguranca {
  background: #ffffff;
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  border: 3px solid #ccc;
  border-radius: 12px;
  text-align: center;
}

.seguranca h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  margin-bottom: 26px;
}

.seguranca p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.selos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.selos img {
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.seguranca .garantia {
  font-weight: bold;
  color: #d81b60;
}

/* OFERTA */
.off > a {
  display: inline-block;
  padding: 20px 40px;
  margin: 40px;
  background: #e12d77;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

/* FOOTER */
footer {
  background: #000000;
  color: #aaa;
  padding: 20px;
}

footer a {
  color: #34c759;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVIDADE */
@media (max-width: 600px) {
  iframe {
    height: 250px;
  }

  header h1 {
    font-size: 1.5rem;
  }

  .galeria {
    grid-template-columns: 1fr;
  }

  .produto-container {
    flex-direction: column;
    gap: 20px;
  }

  .produto-imagem img {
    width: 100%;
  }

  .produto-texto {
    text-align: center;
  }
}
