html body .rv-mega-inner[data-rv-slot="fotos"]{
  position: relative;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-track{
  overflow: hidden;
  border-radius: 22px;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-rail{
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: transform .28s ease;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-page{
  min-width: 100%;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-fotos-card{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-media{
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-body{
  padding-top: 10px;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-title{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-sub{
  opacity: .8;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-nav{
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: rgba(255,255,255,.96);
  background: rgba(32,38,52,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.18);
}

html body .rv-mega-inner[data-rv-slot="fotos"].has-nav .rv-mega-nav{
  display: inline-flex;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-nav--prev{ left: 10px; }
html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-nav--next{ right: 10px; }

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-nav svg{
  width: 22px;
  height: 22px;
  display: block;
}

html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-nav:disabled{
  opacity: .38;
  cursor: default;
}

@media (max-width: 980px){
  html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-page{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px){
  html body .rv-mega-inner[data-rv-slot="fotos"] .rv-mega-page{
    grid-template-columns: 1fr;
  }
}