    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    }
    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      color: #333;
      background-color: #fefefe;
    }
    header {
      background: white;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-align: center;
    }
    header img {
      max-height: 60px;
    }
    .hero {
      background-color: #67B13D;
      background-image: -webkit-linear-gradient(135deg, #67B13D, #64A002); /* Safari */
      background-image: linear-gradient(135deg, #67B13D, #64A002); /* padrão */
      color: white;
      padding: 20px 20px;
      text-align: center;
      min-height: 100px;
    }
    .hero h1 {
      font-size: 2.0em;
      margin-bottom: 10px;
    }
    .hero p {
      font-size: 1.2em;
      line-height: 1.6;
      margin-bottom: 10px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero button {
      padding: 5px 10px;
      font-size: 1em;
      background-color: #FF4C4C;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s, box-shadow 0.3s;
    }
    .hero button:hover {
      background-color: #e33d3d;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    .section {
      padding: 40px 20px;
      max-width: 1000px;
      margin: auto;
      text-align: center;
    }
    .section h2 {
      margin-bottom: 20px;
      color: #FF4C4C;
    }
    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      flex: 1 1 250px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    .card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 10px 10px 0 0;
      display: block;
    }
    .card-content {
      padding: 20px;
    }
    .card h3 {
      margin: 10px 0;
    }
    .btn-red {
      padding: 10px 20px;
      background-color: #FF4C4C;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 0.8em;
      cursor: pointer;
      transition: background-color 0.3s, box-shadow 0.3s;
      margin-bottom: 20px;
    }
    .btn-red:hover {
      background-color: #e33d3d;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
    }
    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 30px 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 600px;
      position: relative;
    }
    #modal-parceiro .modal-content ul {
      padding-left: 20px; /* recuo da lista (dots) em relação à borda esquerda do conteúdo */
      margin-top: 10px;   /* espaço acima da lista */
    }
    .close {
      position: absolute;
      top: 15px; /* ou 10px */
      right: 20px; /* ou 15px */
      font-size: 28px;
      color: #555;
      cursor: pointer;
    }
.footer {
  width: 100%;
  background-color: #FAFFF2; /* Cor de fundo clara */
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
}

.footer-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-image {
  max-width: 140px;
  margin-bottom: 10px;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-media p {
  font-size: 1em;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.social-media a img {
  height: 24px;
  width: auto;
}

/* Links da coluna de política */
.footer-links {
  flex: 1;
  min-width: 200px;
  text-align: left;
}

.footer-links h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 1em;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #67B13D;
}

.footer-bottom {
  width: 100%;
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  background-color: #67B13D;
  text-align: center;
  padding: 16px;
  color: #fff;
  font-size: 1em;
  font-weight: 400;
  box-sizing: border-box;
}

    .cta-button {
      margin-top: 15px;
      padding: 10px 20px;
      background-color: #FF4C4C;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .cta-button:hover {
      background-color: #e33d3d;
    }
    input, select {
      padding: 10px;
      margin: 5px;
      width: 90%;
      max-width: 300px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .lead-form button {
      margin-top: 15px;
      padding: 10px 20px;
      background-color: #FF4C4C;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s, box-shadow 0.3s;
    }
    .lead-form button:hover {
      background-color: #e33d3d;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    .countdown {
      font-size: 1.5em;
      margin-top: 20px;
      color: #FF4C4C;
    }
    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 28px;
      color: #555;
      cursor: pointer;
      font-weight: bold;
      transition: color 0.3s;
    }
    .close:hover {
      color: #FF4C4C;
    }