@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Raleway, sans-serif;
  line-height: 1.6;
  background: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  transition: background 0.3s;
  z-index: 1000;
  height: 70px;
}

.navbar.scrolled {
  background: black;
}

.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
  width: auto;
  margin: 3px 0 0 0;

}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 2px 0;
}
/* 
.nav-menu {
  display: none;
  position: absolute;
  top: 60px;
  right: 20px;
  background: black;
  padding: 10px;
  border-radius: 8px;
}

.nav-menu.active {
  display: block;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px 0;
} */

.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  min-width: 300px;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.3s ease;
  z-index: 1000;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.side-menu li {
  margin: 30px 0;
}

.side-menu a {
  font-size: 24px;
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.side-menu.active {
  left: 0;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1001;
}
.close-btn img {
  width: 40px;
}
@media screen and (min-width: 768px) {
  .navbar {
    height: 70px;
  }
  .logo img {
    height: 30px;
  } 

  .hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    margin: 3px 0;
  }
  
}

/* Video Section */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: right;
  z-index: 10;
  background: rgb(0 0 0 / 66%);
}

.big-wrapper {
  text-align: right;
  padding-right: 20px;

}

.big-wrapper svg {
  height: clamp(80px, 12vw, 180px);
  will-change: left, transform;
  cursor: pointer;
  transition: all .2s ease-in-out;
  width: auto;
}

.big-wrapper > div {
  margin-bottom: 20px;
}

.big-wrapper svg path {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2px;
  transition: all .2s ease-in-out;
}
.big-wrapper svg:hover {
  height: clamp(85px, 12.5vw, 185px);
}
.big-wrapper svg:hover path{
  fill: #FFFFFF;
  stroke: none;
  transition: all .2s ease-in-out;
}

@media screen and (min-width: 768px) {
  .video-section {
    height: 100vh;
  }
  .big-wrapper {
    padding-right: 50px;
  }
  
}


/* Section NOSOTROS */
section.nosotros .container{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 30px;
}

section .us-excerpt {
  text-align: center;
  font-weight: 200;
}

a.alquimia-btn {
  border-radius: 16px;
  padding: 10px 30px;
  text-align: center;
  border: 1px solid #F9783F;
  font-size: 20px;
  color: #F9783F;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a.alquimia-btn:hover {
  background: #F9783F;
  color: white;
}

section.trabajos .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
}

.trabajos h3 {
  font-size: 24px;
  color: white;
}

.trabajos-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 40px;
}

.trabajos-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 310px;
  width: 100%;
  max-width: 500px;
}
.trabajos-item h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  text-align: center;
  z-index: 20;
}

.trabajos-item:hover img {
  transform: scale(1.1);
}

.trabajos-item img {
  width: 100%;
  height: auto;
  min-height: 300px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .trabajos-wrapper {
    flex-direction: row;
  }
}

.clients {
  overflow: hidden;
  padding: 120px 0;
}

.clients h3 {
  text-align: center;
  margin-bottom: 30px;
  color: white;
}

.clients-logos {
  width: 100%;
  overflow: hidden;
}

.clients-logos img {
  width: 150px;
  height: auto;
  margin-left: 20px;
} 

@media screen and (max-width: 768px) {
  /* .clients-logos img {
    width: 300px;
    height: auto;
    margin-left: 50px;
  }  */
}

footer {
  font-size: 12px;
  color: #eee;
  padding-right: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.renato {
  color: #9c9c9c;
}
.renato a {
  color: #9c9c9c;
  text-decoration: none;
}


.trabajos-archive {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 40px;
}
.trabajos-archive .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.trabajos-archive h1 {
  font-size: 40px;
  color: white;
}

.trabajos-grid {
  display: grid;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .trabajos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.trabajo-item {
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.trabajo-item:hover {
  transform: scale(1.02);
}
.trabajo-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  height: 100%;
  width: 100%;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.3); /* oscurece un poco la imagen */
  transition: background 0.3s ease;
}

.trabajo-item a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.filtro-categorias ul {
  display: flex;
  justify-content: center;
  gap: 60px; /* separa los items */
  margin: 40px 0;
  flex-wrap: wrap;
}

.filtro-categorias a {
  font-family: Raleway, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  color: white;
  font-size: 30px;
  transition: color 0.2s ease;
}

.filtro-categorias a:hover,
.filtro-categorias a.activo {
  border-bottom: 2px solid white;
  color: #FFF; /* o el color que uses como activo */
}

.on-hover-text {
  display: none !important;
}