/* Home (Inicio) - tiles estilo Windows */
.home-wrap{
  max-width: 1180px;
  margin: 0 auto;
}

.home-header{
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.home-logo{
  width: 250px;
  height: 88px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-logo img{
  max-height: 64px;
  width: auto;
}

.home-tile{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 18px 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  height: 100%;
}

.home-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  border-color: rgba(0,0,0,.12);
}

.home-icon{
  font-size: 2.1rem;
  line-height: 1;
  color: #111;
}

.home-title{
  color: #111;
  font-weight: 700;
  font-size: 0.98rem;
  margin-top: .15rem;
}

.home-sub{
  color: rgba(0,0,0,.55);
  font-size: 0.82rem;
}
