
/* ======================================================= */
/* ==================  CUSTOM CURSOR  ==================== */
/* ======================================================= */

body { cursor: none !important; }

.custom-cursor{
  position: fixed;
  top: 0; left: 0;
  width: 52px; height: 52px;
  border: 1px solid #FF4A13;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease, filter 0.25s ease;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-cursor::before{
  content:"";
  width: 8px; height: 8px;
  background:#FF4A13;
  border-radius: 50%;
  transition: background 0.25s ease, opacity 0.25s ease;
}

.cursor-label{
  position:absolute;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  color:#262828;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.2s ease, color 0.25s ease;
}

.custom-cursor.cursor-hover{
  width: 72px;
  height: 72px;
  background: rgba(255, 74, 19, 0.12);
}

.custom-cursor.cursor-hover::before{ opacity:0; }
.custom-cursor.cursor-hover .cursor-label{ opacity:1; }

.custom-cursor.blur-light{ filter: blur(2px); }
.custom-cursor.blur-strong{ filter: blur(5px); }

/* WHITE MODE (section-dark) */
.cursor-white-mode{ border-color:#fff !important; }
.cursor-white-mode::before{ background:#fff !important; }
.cursor-white-mode.cursor-hover{ background: rgba(255,255,255,0.15) !important; }
.cursor-white-mode .cursor-label{ color:#fff !important; }

/* BLACK MODE (section-orange) */
.cursor-black-mode{ border-color:#000 !important; }
.cursor-black-mode::before{ background:#000 !important; }
.cursor-black-mode.cursor-hover{ background: rgba(0,0,0,0.12) !important; }
.cursor-black-mode .cursor-label{ color:#000 !important; }

/* Magnetic buttons */
.magnetic{
  position: relative;
  display: inline-block;
  transition: transform 0.25s ease;
}

/* Hide cursor on touch devices */
.custom-cursor.is-touch{ display:none !important; }

/* ======================================================= */
/* ================= NAV HIDE / SHOW ===================== */
/* ======================================================= */

/* Ajusta esto si tu nav ya tiene transición propia */
.navmenu{
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Cuando está oculta: se va hacia arriba */
.navmenu.is-hidden{
   transform: translateY(calc(-100% - 12px));
}

