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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    /* Forzar el snap en el eje Y */
}

html,
body {
    cursor: none !important;
}

/* BODY */
body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
}

a,
button,
.nav-item,
.glass-card {
    cursor: none !important;
}

.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #7ce0f2;
    /* Tu azul Denar */
    box-shadow: 0 0 10px #7ce0f2;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(124, 224, 242, 0.5);
}

/* Efecto al pasar sobre links o botones */
.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: #ffffff;
}

.cursor-hover .cursor-outline {
    width: 50px;
    height: 50px;
    border-color: #7ce0f2;
    background: rgba(124, 224, 242, 0.1);
    backdrop-filter: blur(2px);
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* SECTIONS */
section {
    padding: 100px 0;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #4bb8b3;
    color: #fff;
}

.btn.primary:hover {
    transform: translateY(-2px);
}

.btn.ghost {
    border: 1px solid #60e2ff;
    color: #fff;
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cada sección de tu web debe tener esto */
section,
footer,
header {
    scroll-snap-align: start;
    /* Se alinea al inicio de la sección */
    scroll-snap-stop: always;
    /* No se salta secciones al scrollear rápido */
}

/* Ajuste para que el header fixed no tape el inicio de la sección */
section {
    scroll-margin-top: 80px;
    /* Ajusta esto según el alto de tu header */
}