/* =========================
   HERO
========================= */

#contenidoGeneral {
  background-color: rgb(250, 250, 250);
}

/* =========================
   HERO
========================= */

.servicioHero{
  padding: 26px 20px 18px;
  text-align: center;
}

.servicioHeroInner{
  max-width: 920px;
  margin: 0 auto;
}

.servicioHero h1{
  margin: 0 0 12px;
  font-size: 38px;
  font-weight: 650;
  letter-spacing: .2px;
  color: #111;
}

.servicioHero p{
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(0,0,0,.65);
}

.heroBadges{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================
   PLANES
========================= */

.planesHosting{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.planCard{
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: #ffffff;
  transition: .2s ease;
}

.planTitulo {
    color: rgba(23, 23, 23, 1);
}

.planCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.planCard h2{
  margin-top: 0;
  font-size: 22px;
}

.planDesc{
  color: rgba(0,0,0,.6);
  margin-bottom: 20px;
}

.planCard ul{
  padding-left: 18px;
  margin-bottom: 20px;
}

.planCard li{
  margin-bottom: 8px;
  color: rgba(0,0,0,.75);
}

.modalidad{
  font-size: 14px;
  color: rgba(0,0,0,.5);
  margin-bottom: 20px;
}

.destacado{
  border: 1px solid #111;
}



/* =========================
   BOTONES
========================= */

.btnSolid,
.btnOutline{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btnSolid{
  background: #111;
  color: #fff;
}

.btnSolid:hover{
  background: #000;
}

.btnOutline{
  border: 1px solid #111;
  color: #111;
}

.btnOutline:hover{
  background: #111;
  color: #fff;
}



/* =========================
   EXTRA
========================= */

.hostingExtra{
  text-align: center;
  padding: 40px 20px 80px;
  font-size: 16px;
  color: rgba(0,0,0,.65);
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px){
  .planesHosting{
    grid-template-columns: 1fr;
  }
}
