

/* ===========================
   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;
}

/* ===========================
   SLIDER VERTICAL TIPO RUEDA
=========================== */
.slider {
  position: relative;
}

.slide {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

.slide-inner a img,
.slide-inner button img {
  display: block;        /* elimina espacio debajo */
  max-height: 70vh;      /* como antes */
  max-width: 70%;
  object-fit: contain;   /* asegura que mantenga proporciones */
}

.title {
  font-size: 250px;
  font-family: "futura-pt", sans-serif;
  color: #1c1c1c;
  text-align: center;
}

/* TEXTO */
.slide-text {
  width: max-content;
  position: absolute;
    right: 20%;
  bottom: 35%;
  line-height: 60px;
  text-align: left;
  max-width: 300px;
  text-transform: uppercase;
}

.slide-text h2 {
  font-family: "archivo", sans-serif;
  font-size: 60px;
  margin-bottom: 8px;
}

.slide-text p {
  font-family: "archivo", sans-serif;
  font-size: 60px;
}

.slide-inner a img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slide-inner a:hover img {
  transform: scale(1.05);
}

/* ===========================
   MÓVIL
=========================== */
@media screen and (max-width: 768px) {



  /* ===== TEXTO CENTRAL ===== */
  #movible-texto {
    font-size: 14px;          /* más pequeño en móvil */
    white-space: normal;      /* permite saltos de línea */
    max-width: 90%;           /* no ocupa todo el ancho */
    margin: 0 auto;           /* centra horizontalmente */
    overflow-wrap: break-word;
    word-break: normal;
    text-align: center;
  }

  #movible-texto::after {
    right: 2px; /* cursor dentro de la caja */
  }

  /* ===== HEADER ===== */
  .profesion p {
    font-size: 8px;
  }

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

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

  #menuContacto a {
    font-size: 8px;
  }

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

  #reloj {
    bottom: 10px;
    right: 10px;
    font-size: 10px;
  }

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

  #avatar {
    width: 120px;
    height: 120px;
    bottom: 10px;
    left: 10px;
  }

  /* ===== AVISOS ===== */
  .avisos a {
    font-size: 12px;
  }

  /* ===== SLIDER ===== */
  .slide-inner a img,
  .slide-inner button img {
    max-height: 50vh;
    max-width: 80%;
  }

  .title {
    font-size: 150px;
  }

  .slide-text {
    right: 10%;
    bottom: 30%;
    max-width: 200px;
    line-height: 40px;
  }

  .slide-text h2 {
    font-size: 40px;
    margin-bottom: 5px;
  }

  .slide-text p {
    font-size: 30px;
  }

  .slide-inner a:hover img {
    transform: scale(1.03); /* efecto hover más suave en móvil */
  }

  /* BOTÓN */
  .btn-fondo {
    top: 50px;
    padding: 4px 10px;
    font-size: 10px;
  }
}

