/* Scroll container */
.full-sections-wrapper {
    scroll-behavior: auto;         /* manejado por GSAP */
    scroll-snap-type: y proximity;
    overflow-y: scroll;
    height: 100vh;
}
.full-sections-wrapper.is-animating { scroll-snap-type: none; }

/* Por defecto YA NO forzamos 100vh en cada sección */
.full-section {
    /* altura libre por defecto */
}

/* Utilidades para alturas específicas */
.full-section.vh-100 { height: 100vh; }
.full-section.vh-75  { height: 75vh;  }
.full-section.vh-120 { height: 120vh; }

/* Si el admin activa "Forzar 100vh por defecto" */
.full-sections-wrapper.force-vh .full-section { height: 100vh; }

/* Snap al inicio de cada panel */
.full-section { scroll-snap-align: start; }

html, body { overscroll-behavior-y: none; }