@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Merriweather&display=swap");

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #111111;
  font-family: "Merriweather", serif;
  line-height: 1.75;
}

h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  margin-bottom: 0;
  font-weight: 700;
  line-height:normal;
}
h1 { font-size: 3rem;}
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

header {
  max-width: 720px;
  margin: 20px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 20px;
}

.container p {
  margin-bottom: 1.5rem;
  text-align: left;
}

.container blockquote {
  border-left: 4px solid #111111;
  margin: 2rem 0;
  padding-left: 20px;
  font-style: italic;
  opacity: 0.8;
}

/* --- Signature and date --- */

.container .signature, .container .date {
  font-size: 0.85rem;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 0;
}

.container .signature {
  border-right: 1px solid #ddd;
  margin-right: 10px;
  padding-right: 10px;
}

/* --- Unordered List --- */
.container ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.container ul li {
    margin-bottom: 0.5rem;
    list-style-type: circle;
}

/* --- Links Styling --- */
a {
    color: #111111;
    text-decoration: underline;
    transition: color 0.3s;
}

a:hover {
    color: #555555;
}

a:visited {
    color: #777777;
}

/* --- Code Snippet --- */
.container code {
    font-family: monospace;
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9rem;
}


/* --- Breadcrumb Navigation --- */
.breadcrumb {
    font-size: 0.9rem;
}

/* --- Language Dropdown --- */
.lang-select {
    position: relative;
}

.lang-select select {
    appearance: none;
    padding: 8px 28px 8px 14px;
    font-family: 'Merriweather', serif;
    border: 1px solid #111111;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    margin: 0;
}

.lang-select::after {
    content: '▼';
    font-size: 0.7rem;
    color: #111111;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.lang-select select:hover {
    border-color: #555555;
}

footer {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  padding: 10px 0;
}

footer h3 {
  font-size: 1rem;
  font-weight: 400;
}

.video iframe,
.mapa iframe {
  width: 100%;
  height: 400px;
  border: none;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

/* Slideshow */
.slideshow {
  display: flex;
  overflow: hidden;
  gap: 10px;
  margin: 20px 0;
}
.swiper {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #111111;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-content {
  text-align: center;
  position: relative;
}
.slide-content img,
.slide-content video {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.3s;
}

/* código */
pre[class*="language-"] {
  font-family: monospace;
  font-size: 14px;
  display: block;
  overflow-x: auto;
  padding: 1em;
  background: #f6f8fa;
  border-radius: 6px;
  
}
.copy-button {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #555555;
  color: white;
  border: none;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.copy-button:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  h1,
  h2,
  h3 {
    font-size: 2rem;
  }

  .container {
    margin: 40px auto;
  }
}
