/*
body {
    background:url('../soporte/backgroundSoporte.jpg') no-repeat center center fixed;
    background-size:cover;
}
*/

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

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

.heroBitmx{
  position: relative;
  height: 630px;
  width: 100%;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 30px;

  background-image: url('/contenido/inicio/banner-bitmx.jpg');
  background-size: cover;
  background-position: center left;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Overlay necesario para contraste 
.heroBitmx::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.85) 100%
  );
}
*/

.heroContent{
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 60px;
  text-align: right;
}

.heroContent h1{
  margin: 0;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: .3px;
}



/* =========================================
   SERVICIOS - ESTILO MICROSOFT
========================================= */
.serviciosGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 30px;
  align-items: start;
}

.servicioLink{
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  padding: 18px 12px;

  border-radius: 14px;
  text-decoration: none;
  color: inherit;

  transition: transform .18s ease,
              background .18s ease;
}

.servicioLink:hover{
  transform: translateY(-4px);
  background: rgba(0,0,0,.04);
}

/* Icono más limpio para fondo blanco */
.servicioIcon{
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;

  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: #ffffff;

  color: #171717;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.servicioIcon svg{
  width: 26px;
  height: 26px;
}

/* Texto */
.servicioTitulo{
  font-size: 16px;
  font-weight: 650;
  letter-spacing: .2px;
  color: #111;
}

.servicioDesc{
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,.65);
}

/* Subrayado elegante */
.servicioLink:hover .servicioTitulo{
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* Texto */
.servicioTxt {
  display: grid; gap: 6px;
  max-width: 240px;
}


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

@media (max-width: 1000px){

  .serviciosGrid{
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .heroBitmx{
    height: 420px;
  }

}

@media (max-width: 768px){

  .heroBitmx{
    height: 500px;
    justify-content: center;
    background-position: center;
  }

  .heroContent{
    text-align: center;
    padding: 25px;
  }

  .heroContent h1{
    font-size: 22px;
  }

  .serviciosGrid{
    grid-template-columns: 1fr;
  }

}