/*BASE *********************************************************************************************/

/*FONTS+++++++++++++++*/
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Major+Mono+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&display=swap');

/* *{
    cursor: none !important;
} */
body{
    margin: 0;
    padding: 0;
    
}

/*HEADER*******************************************************HEADER*************************************/

  .home-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.6); /* fallback */
    /* background-color: #C7C7C7; */
    background-color: transparent;
  }

  .home-header-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
  }

  /* .home-header-logo {
    height: 30px;
  } */

  .home-header-nav {
    display: flex;
    gap: 30px;
    font-family: 'Albert Sans', sans-serif;
    font-size: 15px;
    
  }

 .home-header-nav a {
  color: #000;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.home-header-nav a:hover {
  text-decoration: line-through;
}



  .home-header-nav span {
    font-weight: bold;
  }

  .home-header-floating {
    top: 20px;
    width: 800px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  .home-header-time {
  font-family: 'Albert Sans', sans-serif;
  font-size: 15px;
  
}




/*nuevo*/






/* Menú hamburguesa oculto en desktop */
.home-header-burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
}

/* Menú móvil */
.home-header-mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  right: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  z-index: 9998;
}

.home-header-mobile-menu a,
.home-header-mobile-menu span {
  font-family: 'Albert Sans', sans-serif;
  color: #000;
  font-size: 18px;
  margin: 10px 0;
  text-decoration: none;
}

/* Versión responsive */
@media screen and (max-width: 768px) {
  .home-header-nav {
    display: none;
  }

  .home-header-burger {
    display: block;
  }
}


/* Corrección responsive del header flotante */
@media screen and (max-width: 768px) {
  .home-header-floating {
    top: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.95);
  }

  .home-header-mobile-menu {
    top: 60px; /* asegúrate de que este valor coincida con la altura del header flotante */
  }
}






/*FOOTER**********************************************************-----FOOTER----**********************************/
/* Frase en loop */
.home-footer-loop {
  width: 100%;
  overflow: hidden;
  background: white;
  border-top: 1px solid black;
}

.home-footer-loop-inner {
  display: inline-block;
  white-space: nowrap;
  animation: scrollLoopFooter 50s linear infinite;
  font-size: 50px;
  /* font-weight: 800; */
  text-transform: uppercase;
  /* font-family: "Antonio", sans-serif; */
  font-family: 'Albert Sans', sans-serif;
  color: black;
  padding: 10px 0;
}

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

/* Footer base */
.home-footer {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  border-top: 1px solid black;
  width: 100%;
  padding: 20px 30px;
}

.home-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1600px;
  margin: 0 auto;
}

.home-footer-left {
  display: flex;
  align-items: center;
}

.home-footer-right {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: 'Albert Sans', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.home-footer-right a {
  color: white;
  text-decoration: none;
}

/* Hover solo para desktop */
@media (min-width: 769px) {
  .home-footer-right a:hover {
    text-decoration: line-through;
  }
}

.home-footer-copy {
  margin-left: 50px;
  font-weight: normal;
}

/* Responsive minimalista */
@media (max-width: 768px) {
  .home-footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .home-footer-left, .home-footer-right {
    justify-content: center;
  }

  .home-footer-right {
    gap: 20px;
  }

  .home-footer-copy {
    margin-left: 0;
  }
}






/*ANCHOR ************ANCHOR***********************ANCHOR****************ANCHOR*******************ANCHOR***********************/



/*-ANCHOR-CONTENEDOR-1-********************************************************************************************************************/


.work-single-1-contenedor-1-1 {
    background-color: white;
   height: 60px;

}

.work-single-1-contenedor-1 {
    background-color: black;
    color: white;

}

.work-single-1-contenedor-1 h1 {
    font-family: "Antonio", sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 80px;
}

.work-single-1-contenedor-1-texto-1 {
    font-family: 'Albert Sans', sans-serif;
    
    font-weight: 300;
    font-size: 20px;
    color: #B1B1B1;


}

.work-single-1-contenedor-1-texto-2 {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 300;
    font-size: 20px;

}


/*-ANCHOR-CONTENEDOR-2-****************************IMAGENES****************************************************************************************/

.work-single-1-contenedor-2 {
  height: 400px;
  overflow: hidden;
  background-color: #000; 
  padding: 0%;
  margin: 0%;
}

.img-anchor-2   {
    max-height: 400px;
}

.img-anchor-1   {
    max-height: 400px;
    max-width: 800px;
}




/* Estilos responsive */
@media (max-width: 768px) {
  .work-single-1-contenedor-2 {
    height: auto;
    padding: 2rem 0;
  }

  .img-anchor-1,
  .img-anchor-2 {
    max-height: 300px;
    transform: none;
  }
}


/*-ANCHOR-CONTENEDOR-3-****************************TEXTO****************************************************************************************/

.work-single-1-contenedor-3 {
background-color: black;
color: white;

}
.work-single-1-contenedor-3 h2 {
    font-family: "Antonio", sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 45px;

}

.work-single-1-contenedor-1-texto-3     {
    font-family: 'Albert Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 25px;


}

/*-ANCHOR-CONTENEDOR-4-****************************IMAGEN-TEXTO****************************************************************************************/


.work-single-1-contenedor-4 {
  font-family: 'Albert Sans', sans-serif;
  color: white;
  background-color: black;
}

.item-single-work__title {
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.item-single-work__divider {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background-color: white;
  border: none;
  margin-top: 0;
  margin-bottom: 10px;
}

.item-single-work__list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.6;
}

.item-single-work__list li {
  font-size: 16px;
}

.item-single-work__button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 4px 0;
  cursor: pointer;
}

.item-single-work__button:hover {
  text-decoration: line-through;
}

.item-single-work__icon {
  width: 16px;
  height: auto;
}

/* Imagen derecha */
.anchor-note-img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .item-single-work__button {
    font-size: 14px;
  }

  .item-single-work__title {
    font-size: 18px;
  }

  .anchor-note-img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
  }
}


/*-ANCHOR-CONTENEDOR-5-****************************IMAGEN*************************************************************************************/

.work-single-1-contenedor-5 {
    max-height: 580px;
}


/*-ANCHOR-CONTENEDOR-6-****************************TEXTO*************************************************************************************/


.work-single-1-contenedor-6 {
  background-image: url('../img/frame-work-anchor.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 80px 40px;
  max-height: 300px; 
  overflow: hidden;  
  font-weight: 600;
  font-family: 'Albert Sans', sans-serif;
  text-transform: uppercase;
  font-size: 25px;
}

.anchor-logo-small {
  width: 150px;
  height: auto;
  max-height: 28px;
  object-fit: contain;
  image-rendering: auto; 
}


/*-ANCHOR-CONTENEDOR-7-****************************TEXTO*************************************************************************************/

.work-single-1-contenedor-7 {
background-color: black;
color: white;
}


.work-single-1-contenedor-7 h4 {
font-family: "Antonio", sans-serif;
text-transform: uppercase;
font-size: 50px;
font-weight: 600;

}

.work-single-1-click {
font-family: "Antonio", sans-serif;
text-transform: uppercase;
font-size: 70px;
font-weight: 800;

}

.work-single-1-more {
font-family: 'Albert Sans', sans-serif;
font-weight: 600;
font-size: 25px;

}

.image-link {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.image-link:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.5)); /* efecto glow/soft shadow */
}
