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

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.scroll-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #000;
}



/* Panels */
.panel {
  height: 100px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}







.hero {
  position: relative;
  background-image: url('IMG/4.jpg');
  height: 100vh;
  width: 100%;
  padding: 0;
}

.hero-overlay {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.3); /* leve oscurecimiento opcional */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 1rem;
}






.cta {
  color: white;
  text-decoration: underline;
  font-weight: 500;
}

.hero-text {
  align-self: flex-start;
  padding-bottom: 3rem;
  text-align: center;
}

.hero-text h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 160px;
  color: white;
  font-weight: bold;
  margin: 0;
  line-height: 1;
  text-align: center;
}

.contact-text{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-align: center;
}


p {
  font-size: 1.5rem;
}

.proyect{
 position: relative;
  background: url('IMG/8.jpeg') no-repeat center center/cover;
  height: 100vh;
  width: 100%;
  padding: 0;
}

.proyect-overlay {
  height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: center;
}


.boton-proyect{
    display: flex;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 150px;
    color: #fff;
    /* text-align: center; */
    text-decoration-line: none;
    justify-content: center;
    align-items: flex-end;
}

.boton-proyect:hover {
  opacity: 1; /* al pasar el mouse */
  transform: scale(1.03); /* pequeño zoom opcional */
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #F7A705;
}

.boton-proyect2{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: translateY(50px);
}

/* Menú */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}

.boton{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}


.img-menu {
  width: 250px; /* ajusta el tamaño si lo necesitas */
  height: auto;
  opacity: 0.6; /* transparencia inicial */
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  padding-top: 20px;
}

.img-menu:hover {
  opacity: 1; /* al pasar el mouse */
  transform: scale(1.05); /* pequeño zoom opcional */
}


.menu-btn {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 0.7rem 1.5rem;
  font-size: 30px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0);
  color: white;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.5s ease;
  z-index: 999;
}

.menu-overlay.active {
  right: 0;
}

.menu-overlay ul {
  list-style: none;
  text-align: center;
}

.menu-overlay li {
  font-size: 2rem;
  margin: 1rem 0;
  color: white;
}


.redes-sociales {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.redes-sociales a {
  color: white;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.redes-sociales a:hover {
  color: #ffb12b;
}





.footer{
  background-color: #000 !important;
 position: relative;
  height: 100vh;
  width: 100%;
  padding: 0;
}

.footer-overlay {
  height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: center;
    align-items: center;
}

.redes{
  display: flex;
  gap: 50px;
}

.footer-overlay a{
  padding-bottom: 20px;
  font-size: 40px;
  text-decoration: none;
  display: flex;
  color: #ffffff;
}

.footer-overlay p{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #ffffff;
}

/* Cursor personalizado */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  transition: transform 0.2s ease;
}


/* Responsive adjustments */
@media (max-width: 1024px) {

.hero {
  background-position: 20% center;
    min-height: 100px; /* Altura ajustable para pantallas más pequeñas */
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-overlay {
  height: 810px;
  width: 100%;
  background: rgba(0, 0, 0, 0.3); /* leve oscurecimiento opcional */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem;
}

  .hero-text h1 {
    font-size: 80px;
  }

  .boton-proyect {
    font-size: 90px;
  }

  .img-menu {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 60px;
  }

  .boton-proyect {
    font-size: 50px;
    text-align: center;
  }

  .contact-text {
    font-size: 18px;
  }

  .img-menu {
    width: 150px;
  }

  .form-box {
    padding: 1rem;
  }

  .styled-form {
    padding: 0 1rem;
  }

  .menu-overlay li {
    font-size: 1.5rem;
  }

  .redes-sociales {
    gap: 1rem;
  }

  .footer-redes {
    gap: 1rem;
  }

  .custom-cursor {
    display: none; /* ocultar cursor personalizado en móviles */
  }
}

@media (max-width: 480px) {

  .hero {
    min-height: 500px; /* Altura ajustable para pantallas más pequeñas */
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .boton-proyect {
    font-size: 35px;
  }

  .boton-proyect2 {
    font-size: 16px;
    padding: 0 1rem;
  }

  .styled-form input,
  .styled-form button {
    font-size: 0.9rem;
  }

 
}
