/* General */

:root {
  /* Colors */
  --main-clr-grey: #f0f0f0;
  --main-clr-cyan: #00ffdc;
  --main-clr-red: #0050ff;
  --main-clr-violet: #694bff;
  --main-clr-black: #000000;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Loader */

#loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  background-color: #f6f6eb;
  z-index: 9999;
}

#loading-image {
  z-index: 100;
  /* transform: scaleX(-1); */
  /* -webkit-animation: loader 2s linear infinite;
      animation: loader 2s linear infinite; */
}

/* @-webkit-keyframes loader {
      0% {
          -webkit-transform: rotate(0deg);
      }
      100% {
          -webkit-transform: rotate(360deg);
      }
  }
  @keyframes loader {
      0% {
          transform: rotate(0deg);
      }
      100% {
          transform: rotate(360deg);
      }
  } */

/* Asegura que el body y html ocupen toda la altura de la pantalla */
html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #4a2d39;
  background-color: #f6f6eb;
}

body:not(.home) main {
  /* display: grid; */
  grid-template-rows: 1fr auto; /* El contenido principal toma todo el espacio disponible, el footer solo lo necesario */
  min-height: 100vh; /* Ocupa al menos toda la pantalla */
}

.light-mode {
  background-color: white !important;
  color: black !important;
}

  /*
  header {
  position: sticky;
  top: 0;
  z-index: 10;
background: #f6f6eb;
}*/

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;     /* = width:100% sin problemas de scrollbars */
  z-index: 1000;
}

/* si sabés la altura, compensá el flujo */
:root { --header-h: 105px; }  /* ajustá a tu altura real */
body { padding-top: var(--header-h); }

/* section {
      padding-top: 3vw;
      padding-bottom: 3vw;
  } */

.logo h1 a svg path#text {
  fill: #fff;
}

.logo h1 a svg path#line {
  fill: #0050ff !important;
}

h2 {
  color: #4a2d39;
  font-size: 60px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -2px;
}

h2 span {
  font-family: 'Big Shoulders Display', cursive;
  font-size: 5.3rem;
  font-weight: 100;
  line-height: 0.9;
  color: #fff;
  display: block;
  letter-spacing: -3px;
}

/* section.empty-col {
      padding-right: 7% !important;
  } */

/* .container {
    max-width: 1600px;
  } */

.grid-container {
  display: grid;
}

/* Desktop Menu */

aside {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

.sidenav {
  height: 100%;
  width: 100%;
  /*   position: fixed;
    z-index: 1;
    top: 0;
    left: 0; */
  overflow-x: hidden;
  padding: 20px 0 10px 0;
}

.sidenav a {
  text-decoration: none;
  /*   text-orientation: sideways;
    writing-mode: vertical-lr; */
  font-size: 1.125rem;
  font-weight: 600;
  color: #4a2d39;
  display: block;
}

#logoDesktop a {
  writing-mode: initial;
}

a.active,
.sidenav a:hover {
  color: #a802fb;
}

nav.logo,
nav.menu,
nav.social {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#myNav nav.social {
  border: 1.5px solid #a802fb;
  border-radius: 15px;
  padding: 5px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 250px;
  margin: 0 auto;
}

nav.social {
  border: 1.5px solid #4a2d39;
  border-radius: 10px;
  padding: 0 5px;
}

nav.social a {
  padding: 3px 10px 5px 10px;
}

nav.social a.behance {
  padding-left: 8px;
  padding-right: 4px;
}
nav.social a.behance svg {
  width: 21px;
}
nav.social a.instagram svg {
  width: 16px;
}
nav.social a.vimeo svg {
  width: 16px;
}

nav.social a:hover svg path {
  fill: #a802fb;
}

body.home nav.social a:hover svg path {
  fill: #fff;
}

/* nav.menu {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  } */

nav.menu a {
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1px;
}

.social a svg {
  width: 23px;
  height: auto;
  fill: #0050ff;
}

.social a:hover svg {
  fill: #fff;
}

/* Mobile Menu */

#menuIcon {
  z-index: 999;
  position: relative;
  font-size: 1.875rem;
  cursor: pointer;
}

#headerMobile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

h1#logoMobile {
  z-index: 999;
  position: relative;
}

h1#logoMobile a svg path#line {
  fill: #0050ff;
}

h1#logoMobile a svg path#text {
  fill: #fff;
}

.social-m a svg {
  fill: #fff;
}

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #4a2d39;
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 20%;
  width: 100vw;
  text-align: center;
  height: 100vh;
}

