.eco-vfm-calculadora {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f6fbf2 0%, #ffffff 100%);
  padding: 34px 15px;
}

.eco-vfm-card {
  max-width: 780px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(0, 65, 32, 0.14);
  border: 1px solid #d9ecd2;
  overflow: hidden;
  position: relative;
}

.eco-vfm-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, #0b6b35, #6dc43a, #0b6b35);
}

.eco-vfm-header {
  text-align: center;
  margin-bottom: 24px;
}

.eco-vfm-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #e9f8ec;
  border: 1px solid #cce9c6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 12px;
  font-size: 28px;
}

.eco-vfm-header h2 {
  color: #064d2c;
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.15;
  margin: 0 0 10px;
  font-weight: 800;
}

.eco-vfm-header p {
  color: #405043;
  font-size: 16px;
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto;
}

.eco-vfm-form {
  display: grid;
  gap: 15px;
}

.eco-vfm-field label {
  display: block;
  font-weight: 700;
  color: #064d2c;
  margin-bottom: 7px;
}

.eco-vfm-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 14px;
  border-radius: 12px;
  border: 1px solid #b9d5b0;
  font-size: 16px;
  color: #1d2b21;
  background: #ffffff;
  outline: none;
}

.eco-vfm-field input:focus {
  border-color: #2c8c43;
  box-shadow: 0 0 0 4px rgba(44, 140, 67, 0.15);
}

.eco-vfm-button {
  margin-top: 8px;
  background: #0b6b35;
  color: #ffffff;
  border: none;
  padding: 16px 18px;
  font-size: 17px;
  font-weight: 800;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 16px rgba(11, 107, 53, 0.2);
}

.eco-vfm-button:hover {
  background: #084d28;
  transform: translateY(-1px);
}

.eco-vfm-resultado {
  margin-top: 24px;
  padding: 22px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.55;
}

.eco-vfm-ok {
  background: #e9f8ec;
  border: 1px solid #8fd19e;
  color: #064d2c;
}

.eco-vfm-warning {
  background: #fff7e6;
  border: 1px solid #f0c36d;
  color: #674600;
}

.eco-vfm-danger {
  background: #fdeaea;
  border: 1px solid #e09a9a;
  color: #7a1717;
}

.eco-vfm-resultado strong {
  font-weight: 800;
}

.eco-vfm-small {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: #5c665c;
}

.eco-vfm-cta {
  margin-top: 24px;
  padding: 18px;
  border-radius: 16px;
  background: #f4faf1;
  border: 1px solid #d8ead2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.eco-vfm-cta p {
  margin: 0;
  color: #064d2c;
  font-weight: 700;
}

.eco-vfm-cta a {
  display: inline-block;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.eco-vfm-cta a:hover {
  color: #ffffff;
  background: #1fb85a;
}

@media (max-width: 600px) {
  .eco-vfm-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .eco-vfm-cta {
    display: block;
    text-align: center;
  }

  .eco-vfm-cta a {
    margin-top: 12px;
  }
}

.eco-vfm-field small {
  display: block;
  margin-top: 6px;
  color: #5c665c;
  font-size: 13px;
  line-height: 1.4;
}

.eco-vfm-summary {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
}

.eco-vfm-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 14px;
}

.eco-vfm-result-card {
  background: #ffffff;
  border: 1px solid #d8ead2;
  border-radius: 16px;
  padding: 16px;
  color: #243127;
}

.eco-vfm-result-card h3 {
  margin: 0 0 12px;
  color: #064d2c;
  font-size: 19px;
  line-height: 1.25;
}

.eco-vfm-result-card p {
  margin: 8px 0;
}

.eco-vfm-status {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  line-height: 1.5;
}

.eco-vfm-result-ok .eco-vfm-status {
  background: #e9f8ec;
  border: 1px solid #8fd19e;
  color: #064d2c;
}

.eco-vfm-result-warning .eco-vfm-status {
  background: #fff7e6;
  border: 1px solid #f0c36d;
  color: #674600;
}

.eco-vfm-result-danger .eco-vfm-status {
  background: #fdeaea;
  border: 1px solid #e09a9a;
  color: #7a1717;
}

.eco-vfm-multa,
.eco-vfm-sin-multa {
  margin-top: 16px;
  padding: 15px;
  border-radius: 14px;
  line-height: 1.5;
}

.eco-vfm-multa {
  background: #fdeaea;
  border: 1px solid #e09a9a;
  color: #7a1717;
}

.eco-vfm-sin-multa {
  background: #e9f8ec;
  border: 1px solid #8fd19e;
  color: #064d2c;
}

.eco-vfm-multa span {
  font-size: 14px;
}

@media (max-width: 760px) {
  .eco-vfm-result-grid {
    grid-template-columns: 1fr;
  }
}


#ecoVfmPlaca {
  text-transform: uppercase;
}

#ecoVfmUltimaFecha,
#ecoVecUltimaFecha {
  cursor: pointer;
  caret-color: transparent;
}
