@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&display=swap');

    html {
      scroll-behavior: smooth;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: #f7f5ec;
      overflow-x: hidden;
    }

    /* ===== HOME SECTION ===== */
    .home {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      padding: 20px;
      background: #f7f5ec;
    }

    .video-home {
      position: absolute;
      top: 20px;
      left: 20px;
      width: calc(100% - 40px);
      height: calc(100% - 40px);
      object-fit: cover;
      border-radius: 30px;

    }

    .home-overlay {
      position: absolute;
      top: 20px;
      left: 20px;
      right: 20px;
      bottom: 20px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
      z-index: 2;
      border-radius: 30px;
    }

    .home-text {
      position: absolute;
      bottom: 40px;
      left: 120px;
      right: 120px;
      color: white;
      font-size: clamp(70px, 3vw, 200px);
      font-weight: 500;
      font-family: 'Instrument Serif', serif;
      z-index: 3;
      text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }

    .scroll-btn {
      position: absolute;
      bottom: 60px;
      left: 50px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background: white;
      cursor: pointer;
      font-size: 24px;
      color: #5B9BD5;
      z-index: 3;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .scroll-btn:hover {
      transform: translateY(5px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    }

    .logo {
      position: fixed;
      top: 50px;
      left: 50px;
      width: 160px;
      z-index: 100;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    }

    .menu-container {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 100;
    }

    .menu-btn {
    background: #5fa3e3;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .menu-btn:hover {
    background: #4a8fd1;
    transform: scale(1.05);
    }

/* ================= MENU CONTENEDOR ================= */

.menu {
  position: absolute;
  top: 0;
  right: 0;
  background: #7db1ea;
  padding: 20px 25px;
  border-radius: 30px;
  display: flex;
  gap: 25px;
  align-items: center;

  /* 👇 fuera de la pantalla */
  transform: translateX(120%);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease 0.15s;

  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
}

/* cuando aparece */
.menu-container:hover .menu {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

/* ================= LINKS ================= */

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;

  opacity: 0;
  transform: translateX(20px);

  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s ease;
}

/* visibles */
.menu-container:hover .menu a {
  opacity: 1;
  transform: translateX(0);
}

.menu a:hover {
  opacity: 0.8;
}

/* ================= DELAYS ESCALONADOS ================= */

.menu a:nth-child(1) {
  transition-delay: 0.2s;
}

.menu a:nth-child(2) {
  transition-delay: 0.1s;
}

.menu a:nth-child(3) {
  transition-delay: 0s;
}



    .cta-btn {
      position: fixed;
      bottom: 50px;
      right: 50px;
      background: #2f7f74;
      color: white;
      border: none;
      padding: 14px 24px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 600;
      z-index: 100;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(47, 127, 116, 0.4);
    }

    .cta-btn:hover {
      background: #258073;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(47, 127, 116, 0.5);
    }

    /* ===== SECTION INFO ===== */
    .section-info {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 20px;
      overflow: hidden;
      background: #f7f5ec;
    }
    

    .section-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 3%;
    width: 90%;
    height: 100%;
    background-image: url('vector1.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.1s linear;
    }

    .info-content {
      max-width: 900px;
      text-align: center;
      z-index: 2;
      position: relative;
    }

    .info-content h1 {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.3;
      color: #2C5F7C;
      font-weight: 400;
      margin-bottom: 40px;
    }

    .btn-contacto {
      background: #7EB5E8;
      color: white;
      border: none;
      padding: 16px 36px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 500;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px rgba(126, 181, 232, 0.3);
      text-decoration: none;
    }

    .btn-contacto span {
      background: white;
      color: #7EB5E8;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .btn-contacto:hover {
      background: #6BA4D7;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(126, 181, 232, 0.4);
    }

    .btn-contacto:hover span {
      transform: translateX(4px);
    }

    /* ===== SECTION PASOS ===== */
    .section-pasos {
      display: flex;
      flex-direction: column;
      gap: 10vh;
      padding: 25px 20px;
      max-width: 2100px;
    }

    .paso {
      position: sticky;      
	  top: 80px; 
      border-radius: 30px;
      overflow: hidden;
      transition: transform 0.3s ease;
      cursor: pointer;
    }

	.paso.is-stacked {
	transform: scale(0.92);
	}


    .paso:hover {
      transform: translateY(-5px);
      
    }

    .paso-video {
      width: 100%;
      height: 700px;
      object-fit: cover;
      display: block;
      transition: filter 0.3s ease;
      filter: brightness(0.85);
    }

    .paso:hover .paso-video {
      filter: brightness(1);
    }

    .paso-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6));
      pointer-events: none;
    }

	.paso-texto {
	  position: absolute;
	  bottom: 40px;
	  left: 40px;
	  right: 40px;
	  color: white;
	  font-size: clamp(35px, 8vw, 100px);
	  font-weight: 400;
	  font-family: 'Instrument Serif', serif;
	  z-index: 2;
	  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
	  line-height: 1.3;
	  pointer-events: none;
	}

    .paso-numero {
      position: absolute;
      top: 30px;
      left: 30px;
      background: white;
      color: #0f5c5c;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-weight: bold;
      font-size: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      pointer-events: none;
    }

    /* ===== SECCIÓN REDES ===== */
	/* ===== SECCIÓN REDES ===== */
	.section-redes {
	  position: relative;
	  background-color: #f7f5ec;
	  padding: 300px 0px;
	  overflow: hidden;
	  min-height: 1200px;
	}

    /* Fondo decorativo */
    .section-redes::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('vector3.png');
    background-size: 85% 90%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    transition: none;
    }

	/* ===== TIRAS ===== */
	.tira {
	  position: absolute;
	  width: 120%;
	  padding: 90px 40px;
	  font-size: clamp(48px, 6vw, 100px);
	  font-family: 'Instrument Serif', serif;
	  display: flex;
	  align-items: center;
	  justify-content: flex-start;
	  padding-left: 25%;
	  white-space: nowrap;
	  transform-origin: center;
	  z-index: 2;
	}

	/* Tira café */
	.tira-cafe {
	  top: 35%;
	  background: #9c5a34;
	  transform: translateX(-10%) rotate(10deg) translateY(20px);
	  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
	  z-index: 3;
	}

	/* Tira verde */
	.tira-verde {
	  top: 48%;
	  background: #0f5c5c;
	  transform: translateX(-10%) rotate(-14deg) translateY(-20px);
	  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
	  z-index: 4;
	}

	/* Texto */
	.tira span,
	.tira a {
	  color: #fff;
	}

	.tira a {
	  text-decoration: underline;
	  text-decoration-thickness: 2px;
	  text-underline-offset: 4px;
	  transition: opacity 0.3s ease;
	}

	.tira a:hover {
	  opacity: 0.85;
	}
	
    .tira span {
      color: white;
    }

    .tira a {
      color: white;
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 4px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .tira a:hover {
      opacity: 0.8;
      text-decoration-thickness: 3px;
    }

    /* ===== SECCIÓN SNEAKERS ===== */
    .section-sneakers {
      display: flex;
      gap: 0;
      padding: 0px 20px;
      background: #f7f5ec;
      min-height: 600px;
    }

    .box-texto {
      flex: 1;
      background: #9c5a34;
      color: white;
      padding: 80px 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 40px;
    }

    .box-texto p {
      font-size: clamp(90px, 4.5vw, 104px);
      line-height: 1.15;
      font-family: 'Instrument Serif', serif;
      font-weight: 400;
      font-style: normal;
      margin: 0;
    }

    .box-video {
      flex: 1;
      border-radius: 40px;
      overflow: hidden;
      position: relative;
    }

    .box-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ===== SECCIÓN TRANSICIÓN ===== */
    .section-transicion {
    position: relative;
    width: 90%;
    min-height: 400px;
    background: #f7f5ec;
    padding: 0;
    overflow: hidden;
    }

    .section-transicion::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('vector2.png');
    background-size: 80% 100%;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: inset(0 0 100% 0);
    transition: none;
    z-index: 1;
    pointer-events: none;
    }

    /* ===== SECCIÓN INVERTIDA ===== */
    .section-invertida {
      padding: 0px 20px;
      background: #f7f5ec;
      max-width: 1600px;
      margin: 0 auto;
    }

    .card-principal {
      display: flex;
      border-radius: 30px;
      overflow: hidden;
      margin-bottom: 50px;
    }

    .card-video {
      flex: 2;
      min-height: 500px;
    }

    .card-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 40px;
    }

    .card-info {
      flex: 1;
      background: #0b5b5f;
      color: #e9f3f1;
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 30px;
      border-radius: 40px;
    }

    .card-info p {
      font-size: clamp(35px, 4.5vw, 60px);
      line-height: 1.3;
      margin: 0;
      font-family: 'Instrument Serif', serif;
      font-weight: 400;
    }

    .redes {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .redes a {
      width: 64px;          /* círculo más grande */
      height: 64px;
      border-radius: 50%;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
      overflow: hidden;
    }

    .redes a svg {
    width: 75%;
    height: 75%;
    }

    .redes a:hover {
      transform: scale(1.15);
      opacity: 0.8;
    }

    /* ===== FOOTER ===== */
    .footer-content {
      width: 100%;
      padding: 40px 0 20px 0;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 60px;
      padding: 0 20px;
    }

    .footer-logo img {
      max-width: 500px;
      height: auto;
    }

    .footer-texto h2 {
      font-size: clamp(75px, 12vw, 700px);
      font-family: 'Instrument Serif', serif;
      font-weight: 400;
      color: #0b5b5f;
      margin: 0;
     
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      border-top: 1px solid rgba(11, 91, 95, 0.2);
    }

    .footer-copy p {
      font-size: 15px;
      color: #0b5b5f;
      margin: 0;
      font-weight: 500;
    }

    .footer-links {
      display: flex;
      gap: 30px;
    }

    .footer-links a {
      font-size: 15px;
      color: #0b5b5f;
      text-decoration: none;
      font-weight: 500;
      transition: opacity 0.3s ease;
    }

    .footer-links a:hover {
      opacity: 0.7;
      text-decoration: underline;
    }

    /* ===== RESPONSIVE ===== */
   @import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #f7f5ec;
  overflow-x: hidden;
}