.overlay-content nav.menu-m {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.overlay-content nav.menu-m a {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  padding-bottom: 30px;
}
z .overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 2.25rem;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
  color: #fff;
}

.overlay .closebtn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 3.75rem;
}

/* Main */

/* main {
    margin-left: 100px;
    margin-top: 15px;
  } */

/* Vimeo */

.video-container {
  padding: 56.25% 0 0 0;
  position: relative;
}

/* Home */

/* body.home .video-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: -1;
  }
  .video-mobile {
      display: none;
  }
  @media only screen and (max-width: 768px) {
      .video-desktop {
          display: none;
      }
      .video-mobile {
          display: block;
      }
  } */

/* Video de la home a pantalla completa */

/* Home */
body.home .video-container {
  position: fixed; /* Cambia de absolute a fixed */
  top: 0;
  left: 0;
  width: 100vw; /* Ancho 100% de la ventana */
  height: 100vh; /* Alto 100% de la ventana */
  overflow: hidden;
  z-index: -1;
  margin: 0;
  padding: 0;
}

/* Videos por defecto */
.video-desktop,
.video-mobile {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw; /* Ancho 100% de la ventana */
  height: 100vh; /* Alto 100% de la ventana */
  object-fit: cover; /* Recorta el video si es necesario para cubrir la pantalla */
  transform: translate(-50%, -50%);
  overflow: hidden;
}

/* Oculta el video mÃ³vil por defecto */
.video-mobile {
  display: none;
}

/* Muestra el video mÃ³vil en pantallas menores a 768px */
@media only screen and (max-width: 768px) {
  .video-desktop {
    display: none;
  }
  .video-mobile {
    display: block;
  }
}

/* Fin del video */

body.home .sidenav a {
  color: #4a2d39;
}
body.home .sidenav a:hover {
  color: #A802FB;
}
body.home nav.social {
  border-color: #fff;
}
body.home nav.social a svg path {
  fill: #fff;
}

/* Intro */

.intro {
  padding: 2rem 0 3rem;
}

.intro h3 {
  color: #4a2d39;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.1;
}

.intro h5 {
  color: #a802fb;
  font-weight: 600;
  font-size: 30px;
  margin-top: 60px;
}

.intro p {
  font-weight: 500;
  line-height: 1.3;
  font-size: 18px;
  color: #4a2d39;
}

.about .intro p,
.about ul.clients li {
  font-weight: 500;
  line-height: 1.1;
  font-size: 3.5rem;
  color: #4a2d39;
  letter-spacing: -1px;
}

ul.clients li {
  cursor: default;
}

ul.clients li:hover {
  color: #a802fb;
}

ul.clients {
  list-style: none;
  padding: 0;
  margin: 0;
}

p.cliente {
  color: #a802fb;
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  letter-spacing: 0;
}

.our-team {
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1px;
  color: #4a2d39;
  cursor: default;
  text-transform: capitalize;
}

.our-team span:hover {
  color: #a802fb;
}

p.categorias {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
}

section#talk {
  background-color: #a802fb;
  padding: 6rem 3rem 0;
}

#talk h3 {
  font-size: 10rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -1px;
}

#talk h3:hover::after {
  cursor: pointer;
  text-decoration: none;
  border-bottom: 8px solid #fff;
  padding-bottom: 0;
  display: inline-block;
}

.underline-hover {
  position: relative;
  display: inline-block; /* limita el subrayado al texto */
  text-decoration: none; /* quitamos el underline nativo */
  color: #fff;
}

.underline-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* justo en la base del texto */
  width: 100%;
  height: 8px;            /* grosor fino de la línea */
  background: #fff;
  transform: scaleX(0);   /* oculta la línea inicialmente */
  transform-origin: right;
  transition: transform 0.3s ease;
}

.underline-hover:hover::after {
  transform: scaleX(1);   /* aparece sin mover nada */
  transform-origin: left;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 15px;
  height: 15px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: transparent;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
  border-radius: 50%;
  border: 1px solid #a802fb;
  margin-bottom: 20px;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #a802fb !important;
}

/* Hover List */

.hover-list {
  z-index: 2;
  position: relative;
}

.hover-list li {
  position: relative;
  transition: color 0.3s;
}

a.talk {
  color: rgb(168, 2, 251)!important;
  font-size: 23px !important;
}

a.talk:hover {
  text-decoration: underline;
}

/* .hover-image {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  z-index: 999;
  border-radius: 0;
  box-shadow: none;
} */

