/* ===========================
   RESET + BASE
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "archivo", sans-serif;
  background-color: #8dc1d8;
}

/* ===========================
   CURSOR PERSONALIZADO
=========================== */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1c1c1c;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.08s linear;
}

#cursor.zoom {
  transform: translate(-50%, -50%) scale(1.6);
}

/* ===========================
   ESTRUCTURA PRINCIPAL
=========================== */
#page-wrapper {
  position: relative;
}

#page-content {
  position: relative;
  z-index: 2;
  transition: filter 0.5s ease;
}

.blur-content {
  filter: blur(4px);
    transition: filter 0.3s ease; /* para que el blur aparezca suave */
}
/*boton color */
.btn-fondo {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 6px 12px;
  background-color: #1c1c1c;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "archivo", sans-serif;
  font-size: 12px;
  border-radius: 100px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-fondo:hover {
  background-color: #8dc2d800;
  color: #1c1c1c;
}

/* ===========================
   OVERLAY AZUL
=========================== */
#background {
  position: fixed;
  inset: 0;
  background-color: #8dc1d8;
  z-index: 1;
  pointer-events: none;

  clip-path: ellipse(0% 0% at 50% 0%);
  transition: clip-path 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===========================
   TEXTO CENTRAL
=========================== */
.texto {
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#movible-texto {
  font-family: "archivo-expanded", sans-serif;
  font-size: 16px;
  color: #1c1c1c;
  white-space: nowrap;
  position: relative;
}

#movible-texto::after {
  content: "|";
  position: absolute;
  right: -4px;
  animation: blink 1.5s step-end infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* ===========================
   HEADER FIJO
=========================== */
.profesion {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  text-align: center;
}

.profesion p {
  font-size: 10px;
  line-height: 1.2;
}

/* ===========================
   MENÚS
=========================== */
#menuTexto,
#menuContacto {
  position: fixed;
  top: 10px;
  z-index: 1100;
}

#menuTexto { right: 15px; }
#menuContacto { left: 15px; }

#menuTexto ul,
#menuContacto ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

#menuTexto ul { align-items: flex-end; }
#menuContacto ul { align-items: flex-start; }

#menuTexto a,
#menuContacto a {
  font-size: 10px;
  color: #1c1c1c;
  text-decoration: none;
}

/* ===========================
   RELOJ + UBICACIÓN
=========================== */
#reloj {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-family: "futura-pt", sans-serif;
  font-size: 13px;
  z-index: 1100;
}

#ubicacion {
  position: fixed;
  bottom: 10px;
  right: 70px;
  font-family: "futura-pt", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  z-index: 1100;
}

/* ===========================
   LOGO + AVATAR
=========================== */
.logo-btn {
  position: fixed;
  bottom: 0;
  left: 10px;
  width: 170px;
  height: 120px;
  z-index: 1100;
  display: flex;
  cursor: pointer;
}

.logo-btn img {
  width: 100%;
  height: 150%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

#avatar {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 160px;
  height: 160px;
  z-index: 1100;
  display: none;
}

/* ===========================
   AVISOS
=========================== */
.avisos {
  position: fixed;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1100;
}

.avisos a {
  font-family: "futura-pt", sans-serif;
  font-size: 15px;
  color: #1c1c1c;
  text-decoration: none;
}


.title {
  margin: 50px 0 0 0;              /* sin margen extra */
  font-size: 250px;
  font-family: "futura-pt", sans-serif;
  color: #1c1c1c;
  text-align: center;
  line-height: 200px;
 
}

/* Año justo debajo del título */
#anyo {
  font-size: 40px;
  font-family: "archivo", sans-serif;
  margin: 0;              /* sin margen extra */
  margin: -60px 0 0 50px;       /* pequeño espacio debajo del título */
  text-align: left;       /* asegura que quede a la izquierda */
}


.texto-lateral {
  width: 40%;
  font-size: 14px;
  line-height: 1.4;
  padding: 20px;
  margin-top: 30px;
}

.video-full {
  width: 100%;

}

.video-full video {
  width: 100%;

  object-fit: cover;
}



/* Cada imagen ocupa una pantalla */
.imagen-full {
  width: 100%;

}

.imagen-full img {
    display: block;
  width: 100%;
  object-fit: cover;
}




@media (max-width: 1024px) {
  .title {
    font-size: 120px;
    line-height: 100px;
    margin-top: 100px;
  }

  #anyo {
    font-size: 30px;
    margin: 0 0 0 30px;
  }


}

@media (max-width: 768px) {

     #menuTexto ul  {
    flex-direction: row;
    gap: 10px;
  }

  #menuTexto ul li a {
    font-size: 9px;
  }

  #menuContacto a {
    font-size: 8px;

  }
 /* ===== LOGO ===== */
  .logo-btn {
    width: 120px;
    height: 90px;
    bottom: 0;
    left: 10px;
  }

  #avatar {
    width: 120px;
    height: 120px;
    bottom: 10px;
    left: 10px;
  }
   /* ===== RELOJ + UBICACIÓN ===== */
  #ubicacion {
    bottom: 25px;  /* más arriba que el reloj */
    right: 10px;
  }

  #reloj {
    bottom: 10px;
    right: 10px;
    font-size: 10px;
  }
  .title {
    font-size: 80px;
    margin: 100px 0 0 0;
    line-height: 80px;
    
  }

  #anyo {
    font-size: 22px;
    margin: -10px 0 0 20px;
  }

}
