/* RESETEO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color:#F5F5F0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  min-height: 100vh;
  font-family: "archivo", sans-serif;
  position: relative;
}

/* CAMBIO DE COLOR */

body.fondo-azul{
background:#8dc1d8;
}

.blur-content {
  filter: blur(4px);
  transition: filter 0.5s ease;
}

/* BOTON CAMBIO DE COLOR  */
.btn-fondo {
  position: fixed;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 6px 12px;
  background-color: #1c1c1c;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: "archivo", sans-serif;
  font-size: 0.5vw;
  transition: background-color 0.3s, color 0.3s;
}

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

/* TRANSICION PAGINAS */
#transicion{
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;

  --x: 50vw;
  --y: 50vh;

  clip-path: circle(0px at var(--x) var(--y));
  backdrop-filter: blur(35px);

  transition: clip-path 0.9s cubic-bezier(.77,0,.18,1);
}

#transicion.active{
  clip-path: circle(150vmax at var(--x) var(--y));
  filter: blur(2px);
}

#next-pag{
  width:100%;
  height:100%;
  border:none;
}

/* CURSOR */
#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, width 0.08s linear, height 0.08s linear;
}

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

/* FONDO */
#page-wrapper {
  position: relative;
}


.blur-content {
  filter: blur(4px);
  transition: filter 0.5s ease;
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  clip-path: ellipse(150% 150% at 50% 0%);
  transition: clip-path 1.5s ease-in-out;
}



/* HEADER */
header.sticky-header {
  position: relative;
  z-index: 1000;
}
.profesion { position:fixed; 
  top:10px; 
  left:50%; 
  transform:translateX(-50%); 
  z-index:1100; text-align:center; }
.profesion p { font-size:10px; 
  line-height:1.1; }

#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; }

#correo {
  display: none;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}

#correo.visible {
  display: block;
  max-height: 50px; 
  opacity: 1;
}

#linkedin {
  display: none;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}

#linkedin.visible {
  display: block;
  max-height: 50px;
  opacity: 1;
}

#instagram {
  display: none;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}

#instagram.visible {
  display: block;
  max-height: 50px; 
  opacity: 1;
}
#reloj { 
  position:fixed; 
  bottom:10px; 
  right:10px; 
  font-family:"futura-pt", sans-serif; 
  font-size:13px; 
  z-index:1100; }

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

/* MOVIL  */

@media screen and (max-width: 768px) {
  #cursor { 
    display: none !important; }

  .btn-fondo {
  font-size: 1vw;
  
}
  .profesion p { 
    font-size: 2vw; }

  #menuTexto li a, 
  #menuContacto li a { 
    font-size: 2vw; }

}