.hover-image{
  position:fixed; top:0; left:0; pointer-events:none;
  opacity:0; z-index:999;
  transform: translate(0, -50%) scale(1); /* center-left */
}

.hover-image img {
  max-width: none;
  height: auto;
  display: block;

  /* Opcional: limitar si son muy grandes */
  max-width: 400px;
  max-height: 300px;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 768px) {
  .hover-image {
    display: none !important;
  }
}

/* Panel desplegable en mobile */
.mobile-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.mobile-panel.open { max-height: 70vh; }      /* ajustá a gusto */
.mobile-panel img {
  width: 100%;
  display: block;
  margin-top: 10px;
  border-radius: 0px; /* si querés borde redondeado */
}

/* Ya tenías esto, lo mantengo */
@media (max-width: 768px) {
  .hover-image { display: none !important; }
}

.mobile-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.mobile-panel.open { max-height: 70vh; } /* ajustá */
.mobile-panel img { width:100%; display:block; margin-top:10px; border-radius:8px; }

@media (max-width:768px){ .hover-image{ display:none!important; } }

/* Asegurate de que el contenedor padre NO tenga overflow:hidden */
.sticky-image {
  position: sticky;
  top: 100px; /* altura desde el top al hacer scroll */
}

/* What's New */

#new.grid-container {
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 50px auto auto;
  gap: 1rem;
}

#new .new__heading {
  background-color: var(--main-clr-violet);
  padding: 25px;
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

#new .new__heading h2 {
  color: #fff;
}

#new .new__heading h2 span {
  color: var(--main-clr-black);
}

#new .new__img {
  grid-column: 4 / 10;
  grid-row: 2 / 4;
}
#new .new__desc {
  grid-column: 10 / 13;
  grid-row: 2 / 4;
  padding: 0 25px;
}

#new h3 {
  font-family: 'Big Shoulders Display', cursive;
  font-size: 5.3rem;
  line-height: 0.9;
  font-weight: 100;
  color: var(--main-clr-violet);
  margin-bottom: 20px;
  letter-spacing: -3px;
}

#new a,
#case-studies a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}

#new a:hover {
  color: var(--main-clr-violet);
}

img.camera {
  margin-top: -15%;
  margin-left: 20%;
}

/* Case Studies */

#case-studies.grid-container {
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 50px auto auto auto;
}

#case-studies .cs__heading {
  background-color: #0050ff;
  padding: 25px;
  grid-column: 8 / 13;
  grid-row: 1 / 4;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

#case-studies .cs__content {
  grid-column: 1 / 13;
  grid-row: 2 / 4;
  align-self: center;
  padding: 0;
}

#case-studies h2 {
  color: #fff;
}

#case-studies h2 span {
  color: var(--main-clr-black);
}

#case-studies a:hover {
  color: var(--main-clr-black);
}

img.snake {
  position: relative;
  top: -60px;
  left: 0;
  width: 220px;
}

img.flag {
  position: absolute;
  width: 150px;
  top: -3%;
  left: -5%;
  z-index: 1;
}

.rollover {
  position: relative;
  overflow: hidden;
}
/*
  .rollover .rollover-overlay {
      background-image: url(../images/overlay.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      opacity: 0;
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s;
  }
  */

.rollover .rollover-overlay {
  background-image: url(../images/rollover1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.rollover .rollover-overlay {
  background: #f6f6eb;
  border: 1.5px solid #4a2d39;
}

/* .rollover .rollover-overlay.bg1 {
    background: #c5a9d1;
  }
  .rollover .rollover-overlay.bg2 {
    background: #0050ff;
  }
  .rollover .rollover-overlay.bg3 {
    background: #0050ff;
  }
  .rollover .rollover-overlay.bg4 {
    background: #0050ff;
  }
  .rollover .rollover-overlay.bg5 {
    background: #c5a9d1;
  } */

#paginador {
  border-top: 1.5px solid #4a2d39;
}

#paginador .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
div.prev {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
}
div.next {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
}

#paginador a {
  color: #4a2d39;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1;
}
#paginador a:hover {
  color: #a802fb;
}
#paginador a.prev {
  text-align: left;
  margin-left: 15px;
}
#paginador a.next {
  text-align: right;
  margin-right: 15px;
}
#paginador a.prev img {
  text-align: left;
  padding-left: 20px;
  width: 50px;
}

#paginador a.next img {
  text-align: right;
  padding-right: 20px;
  width: 50px;
}

.rollover:hover .rollover-overlay {
  opacity: 1;
}

.rollover-image {
  width: 100%;
}

