/* ===============================
   LAYOUT
================================ */

.caucion-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 960px;
  margin: 60px auto;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 900px) {
  .caucion-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   FORM
================================ */

.caucion-step {
  display: block;
}

.caucion-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #11372A;
  margin-bottom: 20px;
}

input, select {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 14px;
  border-radius: 32px;
  border: 1px solid #ccc;
  font-size: 14px;
}

input:focus, select:focus {
  border-color: #025939;
  outline: none;
}

/* ===============================
   CARD RESULTADO
================================ */

.plan-card {
  position: sticky;
  top: 40px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  overflow: hidden;
  text-align: center;
}

.plan-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 20px 0;
  color: #11372A;
}

.plan-price {
  background: #11372A;
  color: white;
  font-size: 46px;
  padding: 30px 20px;
  font-family: 'Space Grotesk', sans-serif;
}

.plan-list {
  list-style: none;
  padding: 20px;
  margin: 0;
  text-align: left;
}

.plan-list li {
  margin-bottom: 10px;
  color: #025939;
  font-size: 14px;
}

.cta {
  width: 90%;
  margin: 20px auto 30px;
  padding: 14px;
  border-radius: 32px;
  background: #025939;
  color: white;
  border: none;
  cursor: pointer;
}
