/*
Theme Name: Dhema
Theme URI: https://dhema.conectandorincones.com/
Author: Dhema
Description: Tema ultra ligero, veloz y optimizado para SEO. Desarrollado a medida sin dependencias.
Version: 1.0.1
Text Domain: dhema
*/

/* ==========================================================================
   1. Variables Globales (Basadas en el UI premium)
   ========================================================================== */
:root {
    --color-white: #ffffff;
    --color-black: #111111;
    --color-footer-bg: #000b29; /* Azul oscuro del diseño */
    --color-border: #eaeaea;
    --color-text-muted: #666666;
    
    --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif; /* Tipografía limpia */
    
    --header-height: 80px;
    --spacing-unit: 1rem;
    --transition-fast: 0.3s ease;
}

/* ==========================================================================
   2. Reseteo Básico
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Inicio Corrección Footer Flotante */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Permite que el contenido principal se expanda y empuje el footer */
.site-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
/* Fin Corrección Footer Flotante */

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* ==========================================================================
   3. Utilidades Estructurales
   ========================================================================== */
.container-fluid {
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
}