/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 02 2026 | 17:17:52 */
/* INSTALACIÓN DE FONDO DE MARCA - ESCRITORIO */
body {
    /* Pega aquí la URL que copiaste de tu biblioteca de medios */
    background-image: url('https://fruitywoof.com/wp-content/uploads/2026/05/a.webp');
    
    /* Configuración estructural */
    background-position: center top; /* Centra el lienzo blanco */
    background-repeat: repeat-y;    /* Crea el bucle infinito hacia abajo */
    background-size: 100% auto;     /* Ajusta el ancho al 100% de la pantalla */
    background-attachment: scroll;  /* Los perros te acompañan al bajar */
    background-color: #ffffff;      /* Asegura que el centro sea blanco puro */
}

/* OPTIMIZACIÓN PARA MÓVILES (VITAL) */
/* En móviles no hay espacio lateral, así que desactivamos el fondo para que no tape el texto */
@media (max-width: 1024px) {
    body {
        background-image: none !important;
        background-color: #ffffff !important;
    }
}