/* RESET BÁSICO */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ESTILO GLOBAL */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* CONTAINER CENTRAL */
.container {
  max-width: 720px;
  margin: 10px auto;
  padding: 0 20px;
}

/* FUNDO DO TOPO (FULL WIDTH) */
.logo-wrapper {
  width: 100%;
  background-color: #02c2b8;
}

/* LOGO CENTRALIZADO */
.logo-container {
  max-width: 720px;
  margin: 10px auto;
  text-align: center;
  padding: 20px 0;
}

.logo-container img {
  max-width: 220px;
}

/* SUBTÍTULO */
.subtitle {
  text-align: center;
  font-size: 18px;
  color: #000000;
  margin-bottom: 30px;
  margin-top: 20px;
}

/* PRODUTO */
.product-container {
  text-align: center;
  margin-bottom: 40px;
}

.product-container img {
  max-width: 410px;
}

/* CTA */
.cta-container {
  text-align: center;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 16px 30px;
  background-color: #02c2b8;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #029e96;
}

/* DIVISOR */
.divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 40px 0;
}

/* TRUST BADGES */
.trust-container {
  margin-top: 18px;
  text-align: center;
}

.trust-container img {
  max-width: 550px;
  width: 100%;
  opacity: 0.85;
  margin-bottom: 30px;
}

.trust-text {
  font-size: 16px;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
}

/* SEÇÕES */
.section {
  margin-bottom: 35px;
}

.section-title {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 12px;
}

/* LISTA */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* CAIXA DE ALERTA */
.info-box {
  background-color: #f5f5f5;
  padding: 18px;
  border-left: 4px solid #999;
  margin: 40px 0;
  font-size: 15px;
}

/* RODAPÉ */
.footer-note {
  font-size: 13px;
  color: #777;
  margin-top: 40px;
  text-align: center;
}

/* DISCLAIMER BOX */
.disclaimer-box {
  margin-top: 40px;
  background-color: #929292;
  padding: 18px 20px;
}

.disclaimer-box p {
  font-size: 10px;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}


/* RESPONSIVO */
@media (max-width: 600px) {
  .product-container img {
    max-width: 220px;
  }
}