/*
 Theme Name:   Woostify Child
 Description:  Woostify Child Theme
 Author:       Woostify
 Template:     woostify
 Version:      1.0.0
*/

/* 1. Anulamos los márgenes de los contenedores de WordPress/Woostify */
#content.site-content {
    padding: 0 !important;
    margin: 0 !important;
}

.woostify-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 2. Ajuste exclusivo del menú para ESTA página */
/* Como estamos dentro de la plantilla, esto no afectará al resto de la web */
body {
    /* Si la franja blanca medía aprox 20px, y tu original era 70px, 
       bajamos esto a 50px. Ajusta este número hasta que tu imagen 
       toque perfectamente la cabecera negra. */
    padding-top: 50px !important; 
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 40px !important; /* Ajuste para móviles */
    }
}


/* --- ELIMINAR ESPACIO EN LA FRONTERA DEL FOOTER --- */

/* 1. Limpiar la parte inferior del contenedor de contenido */
#content.site-content {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

/* 2. Limpiar la parte inferior del contenedor interno de Woostify */
#content.site-content .woostify-container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* 3. Limpiar la parte superior del Footer */
#colophon.site-footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important; /* Por si el tema inyecta una línea o borde blanco */
}