.rollover-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: absolute;
  text-align: center;
  padding: 50px;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.col-sm-6 .rollover-details {
  padding: 25px;
}

.col-sm-4 .rollover-details {
  padding: 20px;
}

.rollover:hover .rollover-details {
  /* top: 25%;
    left: 50%; */
  opacity: 1;
}

.rollover-details h3 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
  text-transform: capitalize;
  color: #4a2d39;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  text-decoration: underline;
}

.rollover-details p {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 0.95;
  color: #4a2d39;
  margin-bottom: 0;
  letter-spacing: -3px;
  text-transform: capitalize;
  text-align: left;
  margin-top: 20px;
}

/* LAB ROLLOVER */

#lab .rollover .rollover-overlay {
  background: rgb(0 0 0 / 80%);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

#lab .rollover:hover .rollover-overlay {
  opacity: 1;
}

#lab .rollover-details {
  background-color: transparent;
  justify-content: space-between;
  cursor: default;
  height: 100%;
  width: 100%;
  padding: 25px;
}

#lab .rollover-details h3 {
  text-align: left;
}

#lab .rollover-details h4,
#lab .rollover-details h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  color: #fff !important;
  margin-bottom: 0;
  letter-spacing: -2px;
  text-align: left;
}

#lab .rollover-details h4 {
  font-size: 5rem;
}

#lab .rollover-details p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 0.95;
  color: #fff !important;
  margin-bottom: 0;
  letter-spacing: 0;
  text-align: left;
}

/* FOLKS */

/* no cortar sticky */
.intro, .intro > .row { overflow: visible; }
/* si necesitás forzar estirado en esa fila */
.intro > .row { align-items: stretch !important; }

/* LAB ROLLOVER */

.fadeIn-bottom {
  top: 80%;
}

.fadeIn-top {
  top: 20%;
}

.fadeIn-left {
  left: 20%;
}

.fadeIn-right {
  left: 80%;
}

/* Clients */

#clients h2 {
  padding-left: 30px;
}

#clients .client-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

#clients img {
  transition: all 0.1s ease-in-out;
}
/*
  #clients img:hover {
      transform: scale(1.2);
  } */

/* Carousel */

.carousel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  z-index: 0;
}

.carousel-caption {
  text-align: left;
  position: relative;
  left: 0;
  top: 1rem;
}

.carousel-controls {
  position: relative;
  width: 150px;
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-controls p {
  color: #4a2d39;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.carousel-controls [data-bs-target] {
  color: #0050ff;
  height: auto;
  text-indent: 0;
  background-color: transparent;
  border-top: 0;
  border-bottom: 0;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

.carousel-controls .carousel-control-prev-icon {
  background-image: url(../images/prev-work.svg);
  width: 15px;
}

.carousel-controls .carousel-control-next-icon {
  background-image: url(../images/next-work.svg);
  width: 15px;
}

.carousel-controls .carousel-control-prev,
.carousel-controls .carousel-control-next,
.carousel-controls .active {
  opacity: 1;
}

/* Work */

a {
  color: #0050ff;
  text-decoration: none;
}

wbadge.new-work, .wbadge.awarded {
  position: absolute;
  height: 35px;
}

.wbadge.new-work,
.wbadge.awarded {
  top: 50px;
  right: 50px;
  position: absolute;
}

.col-sm-6 .wbadge.new-work,
.col-sm-6 .wbadge.awarded,
.col-sm-4 .wbadge.new-work,
.col-sm-4 .wbadge.awarded {
  top: 30px;
  right: 30px;
}

.col-sm-4 .wbadge.new-work,
.col-sm-4 .wbadge.awarded {
  width: 80px;
}

.rotate180 {
  transition: all 0.1s ease-in-out;
}

.rotate180:hover {
  transform: rotate(180deg);
}

/* Isotope Filter */

.row .grid-item {
  /* margin-top: 8px;
      margin-bottom: 8px; */
  padding: calc(var(--bs-gutter-x) * 0.5);
}

#filterContainer {
  display: flex;
  justify-content: end;
}

#filterMenu {
  color: white;
  margin-top: -10px;
  /*   margin-right: calc(var(--bs-gutter-x) * 0.5);
    margin-left: calc(var(--bs-gutter-x) * 0.5); */
}

#filterContainer .navbar-toggler-icon {
  width: 65px;
}

/* .container{ border: 2px solid green }
  .grid-item{ border: 2px solid red; padding: 20px;}
  .grid{ border: 1px solid blue} */
