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

body {
  background-color:#121212;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  padding: 2rem;
  cursor: none;
}



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
	 flex-direction: row;
}


.process-section {
  color: white;
  padding: 80px 0;
}

.process-container {
  display: flex;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8vw;
}

.process-left {
  flex: 1;
  font-family: 'Inter', sans-serif;
}

.process-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
}

.process-right {
  flex: 3;
}

.process-text {
	 font-family: Media Sans Semicondensed,Impact,sans-serif;
	font-size: 60px;
font-weight: 500;
  line-height: 1;
  margin-bottom: 60px;
  max-width: 800px;
}

/* Ocultar menú en mobile */
.menu-toggle {
	display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1001; /* por encima del menú */
}


.logo {
  font-size: 2rem;
  font-weight: bold;
}

.logo span {
  color: #fff;
}


/*Rotating Cards*/


.cta-section {
      position: relative;
      height: 1000px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      overflow: hidden;
    }

   .wheel-wrapper {
      position: absolute;
      top: 70%;
      left: 50%;
      width: 100px;
      height: 100px;
      transform: translate(-50%, -50%);
      z-index: 1;
    }

    .wheel {
      width: 100%;
      height: 100%;
      position: relative;
      animation: spin 20s linear infinite;
    }

    .wheel .card {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 150px;
      height: 200px;
      margin: -50px;
      border-radius: 20px;
      overflow: hidden;
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }


    .card:nth-child(1) { transform: rotate(0deg) translateY(-400px)  }
.card:nth-child(2) { transform: rotate(30deg) translateY(-400px) }
.card:nth-child(3) { transform: rotate(60deg) translateY(-400px)  }
.card:nth-child(4) { transform: rotate(90deg) translateY(-400px)  }
.card:nth-child(5) { transform: rotate(120deg) translateY(-400px)}
.card:nth-child(6) { transform: rotate(150deg) translateY(-400px) }
.card:nth-child(7) { transform: rotate(180deg) translateY(-400px) }
.card:nth-child(8) { transform: rotate(210deg) translateY(-400px)}
.card:nth-child(9) { transform: rotate(240deg) translateY(-400px)}
.card:nth-child(10) { transform: rotate(270deg) translateY(-400px)}
.card:nth-child(11) { transform: rotate(300deg) translateY(-400px)}
.card:nth-child(12) { transform: rotate(330deg) translateY(-400px)}

 @keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

    .gradient-mask {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 40%;
      background: linear-gradient(to top, #121212 50%, transparent);
      z-index: 2;
    }

    .cta-content {
      position: relative;
      z-index: 3;
      text-align: center;
      margin-top: 300px;
    }

    .cta-content h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .cta-content p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      color: #bbb;
    }

    .cta-content button {
      background: #ff5c1f;
      border: none;
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 999px;
      font-weight: bold;
      cursor: pointer;
    }

/*Project Section*/

.project-gallery {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.project-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.85rem;
  border-radius: 6px;
  font-weight: 500;
}

/* Estilo para las imágenes grandes */
.project-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Estilo para la imagen final ancha */
.project-card.large-orange {
  grid-column: span 3;
  height: 300px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.03);
}

.project-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-weight: 500;
  font-size: 1rem;
  background: rgba(0,0,0,0.6);
  padding: 6px 12px;
  border-radius: 8px;
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #2a2a2a;
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
}

.project-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #ccc;
}

.btn-discover {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: #fff;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-discover:hover {
  background: #facc15;
}

/*Project Section End*/


/*Services*/

.about-section {
  color: white;
}

.about-container {
  display: flex;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8vw; /* <- esto alinea ambos lados */
}

.about-left {
  flex: 1;
  font-family: 'Inter', sans-serif;
}

.about-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
}

.about-right {
  flex: 3;
}

.about-text {
font-family: 'SF Pro Display', sans-serif;
  font-weight: 300;
	font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 800px;
}

.services-title {
	font-family: Media Sans Semicondensed,Impact,sans-serif;
	font-size: 60px;
font-weight: 500;
  margin-bottom: 40px;
}

.service {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
}

.service-number {
  font-weight: bold;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  width: 40px;
}

.service-name {
  font-size: 20px;
  margin: 0;
}

.service-desc {
  font-size: 14px;
  opacity: 0.6;
  margin-top: 6px;
}

/*Video Carousel*/

#video-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

#video-carousel-wrapper {
  overflow: hidden;
}

.video-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
	display: inline-block; /* necesario para que transform funcione */
  transition: transform 0.3s ease, color 0.3s ease;
}

nav a:hover {
  transform: translateY(-3px); /* ajusta la cantidad que se eleva */
}

nav a.active {
  border-bottom: 2px solid #fff;
}

.portfolio-section {
	
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.reel-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 visibles con gap de 24px entre */
  border-radius: 16px;
  overflow: hidden;
  background: #222;
}

