*{
    margin:0em;
    padding:0em;
}
html{ 
  overflow-x: hidden;
  background-color: #050505;
}

@font-face{
    font-family: 'Neue-Haas-Display';
    src:url(tipografias/NeueHaasDisplayMediu.ttf);
    font-weight: bold;
    font-style: bold;
}

@font-face{
    font-family: 'Neue-Haas-Display';
    src:url(tipografias/NeueHaasDisplayThin.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family: 'Neue-Haas-Display';
    src:url(tipografias/NeueHaasDisplayThinItalic.ttf);
    font-weight: normal;
    font-style: italic;
}




/*BOTON*/

.boton {
    font-family: 'Neue-Haas-Display';
    font-weight: normal;
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    border: 1px;
    border-style: solid;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.boton:hover {
   
    transform: scale(1.25); /* Aumenta ligeramente el tamaño */
    cursor: pointer; /* Cambia el cursor al puntero */
}
/*FOOTER*/

footer {
  background-color: #050505;
  font-family: 'Neue-Haas-Display';
  font-weight: normal;
  font-size: 16px ;
  border: solid;
    border-width:0.3px 0px 0px ;
    border-color: #ffffff; /* Línea blanca */
    align-items: baseline;
    grid-column: 1 / 7;
    list-style: none;
    background-color: #050505; /* Fondo negro */
    color: #ffffff; /* Texto blanco */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;

}

.footer-aclaracion{
  opacity: 70%;
}


/* FONDO LANDING */

:root {
    --color-bg1: #050505;
    --color-bg2: #000000;
    --color1: 255, 136, 0;      
    --color2: 255, 94, 58;      
    --color3: 255, 194, 125;    
    --color4: 100, 180, 190;    
    --color5: 70, 70, 70;    
    --color-interactive: 255, 162, 0;
    --circle-size: 80%;
    --blending: darken;
  }
  
  @keyframes moveInCircle {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(180deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes moveVertical {
    0% {
      transform: translateY(-50%);
    }
    50% {
      transform: translateY(50%);
    }
    100% {
      transform: translateY(-50%);
    }
  }
  
  @keyframes moveHorizontal {
    0% {
      transform: translateX(-50%) translateY(-10%);
    }
    50% {
      transform: translateX(50%) translateY(10%);
    }
    100% { 
      transform: translateX(-50%) translateY(-10%);
    }
  }
  
  
  .gradient-bg {
    display:flex;
    align-items: top;
    width: 100vw;
    height: 100vh;
    position:absolute;
    overflow: hidden;
    background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
    top: 0;
    left: 0;
    z-index: -2;
  
    svg {
      display: none;
    }
  
  
    .gradients-container {
      filter: url(#goo) blur(40px) ;
      width: 100%;
      height: 100%;
    }
  
    .g1 {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2);
      left: calc(50% - var(--circle-size) / 2);
  
      transform-origin: center center;
      animation: moveVertical 30s ease infinite;
  
      opacity: 1;
    }
  
    .g2 {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2);
      left: calc(50% - var(--circle-size) / 2);
  
      transform-origin: calc(50% - 400px);
      animation: moveInCircle 20s reverse infinite;
  
      opacity: 1;
    }
  
    .g3 {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2 + 200px);
      left: calc(50% - var(--circle-size) / 2 - 500px);
  
      transform-origin: calc(50% + 400px);
      animation: moveInCircle 40s linear infinite;
  
      opacity: 1;
    }
  
    .g4 {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2);
      left: calc(50% - var(--circle-size) / 2);
  
      transform-origin: calc(50% - 200px);
      animation: moveHorizontal 40s ease infinite;
  
      opacity: 0.7;
    }
  
    .g5 {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: calc(var(--circle-size) * 2);
      height: calc(var(--circle-size) * 2);
      top: calc(50% - var(--circle-size));
      left: calc(50% - var(--circle-size));
  
      transform-origin: calc(50% - 800px) calc(50% + 200px);
      animation: moveInCircle 20s ease infinite;
  
      opacity: 1;
    }
  
    .interactive {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: 100%;
      height: 100%;
      top: -50%;
      left: -50%;
  
      opacity: 0.7;
    }
  }


  .landing-page-body {
    
    height: 100vh; /* Ocupa toda la altura de la ventana */
    display: flex;
    flex-direction: column; /* Organización en columna */
    align-items: center;
    justify-content: center;
    gap: 200px;
    position: absolute; /* Necesario para posicionar elementos secundarios */
    overflow: hidden; /* Evita que elementos se salgan del contenedor */
}

/* LOGO CENTRAL*/

.logo-container-landing-page{
    margin-top: 200px;
    width: 100vw;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: center;

}
.main-big-logo {
    width: 600PX; /* Tamaño ajustable del logo */
    opacity: 0; /* Comienza invisible */
    animation: fadeIn 1.5s ease-in-out forwards; /* Aparece gradualmente */
    transform-origin: bottom center;
    position:absolute;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*BOTONES LANDING*/

.botones-container{
    font-family: 'Neue-Haas-Display';
   
    display: flex;
    flex-direction: row;
    gap: 50px;
}

/*HEADER*/
.logo-header{
    height:25px;
    width: auto;
    
 }


/*HEADER*/
header {
  background-color: #050505;
  font-family: 'Neue-Haas-Display';
  font-weight: normal;
  font-size: 16px ;
  border: solid;
    border-width:0px 0px 0.3px ;
    border-color: #ffffff; /* Línea blanca */
    align-items: baseline;
    grid-column: 1 / 7;
    list-style: none;
    background-color: #050505; /* Fondo negro */
    color: #ffffff; /* Texto blanco */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    
}


header ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 1em;
    padding: 1em;
}
header ul li{
  display: flex;
  flex-direction: row;
  align-items: center;
}


header ul li a {
 
    font-family: 'Neue-Haas-Display';
    font-style: normal;
    color: #ffffff; /* Enlaces blancos */
    text-decoration: none;
    transition: color 0.3s ease;
}

header ul li a:hover {
    font-style: italic;
    text-decoration: underline;
    color: #cccccc; /* Color gris claro al pasar el cursor */
}

header ul li a img:hover {
  font-style: italic;
  text-decoration: underline;
  color: #cccccc; /* Color gris claro al pasar el cursor */
}

/*PROYECTOS*/

.proyectos-titular {
  font-family: 'Neue-Haas-Display';
  font-weight: normal;
  font-size: 30px;
  color: #ffffff; 
  padding: 20px;
}

.body-proyectos {
    
    background-color: #050505; /* Fondo negro */
}

.proyectos-body-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 10px;
    padding-top: 10px;
    padding: 10px;

}