.filters ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 30px 0;
  padding-left: 0;
}
.filters ul li {
  /* display: inline-block; */
  text-align: left;
  margin-right: 12px;
  padding: 0 5px 8px 0;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  margin-bottom: -2px;
  color: #4a2d39;
  /* transition: 0.3s; */
  font-weight: 500;
  line-height: 1.2;
}
.filters ul li:hover {
  color: #a802fb;
  /* border-bottom: 2px solid var(--main-clr-black); */
}
.filters ul li.is-checked {
  color: #a802fb;
  /* border-bottom: 2px solid white; */
}
.filters ul li:last-child {
  margin-right: 0;
}
button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.grid .grid-item h1 {
  background: white;
  height: 150px;
  line-height: 150px;
  color: white;
  font-size: 3em;
  text-align: center;
  margin-bottom: 30px;
}

#credits p strong,
#credits strong {
  font-weight: 500;
}

/* Studio */

#team img {
  border-radius: 50%;
  max-width: 300px;
}

.team {
  margin-top: 15px;
  text-align: center;
}

main.about .intro h3,.pill {
  color: #a802fb;
  font-size: 20px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-top: 20px;
  margin-bottom: 30px;
  border: 1px solid #a802fb;
  border-radius: 10px;
  padding: 10px 15px;
  width: fit-content;
}

#about.intro h1 {
    font-size: 220px;
    line-height: 1.1;
    color: #a802fb;
}

#team h3,
.intro h4 {
  color: #4a2d39;
  font-size: 45px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-top: 50px;
}

#team h3 {
  font-size: 60px;
  font-weight: 500;
}

.intro h4 {
  margin-top: 0;
  font-size: 60px;
  font-weight: 500;
}

.team p.member {
  font-family: 'Montserrat', sans-serif;
  color: #4a2d39;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 1;
  padding-bottom: 0;
  margin-bottom: 8px;
  font-weight: 400;
}

.team p.role {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #4a2d39;
  display: block;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

img.penbike {
  position: absolute;
  right: -50px;
  bottom: -80px;
  width: 350px;
}
img.pizza {
  position: absolute;
  top: 120px;
  left: 190px;
  width: 180px;
}

/* LAB */

#lightMode img {
  width: 35px;
  height: auto;
}

/* #lab {
    background: url('../images/bg-lab-dark.png');
    background-repeat: no-repeat;
    background-position-x: right;
    background-attachment: fixed;
  }

  body.light-mode #lab {
    background: url('../images/bg-lab-light.png');
    background-repeat: no-repeat;
    background-position-x: right;
    background-attachment: fixed;
  } */

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border: 3px solid #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: '';
  height: 22px;
  width: 22px;
  right: 1px;
  bottom: -1px;
  background-color: #000;
  border: 3px solid #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #fff;
  border: 3px solid #000;
}

