/* =======================
Reset básico
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =======================
Estilo general
======================= */
body {
  font-family: "Georgia", "Times New Roman", serif;
  background: linear-gradient(to bottom, #f4f1ec, #e9e4db);
  color: #2c2c2c;
  line-height: 1.7;
  padding: 30px;
}

/* Limitar ancho del contenido */
body > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* =======================
Título principal
======================= */
#titulo {
  text-align: center;
  font-size: 3.2em;
  color: #3b2f2f;
  margin-bottom: 25px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* =======================
Encabezados
======================= */
h2 {
  color: #4a3f35;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 6px solid #8b6f47;
  padding-left: 12px;
}

h3,
h4,
h5 {
  color: #5c4a3d;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* =======================
Párrafos
======================= */
p {
  margin-bottom: 18px;
  text-align: justify;
}

/* =======================
Separadores
======================= */
hr {
  margin: 40px 0;
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #c1b6a4, transparent);
}

/* =======================
Imágenes
======================= */
img {
  display: block;
  margin: 25px auto;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

/* =======================
Listas
======================= */
ol {
  margin-left: 40px;
  margin-bottom: 25px;
}

ul {
  margin-left: 25px;
  margin-top: 10px;
}

li {
  margin-bottom: 8px;
}

/* =======================
Enlaces
======================= */
a {
  color: #7a4e2d;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: #4a2e19;
  text-decoration: underline;
}

/* =======================
Tabla de suscripciones
======================= */
table {
  border-collapse: collapse;
  margin: 30px auto;
  width: 90%;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

th {
  background-color: #8b6f47;
  color: white;
  padding: 14px;
  font-size: 1.1em;
}

td {
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
}

tr:nth-child(even) td {
  background-color: #f5f2ed;
}

/* =======================
Lugares de interés
======================= */
#lugaresdeinteres {
  text-align: center;
  font-size: 2.3em;
  margin-bottom: 20px;
}

/* =======================
Vídeo (imagen clicable)
======================= */
a img {
  cursor: pointer;
}

/* =======================
Pie de página
======================= */
h6 {
  margin-top: 50px;
  color: #555;
  text-align: center;
}

h6 + p,
h6 + p + p {
  font-size: 0.9em;
  color: #666;
  text-align: center;
}