/* ===== FOOTER ===== */
.footer-content {
  width: 100%;
  padding: 40px 0 20px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.footer-logo img {
  max-width: 500px;
  height: auto;
}

.footer-texto h2 {
  font-size: clamp(75px, 12vw, 700px);
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  color: #0b5b5f;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-top: 1px solid rgba(11, 91, 95, 0.2);
}

.footer-copy p {
  font-size: 20px;
  color: #0b5b5f;
  margin: 0;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-size: 18px;
  color: #0b5b5f;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* ===== RESPONSIVE TABLETS ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .home-text {
    font-size: clamp(50px, 6vw, 80px);
    left: 80px;
    right: 80px;
  }

  .logo {
    width: 120px;
  }

  .section-info h1 {
    font-size: clamp(28px, 4vw, 42px);
  }

  .paso-video {
    height: 500px;
  }

  .paso-texto {
    font-size: clamp(28px, 5vw, 60px);
  }

  .tira {
    padding: 100px 600px;
    font-size: clamp(40px, 5vw, 70px);
  }

  .tira-cafe {
    padding-left: 400px;
  }

  .box-texto p {
    font-size: clamp(60px, 5vw, 80px);
  }

  .card-info p {
    font-size: clamp(32px, 4vw, 48px);
  }

  .footer-texto h2 {
    font-size: clamp(60px, 10vw, 120px);
  }

  .footer-logo img {
    max-width: 350px;
  }
}