.proyectos-body-container div  {
    
    color: #ffffff; /* Texto blanco */
    padding: 10px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}





/*CARD*/
.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw/3;
  height: 335px; 
  border-radius: 10px;
  overflow: hidden; 
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transform: scale(1.05);
  
  transition: transform 1s ease, opacity 0.3s ease; /* Transiciones suaves */
}

.card-imagen-estatica {
  position: absolute;
  transform: scale(1.05);
  top: 0;
  left: 0;
  opacity: 1; /* Visible por defecto */
  
}

.card-imagen-movimiento {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* Oculta por defecto */
  
}

.card:hover .card-imagen-estatica {
  opacity: 0; /* Ocultar imagen estática al hacer hover */
}

.card:hover .card-imagen-movimiento {
  opacity: 1; /* Mostrar el GIF */
}







/* Texto de la card */
.card-texto-container {
    position: absolute;
    bottom: 0;
    left: 0;
    gap: 100px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    opacity: 0; /* Ocultar inicialmente */
    transform: translateY(100%); /* Colocar fuera del viewport */
    transition: opacity 1s ease, transform 0.3s ease; /* Suavizar aparición */
    line-height: 1.2; 
}

.card:hover .card-texto-container {
    opacity: 1; /* Hacer visible al hacer hover */
    transform: translateY(0); /* Subir a la posición visible */
}

