* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #3c3e3f 0%, #000000 100%);
  color: #222;
}
header {
  padding: 60px 20px 30px 20px;
  text-align: center;
  background: linear-gradient(90deg, #e28e11 0%, #641c12 100%);
  color: #ffffff;
}
header h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
header i {
  margin-right: 10px;
}
header p {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0.95;
}
section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}
.intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: #fffde7;
  border-radius: 16px;
  box-shadow: 0 2px 12px #ffe08255;
  margin-bottom: 30px;
}
.intro img {
  max-width: 400px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 8px #ffe08277;
}
.intro .text {
  flex: 1;
}
.intro h2 {
  color: #f80800;
  margin-bottom: 10px;
}
.benefits {
  margin-top: 18px;
  list-style: none;
  padding-left: 0;
}
.benefits li {
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: #000000;
}
.benefits i {
  color: #550299;
  margin-right: 8px;
}
.consequences h2 {
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.card {
  background: #ffe7e7;
  border-radius: 14px;
  box-shadow: 0 2px 8px #ffffff33;
  padding: 28px 22px;
  flex: 1 1 250px;
  max-width: 320px;
  min-width: 220px;
  text-align: center;
  transition: transform 0.2s;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 18px #fdfcfc55;
}
.card i {
  font-size: 2.2rem;
  color: #5b00af;
  margin-bottom: 10px;
}
.card h3 {
  margin-bottom: 10px;
  color: #013bda;
}
.monitoramento {
  background: #fffde7;
  border-radius: 16px;
  box-shadow: 0 2px 12px #ffffff55;
  margin: 40px auto;
}
.monitoramento h2 {
  color: #ff0000;
  margin-bottom: 20px;
  text-align: center;
}
.monitoramento-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}
.monitoramento-text {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.monitoramento-text ul {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}
.monitoramento-text li {
  margin-bottom: 10px;
  color: #4e0097;
  font-size: 1.05rem;
}
.monitoramento-text i {
  margin-right: 8px;
}
.monitoramento img {
  flex: 1;
  max-width: 350px;
  min-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px #5e21a599;
  background: #000000;
  object-fit: cover;
  align-self: center;
  display: block;
  margin: 0;
}
.actions {
  background: linear-gradient(90deg, #9dbcce 0%, #000000 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px #ffe08233;
  margin-bottom: 40px;
}
.actions h2 {
  color: #000000;
  margin-bottom: 24px;
  text-align: center;
}
.actions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}
.actions-list > div {
  background: #422691;
  border-radius: 12px;
  box-shadow: 0 2px 8px #51009c33;
  padding: 22px 18px;
  flex: 1 1 180px;
  max-width: 220px;
  min-width: 150px;
  text-align: center;
  transition: transform 0.2s;
}
.actions-list > div:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 18px #7700ff55;
}
.actions-list i {
  font-size: 2rem;
  color: #00f5b8;
  margin-bottom: 8px;
}
.actions-list p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.02rem;
}

@media (max-width: 900px) {
  .intro, .monitoramento-content, .cards, .actions-list {
      flex-direction: column;
      align-items: stretch;
  }
  .intro img, .monitoramento img {
      max-width: 100%;
      min-width: 0;
      margin: 0 auto 20px auto;
  }
  section {
      padding: 24px 8px;
  }
  header {
      padding: 36px 8px 18px 8px;
  }
  .card, .actions-list > div {
      max-width: 100%;
      min-width: 0;
      padding: 18px 10px;
  }
}

@media (max-width: 600px) {
  header h1 {
      font-size: 1.5rem;
  }
  .intro h2, .consequences h2, .monitoramento h2, .actions h2 {
      font-size: 1.1rem;
  }
  .monitoramento-text, .intro .text {
      font-size: 0.98rem;
  }
  .benefits li, .monitoramento-text li, .actions-list p {
      font-size: 0.95rem;
  }
  footer {
      padding: 24px 8px 12px 8px;
      font-size: 0.95rem;
  }
}

.voltar-home {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: var(--main-color);
  color: var(--bg-color);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 9999;
  text-decoration: none;
}

.voltar-home:hover {
  background-color: #ffffff;
  transform: scale(1.05);
}

.voltar-home {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: var(--main-color);
    color: var(--bg-color);
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 9999;
    text-decoration: none;
  }
  
  .voltar-home:hover {
    background-color: #ffffff;
    transform: scale(1.05);
  }

  .cta-container {
    text-align: center;
    margin: 60px 0 40px; /* Espaço antes do footer */
  }
  
  .btn-quero-utilizar {
    background-color: #8616b9;       /* Verde vibrante */
    color: #fff;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
  }
  
  .btn-quero-utilizar:hover {
    background-color: #000000;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
  }
  

  footer {
    background-color: #000000 !important;
    color: #ffffff;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
  }
  
  footer a {
    color: #aaa;
    text-decoration: none;
  }
  
  footer a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  footer h3 {
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
  }
  
  footer .social-icons a {
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
  }
  