/* Tipografía tipo máquina de escribir */
body {
    font-family: "Courier New", Courier, monospace;
    background-color: #f8d7da;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #000;
}

/* Encabezado principal */
h1 {
    font-size: 2.2em;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.8em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.4em;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

p {
    font-size: 1em;
    margin: 0.8em 0;
}

/* Estilo general para listas */
ul {
    list-style: none;
    padding-left: 1em;
}

ul li::before {
    content: "- ";
    margin-right: 0.5em;
    color: #000;
}

/* Botones estilo enlaces */
a {
    color: #000;
    text-decoration: none;
    background-color: #fff;
    padding: 0.4em 1em;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    margin: 0.2em 0;
    transition: all 0.3s ease;
}

a:hover {
    background-color: #800000;
    color: #fff;
}

/* Header */
header {
    background-color: #800000;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

header img {
    max-width: 100px;
    height: auto;
    margin-bottom: 1em;
}

/* Barra de navegación */
.nav-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.nav-bar li {
    list-style: none;
}

/* Secciones */
section {
    padding: 1.5em;
}

/* Footer */
footer {
    background-color: #800000;
    padding: 1em;
    text-align: center;
    font-size: 0.9em;
    color: #fff;
}

/* Imagen general */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Contenedor del mapa */
.mapa-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 600px) {
    .nav-bar {
        flex-direction: column;
        align-items: center;
    }

    a {
        width: 100%;
        text-align: center;
    }
}