.card-titulo {
    height: 100%;
    font-family: 'Neue-Haas-Display';
    font-weight: normal;
    justify-content: space-between;
    font-size: 30px;
    color: #fff;
    margin: 0;
}
.card-titulo-alternativa {
  height: 100%;
  font-family: 'Neue-Haas-Display';
  font-weight: normal;
  justify-content: space-between;
  font-size: 30px;
  color: #fff;
  margin: 0;
}



.card-subtitulo {
    display: flex;
    flex-direction: column;
    gap: 150px;
    align-items: left;
    margin-top: 10px;
    
}



.card-categoria {
    font-family: 'Neue-Haas-Display';
    font-weight: normal;
    font-size: 20px;
    color: #fff;
}

.card-ano {
    font-family: 'Neue-Haas-Display';
    font-style: italic;
    font-size: 15px;
    color: #fff;

}


.card-link{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    
}

.card-link p {
    font-family: 'Neue-Haas-Display';
    font-weight: normal;
    font-size: 20px;
    text-decoration: underline;
    color: #fff;
}
.card-link img {
    width: 20px;
}
.card-link :hover {
  font-style: italic;
}


/*PROYECTO DETALLE*/



.container{
  margin: 20px;
  display: grid;
  grid-template-columns:16,6 16,6 16,6 16,6 16,6 16,6; 
  grid-template-rows: 6.25% auto auto 6,25%;
  
}


.carousel {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.carousel-images {
    display: flex;
    width: 320%; 
    height: 100%;
    transition: transform 1s ease-in-out;
}
.carousel-images img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}
/* indicadores!!!!!! IMPORTANTE */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.carousel-indicator {
    background-color: rgba(255, 255, 255, 255);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.5s;
}
.carousel-indicator.active {
    background-color: #fff;
}


.work_description{
    font-family: 'Neue-Haas-Display';
    color:#fff;
    font-size: 22px;
    font-weight: normal;
    margin:0px;
    padding:100px 150px 100px 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 200;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    animation: bounce 1.5s infinite;
}

.work_gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.work_gallery ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 05px;
  margin: 0;
  max-width: 100vw; /* Ajusta según el ancho deseado */
}

.work_gallery li {
  overflow: hidden;
  border-radius: 5px;
}

.work_gallery img {
  position:RELATIVE;
  transform: scale(1.0);
  transform-origin: center;
  position:center;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
  object-fit:cover;
}

.work_gallery img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;

}

/*ABOUT ME*/

.gradient-bg-aboutme {
  display:flex;
  align-items: top;
  width: 100vw;
  height: 95vh;
  position:absolute;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
  z-index: -1;

  svg {
    display: none;
  }


  .gradients-container {
    filter: url(#goo) blur(40px) ;
    width: 100%;
    height: 100%;
  }

  .g1 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: center center;
    animation: moveVertical 30s ease infinite;

    opacity: 1;
  }

  .g2 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;

    opacity: 1;
  }

  .g3 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);

    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;

    opacity: 1;
  }

  .g4 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;

    opacity: 0.7;
  }

  .g5 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));

    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;

    opacity: 1;
  }

  .interactive {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;

    opacity: 0.7;
  }
}




.about-me-container{
  display: grid; /* Activar el modelo de cuadrícula */
  grid-template-columns: repeat(8, 1fr); /* 8 columnas de igual tamaño */
  grid-template-rows: repeat(10, 1fr); /* 6 filas de igual tamaño */
  width: 100vw; /* Ancho total de la ventana */
  height: 83vh; /* Altura total de la ventana (ajustable) */
  gap: 10px; /* Espaciado opcional entre filas y columnas */
}
/*.img-about-me{
  grid-column: 2 / 3;
  grid-row: 2 / 7;
}*/
.img-about-me {
  grid-row: 2 / 8; /* Desde la fila 3 hasta la fila 6 */
  grid-column: 2 / 4; /* Desde la columna 2 hasta la columna 3 */
  overflow: hidden; /* Oculta cualquier contenido que sobrepase el contenedor */
  display: flex; /* Utiliza flexbox para centrar la imagen */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
 
}