input:checked + .slider:before {
  background-color: #fff;
  border: 3px solid #000;
  -webkit-transform: translateX(-21px);
  -ms-transform: translateX(-21px);
  transform: translateX(-21px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

ul.services {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.services li {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #4a2d39;
  border-bottom: 1px solid #4a2d39;
  padding: 10px 0;
  cursor: default;
}
ul.services li:hover {
  color: #a802fb;
  font-weight: 600;
}

ul.services li:hover::before {
  content: url('../images/arrow.svg');
  display: inline-block;
  width: 15px;
  height: auto;
  margin-right: 20px;
  vertical-align: 5%;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  cursor: default;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
}

.marquee-track span {
  display: inline-block;
  padding-right: 4rem; /* espacio entre frases */
  font-family: 'Montserrat', sans-serif;
  font-size: 9rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1px;
  color: #b000f0;
}

.marquee-track sup {
  font-size: 1.5rem;
}

.marquee-track img {
  width: 100px;
}

/* formulario de contacto */

.modal-dialog {
  max-width: 550px;
}

.modal-header {
    border: 0;
    background: #fafaf0;
}

.modal-body {
    padding: 0;
}

form {
  background-color: #fafaf0;
  padding: 40px;
  padding-top: 0;
  color: #3d3d3d;
  border-radius: 1rem;
}

form h1 {
  font-size: 40px;
  font-weight: 500;
  color: #a802fb;
}

.section-title {
  color: #a802fb;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.btn-option {
  border: 1px solid #a802fb;
  color: #4a2d39;
  background-color: transparent;
  border-radius: 12px;
  padding: 0.5rem 1.5rem;
  transition: all 0.2s ease;
}

.btn-check:checked + .btn-option,
.btn-option:hover {
  background-color: #a802fb;
  color: #fff;
}

.btn-check + .btn:hover {
  border: 1px solid #a802fb;
  background-color: #a802fb;
  color: #fff;
}

.form-control {
  border: 1px solid #a802fb;
  border-radius: 12px;
  padding: 0.75rem;
  background: transparent !important;
  color: #4a2d39;
}

input::placeholder, textarea::placeholder {
  color: #4a2d39; !important;
}

.form-control:focus {
  border-color: #a802fb;
  box-shadow: none;
}

.btn-submit {
  color: #a802fb;
  font-weight: 600;
  font-size: 1.5rem;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.close-link {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #a802fb;
  text-decoration: underline;
  font-weight: 500;
}

textarea.form-control {
  height: 150px;
}

/* 🔹 Marquesina de ciudades */
.marquee-cities {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
}

.marquee-cities-track {
  display: inline-block;
  animation: cities-scroll 15s linear infinite;
  white-space: nowrap;
  font-size: 3rem;
  color: #a802fb;
}

.marquee-cities-track span {
    display: inline-block;
    padding-right: 1rem;
    font-size: 8rem;
    font-weight: 500;
    letter-spacing: 0;
}

.marquee-cities-track span sup {
  font-size: 2rem;
  top: -3rem;
}

.marquee-cities-track span img {
  width: 180px;
  vertical-align: top;
  margin-left: -20px;
  margin-right: -20px;
}

.marquee-cities-track span img.buenos-aires {
  margin-left: -50px;
  margin-right: -60px;
}

.marquee-cities-track span img.barcelona {
  margin-left: -20px;
  margin-right: -60px;
}

.marquee-cities-track span img.new-york {
  margin-left: -20px;
  margin-right: -40px;
}

@keyframes cities-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 🔸 Marquesina doble asincrónica */
.marquee-double {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
}

.marquee-line {
  white-space: nowrap;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 10vw;
  line-height: 1;
  font-weight: 500;
  color: #a802fb;
  animation: scroll-left 75s linear infinite;
}

.marquee-text.delay {
  animation: scroll-right 75s linear infinite;
  animation-delay: -10s;
}

.marquee-text img {
  height: 0.3em;
  vertical-align: middle;
}

/* animación hacia la izquierda */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* animación hacia la derecha */
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.meet1 {
  display: flex;
  justify-content: space-between;
}

.meet2 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: -250px;
}

.meet3 {
  display: flex;
  justify-content: space-between;
  margin-top: -50px;
  flex-direction: row-reverse;
  align-items: center;
}

ul.clients li span {
  display: none;
}

/* Footer */

body.home header {
  background: transparent;
  /* background: linear-gradient(to bottom, black 0%, transparent 100%); */
}

body.home footer {
  display: none;
}

footer {
  background: #4a2d39;
  padding: 30px 0;
  margin-top: 5rem;
}

footer .row {
  background: transparent;
  padding: 30px 0;
  margin: 0 auto;
  position: relative;
}
footer a.link {
  color: #f6f6eb;
  padding: 0;
  font-weight: 400;
}
footer a.link:hover,
footer h3.destacado a:hover {
  color: #a802fb;
}

footer .social a {
  font-weight: 600;
}
/* body.light-mode footer .row {
    background: #fff;
  } */

footer h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  font-weight: 600;
  margin-bottom: 10px;
}

footer h3,
footer h4,
footer p,
footer a {
  color: #f6f6eb;
}

footer p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.2;
}

footer p.nombre {
  font-weight: 600;
}

footer p.region {
  color: #a802fb;
}

footer h3.destacado {
  z-index: 2;
  position: relative;
}
footer h3.destacado.form {
  float: left;
}

footer h3 {
  font-size: 25px;
  font-weight: 400;
  z-index: 2;
  position: relative;
  margin-bottom: 20px;
}

body.light-mode footer h3 {
  color: #000;
}

a.chatBtn {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  padding: 25px 10px 25px 0;
  margin-top: 0;
  vertical-align: middle;
  white-space: nowrap;
  font-weight: 500;
  display: inline-block;
}
img.scream {
  position: absolute;
  bottom: 15%;
  right: 7%;
  width: 250px;
  z-index: 1;
}

img.eye {
  position: absolute;
  bottom: 3vw;
  right: 3vw;
}

.grow {
  transition: all 0.1s ease-in-out;
}

.grow:hover {
  transform: scale(1.1);
}

footer .grow:hover {
  transform: scale(1.1) rotate(25deg);
}

footer #copy {
  color: #000;
  font-size: 1.5rem;
  font-weight: 200;
  margin-top: -20px;
  margin-bottom: 20px;
}
footer ul.social {
  padding: 0;
}
footer ul.social li {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}
footer ul.social li a:hover {
  color: #a802fb;
}
footer .social ul li {
  display: inline-block;
}

