/* Estilos generales */
:root {
  --color-white: #ffffff;
  --color-principal: #5f0a12;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--color-white);
  color: #333;
  margin: 0;
  padding: 0;
}

.sedes {
  padding: 20px;
}

h2, h3 {
  color: var(--color-principal);
  font-size: 1.6em;
  margin-bottom: 10px;
}

h2 {
  border-bottom: 2px solid var(--color-principal);
  padding-bottom: 10px;
}

h3 {
  margin-top: 20px;
}

p, ul, table {
  font-size: 1.1em;
  line-height: 1.6;
}

ul {
  margin-left: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table th, table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

table th {
  background-color: var(--color-principal);
  color: var(--color-white);
}

em {
  font-style: italic;
  color: var(--color-principal);
}

a {
  color: var(--color-principal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section {
  margin-bottom: 40px;
}

.divider {
  margin: 30px 0;
  border-bottom: 2px solid var(--color-principal);
  padding: 5px 0;
}

.subtitle {
  font-size: 1.3em;
  color: var(--color-principal);
}

/* Responsivo para tablas en móviles */
@media screen and (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  table thead {
    display: table-header-group;
  }

  table tr {
    display: table-row;
  }

  table td, table th {
    white-space: nowrap;
  }
}