.img-about-me img {
  width: auto; /* Ajusta la imagen al 100% del contenedor */
  height: 100%; /* Mantiene la proporción */
  object-fit: cover; /* Ajusta la imagen para que se vea completamente dentro del contenedor */
  border-radius: 20px;
}

.texto-about-me {
  color: #fff;
  grid-column: 5 / 8; 
  grid-row: 2 / 5; 
}
.texto-about-me a{
  color:#fff;
  text-decoration: underline;
}

.texto-about-me h2{
  font-family: 'Neue-Haas-Display';
  font-style: italic;
  font-size: 30px;

}

.texto-about-me p{
  font-family: 'Neue-Haas-Display';
  font-weight: normal;
  font-size: 18px;
  line-height: 21,6px;
  margin-bottom: 10px;
}

.contacto{
  display:flex;
  justify-content: end;
  grid-column: 7 / 8; 
  grid-row: 8 / 9; 
  
}

.cv{
  display:flex;
  justify-content: end;
  grid-column: 7 / 8; 
  grid-row: 9 / 10; 
}

.contacto a, .cv a{
  font-family: 'Neue-Haas-Display';
  font-weight: normal;
  font-size: 40px;
  color:#fff;
  text-decoration: none;
  display:flex;
  flex-direction: row;
  align-items:center;
}

.contacto a:hover, .cv a:hover{
  text-decoration: underline;
  font-style: italic;
  text-decoration-thickness: 2px;
}

.contacto img, .cv img{
  width: 35px;
}

.contacto-container{
  display: flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw; /* Ancho total de la ventana */
  height: 83vh; /* Altura total de la ventana (ajustable) */
  gap: 10px;
}

.contacto-texto{
  display: flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contacto-titulo{
  font-family: 'Neue-Haas-Display';
  font-weight: normal;
  font-size: 25px;
  color:#fff;
}
.contacto-enlace{
  font-family: 'Neue-Haas-Display';
  font-weight: normal;
  font-size: 40px;
  color:#fff;
  text-decoration: none;
}

.contacto-enlace:hover{
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 2px;

}


.index-info{
  position:absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: end;
  justify-content: center;
  z-index: -1;


}
.index-text{
  font-family: 'Neue-Haas-Display';
  font-weight: normal;
  font-size: 20px;
  color:#fff;
  padding-top: 1em;
  padding-bottom: 1em;
  animation: scroll-text 10s linear infinite;
}

/* Animación */
@keyframes scroll-text {
  0% {
    transform: translateX(120%); /* Comienza fuera del contenedor a la derecha */
  }
  100% {
    transform: translateX(-120%); /* Termina fuera del contenedor a la izquierda */
  }
}

.custom-space {
  display: inline-block;
  width: 20px; /* Ajusta el tamaño del espacio */
}

.work-link{
  text-decoration: none;
  color:#fff;
}

.experiencias-container{
  border: solid;
    border-width:0.3px 0px 0px ;
    border-color: #ffffff; /* Línea blanca */
  padding:25px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  flex-direction: row;
  justify-content: flex-end;
}

.experiencias-titular{
  grid-column: 1 / 2;
  font-family: 'Neue-Haas-Display';
    font-weight: normal;
    font-size: 20px;
    color: #fff;
}

.experiencias-empresa{
  font-family: 'Neue-Haas-Display';
   
    font-size: 20px;
    color: #fff;
}

.experiencias-empresa:hover{
  font-style: italic;
}
.experiencias-descripcion{
  grid-column: 3 / 6;
  font-family: 'Neue-Haas-Display';
    font-style: normal;
    font-size: 15px;
    color: #fff;
}
.botones-experiencias{
  grid-column: 6 / 7;
  display:flex;
  flex-direction: column;
  align-items: flex-end;
  gap:10px;
}


.message-container{
    position:absolute;
      top: 50%;
      left: 50%;
      opacity:0%;
}



      @media screen and (max-width: 768px) {
            .message-container{
                opacity:100%;
            }
            .logo-container-landing-page{opacity:0%;}
        }

