/*
Theme Name:   Blocksy Child
Theme URI:    https://aakernoficina/wp-content/themes/blocksy-child/
Description:  Child theme for the Blocksy theme
Author:       Rolando R.
Author URI:   https://ocisca.org/  (or your actual site if you have one)
Template:     blocksy
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  blocksy-child
*/
/* desde aca */
body {
    /* Ruta a tu imagen de fondo. Asegúrate de que la ruta sea correcta. */
    background-image: url('https://aakernoficina.org/wp-content/uploads/2025/06/logos-scaled-1.gif') !important; 
    
    /* Cómo quieres que se repita la imagen (no-repeat, repeat, repeat-x, repeat-y) */
    background-repeat: no-repeat; 
    
    /* Posición de la imagen (center center, top left, etc. o porcentajes) */ 
    background-position: center center; 
    
    /* Tamaño de la imagen (cover, contain, 100% 100%, o píxeles) */
    background-size: cover; 
    
    /* Si la imagen se desplaza con el contenido o se queda fija */
    background-attachment: fixed;
}

/* Ejemplo: Añadir una sombra más pronunciada a las tarjetas */
.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px); /* Efecto al pasar el mouse */
}

/* Estilos del banner */
.h1a,
.h1b {
	margin-bottom: 5px
}

.h1b {
	margin-bottom: 5px
}

/* --- estilos subMenú de la sección --- */

.nav-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-body ul li {
  position: relative;
  display: inline-block;
}

.nav-body ul li a {	
  color: #000;
  font-size: 18px;
  text-decoration: none;
  font-weight: 400;
}

.nav-body ul li a:hover {
  color: #000;
  background-color: #fff;
}

.nav-body ul li a::after {
  color: #000;
  content: "|";
}

.nav-body ul li:last-child a::after {
    content: "";
}

/* --- estilos justify del texto --- */
.justificado {
  text-align: justify;
}