/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VARIABLES DE COLOR */
:root {
    --bg-main: #f5f5f5;       /* gris muy suave para fondo general */
    --bg-card: #ffffff;       /* blanco para secciones / cards */
    --text-main: #1f2937;     /* gris oscuro para texto principal */
    --text-muted: #4b5563;    /* gris medio para subtítulos y descripciones */
    --accent: #f97316;        /* naranja/coral suave para títulos o enlaces */
}

/* BODY GLOBAL */
body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 0;
}

/* SECTIONS GENERALES */
section {
    width: 100%;
    max-width: 900px;
    margin-bottom: 3rem;
}

/* TÍTULOS BASE */
h1, h2 {
    font-weight: 600;
}

h1 a {
    text-decoration: none;
    color: inherit;
}

/* TEXTO */
p {
    line-height: 1.6;
    color: var(--text-muted);
}

/* Links generales */
a {
    text-decoration: none;
    color: #f97316;  /* acento */
}

a:hover {
    text-decoration: underline;
}

/* Contenedores generales centrados */
.page-header,
.page-footer {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
}