.reel-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.carousel-button {
  flex-shrink: 0;
  flex-grow: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: none;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  aspect-ratio: 1 / 1; /* fuerza forma circular en navegadores modernos */
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.carousel-button.prev {
  margin-right: 16px;
}

.carousel-button.next {
  margin-left: 16px;
}

.portfolio-message {
  text-align: center;
  color: #fff;
  margin-top: 6rem; /* para que quede aprox 300px abajo */
  padding: 2rem;
}

.portfolio-subtitle {
  color: #facc15; /* amarillo suave tipo tailwind amber-400 */
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.portfolio-title {
	  font-family: Media Sans Semicondensed,Impact,sans-serif;
	font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.5rem 0;
}

.portfolio-description {
font-family: 'SF Pro Display', sans-serif;
  font-weight: 300;	
	font-size: 1.3em;
  color: #cfcfcf;
  line-height: 1.6;
}


.contact {
  background-color: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

main {
  text-align: center;
  position: relative;
	z-index: 0;
}

.carousel-section {
  overflow: hidden;
  padding: 2rem 0;
  width: 100%;
	  margin-top: 250px; /* Esto lo empuja hacia abajo */

}

.carousel-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll-carousel 20s linear infinite;
}

.carousel-track img {
  height: 60px;
  opacity: 0.7;
  filter: grayscale(1);
  transition: transform 0.3s, opacity 0.3s, filter 0.3s;
}

.carousel-track img:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: grayscale(0);
}




.intro {
font-family: 'SF Pro Display', sans-serif;
  font-weight: 300;
	font-size: 1.3em;
    line-height: 1.33;
  color: #ccc;
}



h1 {
	  font-family: Media Sans Semicondensed,Impact,sans-serif;
	position: relative;
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  transition: all 0.3s ease;
	  z-index: 0;
}

h1 strong,
h1 span {
  transition: all 0.3s ease;
}

h1 strong {
  color: #fff;
}

h1 span {
  display: block;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

/* Hover: intercambiar estilos */
h1:hover strong {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

h1:hover span {
  color: #fff;
  -webkit-text-stroke: 0;
}

.profile-img {
	position: absolute;
  top: 30%;
  left: 35%;
  width: 500px;
  max-width: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  transition: transform 0.2s ease-out; /* para que el movimiento sea suave */
}



.location {
font-family: 'SF Pro Display', sans-serif;
  font-weight: 300;
	font-size: 1.3em;
    line-height: 1.33;
  color: #ccc;
  margin-top: 1rem;
	margin-left: 450px;
	text-align: left;

}

.cta-buttons {
	  position: relative;
  margin-top: 15rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
	  z-index: 2;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 200;
  transition: all 0.3s ease;
	  z-index: 2;
}

.primary {
  background-color: #fff;
  color: #000;
}

.secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Animaciones */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor personalizado */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #000;
  pointer-events: none;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease-out, opacity 0.2s ease;
  opacity: 0;
}

.custom-cursor svg {
  width: 20px;
  height: 20px;
  stroke: #000;
}


/*Mobile*/

@media (max-width: 537px) {
  body {
    padding: 1rem;
  }

  header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .intro {
    font-size: 1rem;
  }

  h1 {
    font-size: 5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
	
	.nav-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #111;
    padding: 1rem;
    position: absolute;
    top: 70px;
    right: 1rem;
    z-index: 999;
    border-radius: 10px;
  }
	
	.nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
	  
  }

  .location {
    font-size: 0.95rem;
  }

  .profile-img {
	  left: 5%;
	  width: 1100px;
	  heigt: auto;	
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

}

/*Mobile End*/



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




@font-face {
  font-family: 'SF Pro Display';
  src: url('https://cdn.prod.website-files.com/61dd9ddd76c6a058a47a4c57/61dda8ac2d6530d8d9434405_SFProDisplay-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('https://cdn.prod.website-files.com/61dd9ddd76c6a058a47a4c57/61dda8ad7ba2babdf37e071d_SFProDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('https://cdn.prod.website-files.com/61dd9ddd76c6a058a47a4c57/61dda8ad0965b81fb8c985ba_SFProDisplay-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('https://cdn.prod.website-files.com/61dd9ddd76c6a058a47a4c57/61dda8ad0965b81fb8c985ba_SFProDisplay-Medium.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Media sans extended';
    src: url('https://cdn.prod.website-files.com/61dd9ddd76c6a058a47a4c57/624325e94e62e146c669871c_Media%20Sans%20SemiCondensed%20-%20Extended.eot') format('embedded-opentype'), url('https://cdn.prod.website-files.com/61dd9ddd76c6a058a47a4c57/624325ea630c625303e9b1f9_Media%20Sans%20SemiCondensed%20-%20Extended.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Media Sans Semicondensed';
    src: url('https://cdn.prod.website-files.com/61dd9ddd76c6a058a47a4c57/61dda8782d6530778e4343c5_mediasanssemicondensed-bold-TRIAL.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
