/* ==========================================================================
   ESTILOS GENERALES Y TEMA NEO-BRUTALISTA
   Presentación: Manual Estratégico Municipal - Morelos
   ========================================================================== */

/* Ocultar barra de desplazamiento manteniendo funcionalidad táctil/scroll */
body {
    background-color: #f4f4f0;
    overflow-x: hidden;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

body::-webkit-scrollbar { 
    display: none; 
}

/* ==========================================================================
   COMPONENTES Y UTILIDADES
   ========================================================================== */

/* Bordes Neo-Brutalistas */
.brutal-border {
    border: 4px solid #000000;
}

/* Efecto de texto con borde (Outline) */
.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px #000000;
}

/* ==========================================================================
   ESTRUCTURA DE DIAPOSITIVAS (SLIDES) Y TRANSICIONES
   ========================================================================== */

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.slide.active {
    display: flex;
    opacity: 1;
}

/* ==========================================================================
   BOTONES NEO-BRUTALISTAS
   ========================================================================== */

.brutal-button {
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

/* Efecto Hover: Eleva el botón y aumenta la sombra */
.brutal-button:hover:not(:disabled) {
    transform: translate(-2px, -2px);
}

.brutal-button.shadow-brutal:hover:not(:disabled) {
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 1) !important;
}

.brutal-button.shadow-brutal-green:hover:not(:disabled) {
    box-shadow: 10px 10px 0px 0px #cbfb45 !important;
}

/* Efecto Active: Presiona el botón al ras del suelo y elimina la sombra */
.brutal-button:active:not(:disabled) {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1) !important;
}

/* ==========================================================================
   MARQUEE (TEXTO EN MOVIMIENTO)
   ========================================================================== */

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    border-top: 4px solid #000000;
    border-bottom: 4px solid #000000;
    background-color: #cbfb45;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
