/*
Theme Name: KalyTheme
Theme URI: https://kaly.com
Author: Equipo Kaly
Author URI: https://kaly.com
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: kalytheme
*/

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
}

/* Unificación base de jerarquía de títulos */
h1, .h1-style {
    font-size: var(--font-h1);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-blue, #163A43);
    margin: 15px 0 10px 0;
    font-weight: 800;
    line-height: 1.2;
}

h2, .h2-style {
    font-size: var(--font-h2);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: 0.875rem;
}

h3, .h3-style {
    font-size: var(--font-h3);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h4, .h4-style {
    font-size: var(--font-h4);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
}

h5, .h5-style {
    font-size: var(--font-h5);
    font-weight: var(--font-weight-medium);
}

h6, .h6-style {
    font-size: var(--font-h6);
}

.no-content-container {
    text-align: center;
    padding: 40px 20px;
}
.no-content-container p {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}
.no-content-container .btn-volver-inicio {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-blue);
    color: var(--color-yellow);
    text-decoration: none;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