/* MediaQueries */

@media (max-width: 360px) {
  .overlay-content {
    top: 18%;
  }
  .overlay-content nav.menu-m a {
    padding-bottom: 20px;
  }
  .overlay-content nav.menu-m {
    margin-bottom: 25px;
  }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  html,
  body {
    overflow-x: hidden;
    /* overflow-y: hidden; */
  }
  html {
    font-size: 80%;
  }
  /* section.empty-col {
          padding-right: 0 !important;
      } */
  main {
    margin: 0;
  }
  #logoMobile img {
    width: 125px;
  }
  .overlay {
    overflow-y: hidden;
  }
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 1.125rem;
    top: 15px;
    right: 35px;
  }
  .wbadge {
    width: 60px;
  }
  #filterMenu {
    margin-right: 0;
    margin-left: 0;
  }
  h2 span {
    font-size: 5rem;
  }
  #new h2 span {
    display: inline-block;
  }
  #new h3 {
    font-size: 5rem;
  }
  #new .new__heading {
    padding: 25px 15px;
  }
  #new .new__desc {
    padding: 0 15px;
  }
  #clients h2 {
    padding-left: 0px;
  }
  footer {
    text-align: center;
  }
  img.camera {
    width: 50px;
    margin-top: -47px;
    margin-left: 3%;
  }
  img.scream {
    position: absolute;
    top: 0;
    right: 0;
    width: 11.5rem;
  }
  img.eye {
    position: absolute;
    bottom: 3rem;
    right: 0;
    width: 5rem;
    margin: 0 auto;
    left: 0;
  }
  img.snake {
    position: relative;
    top: -20px;
    left: 0;
  }
  footer {
    background: #4a2d39;
    padding: 10px 0 0 0;
    margin-top: 3rem;
    text-align: left;
  }
  footer h3 {
    margin-bottom: 20px !important;
  }
  footer h3.contact {
    font-size: 2rem;
  }
  a.chatBtn {
    font-size: 1.3rem;
    vertical-align: bottom;
  }
  a.chatBtn img {
    width: 100px;
    right: 12%;
    top: 30px;
  }
  #case-studies .cs__heading {
    grid-column: 3 / 9 !important;
    grid-row: 4 / 5 !important;
  }
  #case-studies .cs__content {
    grid-column: 1 / 9 !important;
    grid-row: 1 / 4 !important;
  }
  .rollover:hover .rollover-overlay,
  .rollover:hover .rollover-details {
    display: none;
  }
  #filterContainer {
    justify-content: start !important;
  }
  .wbadge.new-work,
  .wbadge.awarded {
    width: 100px;
  }
  img.penbike {
    width: 150px;
    bottom: -80px;
    right: -20px;
  }
  img.pizza {
    width: 130px;
    top: -130px;
    right: 20px;
    left: auto;
  }
  .intro h5 {
    font-size: 25px;
    margin-top: 20px;
  }
  #team {
    text-align: center;
    margin-top: 40px;
  }
  .intro h3 {
    color: #4a2d39;
    font-size: 3rem;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
  #team h3,
  .intro h4 {
    color: #4a2d39;
    font-size: 30px;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-top: 0;
    text-align: left;
  }
  #team img {
    border-radius: 50%;
    max-width: 250px;
  }
  #credits h2 {
    font-size: 36px;
  }
  #about.intro h1 {
    font-size: 7rem;
    line-height: 0.9;
  }
  .intro p,
  ul.clients li {
    font-size: 2.8rem!important;
  }
  .intro h3 {
    color: #a802fb;
    font-size: 1.5rem !important;
    font-weight: 500;
    letter-spacing: -1px;
  }
  #talk h3 {
    font-size: 3rem!important;
    }
  #talk img {
    height: 50px;
  }
  footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
  }


}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  html {
    font-size: 80%;
  }
  #new.grid-container {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: auto 30px auto auto;
  }
  #new .new__heading {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
  }
  #new .new__img {
    grid-column: 2 / 9;
    grid-row: 2 / 4;
  }
  #new .new__desc {
    grid-column: 1 / 9;
    grid-row: 4 / 5;
  }
  #new h3,
  #new a:hover {
    color: #0050ff;
  }
  #case-studies.grid-container {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(4, auto);
  }
  #case-studies .cs__heading {
    grid-column: 3 / 9;
    grid-row: 1 / 2;
  }
  #case-studies .cs__content {
    grid-column: 1 / 9;
    grid-row: 2 / 5;
  }
  .filters ul {
    margin: 30px 0px;
    padding-left: 0;
  }
  .filters ul li {
    text-align: left;
    padding: 5px 0;
    margin: 0;
  }
  #paginador a {
    font-size: 22px;
  }
  .prev img {
    width: 15px;
    margin-right: -5px;
  }
  .next img {
    width: 15px;
    margin-left: -5px;
  }
  img.pizza {
    width: 130px;
    top: -130px;
    right: 20px;
    left: auto;
  }
  img.penbike {
    width: 180px;
    bottom: -40px;
    right: -20px;
  }

  .marquee-cities-track span img.buenos-aires, 
  .marquee-cities-track span img.barcelona,
  .marquee-cities-track span img.new-york {
    margin-left: inherit;
    margin-right: inherit;
  }

  footer #copy {
    margin-top: 0;
    margin-bottom: 0;
  }

  footer ul.social li a {
    font-size: 25px;
    font-weight: 600;
  }
  .wbadge.new-work,
  .wbadge.awarded,
  .col-sm-4 .wbadge.new-work,
  .col-sm-4 .wbadge.awarded {
    width: 120px;
  }
  .wbadge.new-work,
  .wbadge.awarded {
    top: 30px;
    right: 30px;
    height: 30px !important;
    width: auto !important;
  }
  footer h3.destacado,
  img.scream {
    z-index: 0;
  }
  section#talk {
    
    padding: 3rem 0 0 0;
}
    #talk h3 {
    font-size: 4.5rem!important;
  }
  .marquee-text {
    font-size: 18vw;
    line-height: 0.8;
    font-weight: 400;
}
.marquee-cities-track span {
  font-size: 5rem;
  font-weight: 400;
}
.marquee-cities-track span img {
  width: 100px;
  vertical-align: middle;
  margin-left: -10px;
  margin-right: -20px;
}
ul.services li:hover::before {
  rotate: 90deg;
}
ul.clients li {
  font-size: 2rem;
  display: inline;
}
ul.clients li span {
  display: inline;
}
ul.clients {
  margin-bottom: -30%;
}
.our-team {
  font-size: 2.3rem;
}
footer h3 {
  font-size: 18px;
}
.meet3 {
  align-items: flex-end;
}
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: 80%;
  }
  #new h3 {
    font-size: 5rem;
    /* word-wrap: break-word; */
  }
  img.mano-zombie {
    width: 300px;
    height: auto;
}
img.arrow-down {
  width: 70px;
}
  #new.grid-container {
    grid-template-rows: 50px auto auto auto;
    padding-bottom: 20px;
  }
  #new .new__img {
    grid-column: 4 / 13;
    grid-row: 2 / 5;
  }
  #new .new__desc {
    grid-column: 4 / 12;
    grid-row: 5 / 5;
    padding: 0;
  }
  img.flag {
    width: 125px;
    top: -5%;
    left: -12%;
  }
  img.snake {
    top: -30px;
    left: 0;
    width: 220px;
  }
  .wbadge.new-work,
  .wbadge.awarded {
    width: 120px;
  }
  img.penbike {
    width: 250px;
  }
  #about.intro h1 {
    font-size: 140px;
    line-height: 1;
    color: #a802fb;
}
.meet2 {
  margin-top: -200px;
}
#talk h3 {
  font-size: 8rem;
}
}

@media (min-width: 576px) and (max-width: 1024px) {
  #about.intro h1 {
      font-size: 100px;
  }
}

@media (max-width: 992px) {
  nav.menu a {
    padding: 20px;
  }
  .our-team .mobile-panel.open {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  footer p {
    font-size: 14px;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  section#new {
    padding: 3rem 0 2rem 0;
  }
  #case-studies {
    padding: 5rem 0 4rem 0;
  }
  #case-studies .cs__heading {
    grid-column: 10 / 13;
    grid-row: 1 / 4;
    min-height: 580px;
  }
  #case-studies .cs__content {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
  }
  .col-sm-12 .rollover .rollover-text {
    font-size: 110px;
    margin-top: 20px;
  }
  .col-sm-6 .rollover .rollover-text {
    font-size: 85px;
  }
}

@media (min-width: 1600px) {
  #case-studies .cs__heading {
    min-height: 700px;
  }
}
