.pricing-functions {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.pricing-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.pricing-column {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pricing-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.pricing-column h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

/* ITEMS */

.function-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.function-title {
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
}

.function-title i {
  color: #8b6b35;
}

.function-desc {
  font-size: 13px;
  color: #777;
  margin-top: 2px;
}

.function-price {
  font-weight: 600;
  color: #8b6b35;
}

.function-item:last-child {
  border-bottom: none;
}

.function-item:hover {
  background: #fafafa;
}

.function-item span {
  font-weight: 500;
}

.function-item small {
  color: #8b6b35;
  font-weight: 500;
}

/* CHECKBOX */

.function-item input {
  margin-right: 10px;
}

/* TOTAL */

.pricing-total {
  margin-top: 70px;
  text-align: center;
}

.price-display {
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0;
  color: #8b6b35;
}

.btn-cotizar {
  display: inline-block;
  padding: 14px 30px;
  background: #8b6b35;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-cotizar:hover {
  background: #6f5529;
}

/* TOGGLE OVALADO */

.function-toggle {
  position: relative;
  width: 42px;
  height: 24px;
}

.function-toggle input {
  display: none;
}

.toggle-circle {
  position: absolute;
  width: 42px;
  height: 24px;
  background: #ddd;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.toggle-circle:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all 0.3s;
}

.function-toggle input:checked + .toggle-circle {
  background: #8b6b35;
}

.function-toggle input:checked + .toggle-circle:after {
  left: 21px;
}

.selection-summary {
  margin-top: 40px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.selection-summary h3 {
  margin-bottom: 15px;
}

.selection-summary ul {
  list-style: none;
  padding: 0;
}

.selection-summary li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}
