.servicios {
  position: relative;
  padding: 100px 20px;
  background: url("../images/servicios.jpg") center/cover no-repeat;
  color: #0f172a;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.contenido {
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 38px;
  margin-bottom: 40px;
  color: #fff;
}

/* 🔘 TOGGLE */
.toggle {
  display: inline-flex;
  background: #1e293b;
  padding: 5px;
  border-radius: 50px;
  margin-bottom: 50px;
}

.toggle button {
  padding: 10px 25px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: transparent;
  color: #cbd5f5;
  font-weight: 600;
  transition: 0.3s;
}

.toggle .active {
  background: #2563eb;
  color: #fff;
}

/* 📦 GRID TIPO HOSTING */
.box-servicio {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* 🧊 CARDS */
.caracteristicas,
.precio-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: left;
  transition: 0.3s;
  position: relative;
}

/* HOVER */
.caracteristicas:hover,
.precio-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* 🔥 DESTACADO */


/* TITULO */
.caracteristicas h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0f172a;
}

/* LISTA */
.caracteristicas ul {
  list-style: none;
  padding: 0;
}

.caracteristicas li {
  margin: 12px 0;
  font-size: 14px;
  color: #334155;
  position: relative;
  padding-left: 18px;
}

.caracteristicas li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #2563eb;
}

/* SELECT */
.precio-box label {
  font-size: 13px;
  color: #64748b;
}

.precio-box select {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

/* 💰 PRECIOS */
.precio {
  margin-bottom: 15px;
}

.precio p {
  margin: 5px 0;
  font-size: 15px;
  color: #334155;
}

#usd {
  font-size: 28px;
  font-weight: bold;
  color: #2563eb;
}

/* BOTON */
.btn-comprar {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-comprar:hover {
  transform: scale(1.05);
}

/* 📱 TABLET */
@media (max-width: 900px) {
  .box-servicio {
    justify-content: center;
  }

  .caracteristicas,
  .precio-box {
    flex: 1 1 45%;
    max-width: 450px;
  }
}

/* 📱 MÓVIL */
@media (max-width: 600px) {
  h2 {
    font-size: 26px;
  }

  .toggle {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .toggle button {
    width: 100%;
  }

  .caracteristicas,
  .precio-box {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px;
  }

  .precio p {
    font-size: 14px;
  }

  #usd {
    font-size: 22px;
  }
}