body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #333;
}

.go-back{
  margin-left: 10px;
  margin-top: 10px;
  border: none;
  background-color: #f8f8f800;
  transition: border 0.1s ease-in-out, opacity 0.2s;
}

.go-back:hover{
  border: solid;
  border-width: 3px;
  border-radius: 55px;
  opacity: 0.5;
}

.pricing-section {
  text-align: center;
  padding: 80px 20px;
}

.section-title {
  font-size: 2rem;
  color: #0e9a6c;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  margin-bottom: 50px;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 320px;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  border: 2px solid #0e9a6c;
}

.plan-header {
  color: #fff;
  padding: 20px 0;
}

.plan-header h3 {
  font-size: 1.4rem;
  margin: 0;
  letter-spacing: 1px;
}

.price {
  font-size: 1.2rem;
  margin: 8px 0 0;
}

.price span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.esencial {
  background: linear-gradient(135deg, #00b37a, #00d68f);
}

.potenciador {
  background: linear-gradient(135deg, #0077ff, #00d4ff);
}

.empresarial {
  background: linear-gradient(135deg, #8a2be2, #b06cff);
}

.ideal {
  font-weight: 500;
  margin: 15px;
  color: #444;
}

ul {
  text-align: left;
  padding: 0 25px;
  list-style: none;
  margin-bottom: 30px;
}

ul li {
  margin: 10px 0;
  padding-left: 15px;
  position: relative;
}

ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0e9a6c;
  font-weight: bold;
}

.bconsultar {
  display: inline-block;
  background: #0e9a6c;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  margin-bottom: 25px;
  transition: 0.3s ease;
}


.bconsultar:hover {
  background: #0cc982;
}

.contacto-button{
  background: #0e9a6c;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  margin-bottom: 25px;
  transition: 0.3s ease;
}

.contacto-button:hover {
  background: #0cc982;
}