/* ===== RESPONSIVE MÓVIL ===== */
@media (max-width: 768px) {
  .home {
    height: 15vh;
    min-height: 350px;
    padding: 15px;
  }

  .video-home {
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
	object-fit: cover;
    border-radius: 20px;
  }

  .home-overlay {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 20px;
  }

  .scroll-btn {
    bottom: 20px;
    left: 10%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .logo {
    top: 25px;
    left: 25px;
    width: 100px;
  }

  .menu-container {
    top: 20px;
    right: 20px;
  }

  .menu-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .menu {
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
    border-radius: 20px;
  }

  .menu a {
    font-size: 14px;
  }

  .cta-btn {
    bottom: 20px;
    right: 20px;
    left: 20px;
    width: calc(100% - 40px);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  .section-info {
    min-height: 80vh;
    padding: 60px 20px;
  }

  .section-info::before {
    width: 60%;
    height: 100%;
    left: 0;
    background-size: cover;
  }

  .info-content h1 {
    font-size: clamp(48px, 6vw, 36px);
    margin-bottom: 30px;
  }


  /* Contenedor de la flecha */
  .btn-contacto .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 50%;
    border: 1.5px solid currentColor;

    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  /* SVG centrado */
  .btn-contacto .arrow svg {
    display: block;
  }

  /* Hover elegante */
  .btn-contacto:hover .arrow {
    transform: translateX(6px);
    background-color: rgba(116, 170, 235, 0.12);
  }


  .section-pasos {
    padding: 0px 20px;
    gap: 40px;
  }

  .paso-video {
    height: 450px;
  }

  .paso-numero {
    width: 48px;
    height: 48px;
    font-size: 22px;
    top: 20px;
    left: 20px;
  }

  .paso-texto {
    font-size: clamp(20px, 4vw, 32px);
    bottom: 25px;
    left: 25px;
    right: 25px;
  }

  .section-redes {
    padding: 160px 0px;
    min-height: 500px;
  }

  .tira {
    width: 120%;
    padding: 45px 20px;
    font-size: clamp(22px, 6vw, 36px);
    padding-left: 18%;
  }

  .tira-cafe {
    top: 44%;
    transform: translateX(-10%) rotate(12deg);
    clip-path: polygon(0 10%, 100% 0, 100% 80%, 0 100%);
  }

  .tira-verde {
    top: 50%;
    transform: translateX(-10%) rotate(-14deg);
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  }
}

@media (max-width: 900px) {
  .section-sneakers {
    flex-direction: column;
    min-height: auto;
    padding: 0 20px;
  }

  .box-texto {
    padding: 50px 30px;
    border-radius: 40px 40px 0px 0px;
  }
  
  .box-texto p {
    font-size: clamp(28px, 7vw, 42px);
    text-align: center;
  }

  .box-video {
      height: 300px;
      border-radius: 0px 0px 40px 40px;
  }

  .box-video video {
    width: 125%; /* Agranda el video horizontalmente */
    height: 110%; /* Agranda el video verticalmente */
    object-fit: cover;
    object-position: center;
    margin-left: -15%; /* Centra el video agrandado */
    margin-top: -5%; /* Centra el video agrandado */
  }


  .section-invertida {
    padding: 0px 20px;
  }

  .card-principal {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .card-video {
    height: 300px;
    min-height: auto;
  }

  .card-info {
    text-align: center;
    padding: 50px 30px;
    border-radius: 0px 0px 30px 30px;
  }

    .card-video video {
    border-radius: 30px 30px 0px 0px;
  }

  .card-info p {
    font-size: clamp(32px, 5vw, 32px);
  }

  .redes {
    justify-content: center;
  }

  .redes a svg {
  width:  65%;
  height: 65%;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-bottom: 40px;
  }

  .footer-logo img {
    max-width: 200px;
  }

  .footer-texto h2 {
    font-size: clamp(36px, 8vw, 60px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== RESPONSIVE MÓVIL PEQUEÑO ===== */
@media (max-width: 480px) {
  .home-text {
    font-size: clamp(28px, 7vw, 38px);
    bottom: 25px;
    left: 70px;
    right: 20px;
  }

  .paso-video {
    height: 350px;
  }

  .paso-numero {
    width: 40px;
    height: 40px;
    font-size: 18px;
    top: 15px;
    left: 15px;
  }

  .paso-texto {
    font-size: clamp(18px, 5vw, 24px);
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .section-transicion {
    min-height: 150px;
  }

  .footer-texto h2 {
    font-size: clamp(55px, 8vw, 48px);
  }
}