html {
  min-height: 100%;
  height: auto;
	background: linear-gradient(to bottom, #e6ebef, #cfd5da);
  background-attachment: fixed;
  margin: 0;
}

img {
  width: clamp(12rem, 20vw, 24rem);
  height: clamp(12rem, 20vw, 24rem);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
  display: block;
  margin: 0 auto;
}

body {
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

h2, footer {
  background: white;
  align-items: center;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

nav {
background: white;
border-radius: 15px;
padding: 10px;
box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
justify-content: center;
}

nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
gap: 20px;
}

nav li {
display: inline;
}

nav a {
text-decoration: none;
color: #333;
font-weight: bold;
padding: 8px 12px;
border-radius: 8px;
}

nav a:hover {
background-color: rgb(172, 61, 83);
color: rgb(255, 255, 255);
}

ul {
  list-style-position: inside;
  padding-left: 0;
  text-align: justify;
}

.título {
  background: white;
  align-items: center;
  border-radius: 15px;
  padding: clamp(0.8rem, 2vw, 1.2rem);
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.título h1 {
  margin-top: clamp(1rem, 3vw, 2rem);
  margin-bottom: 0;
  text-align: center;
}

.título h4 {
  margin-top: clamp(0.2rem, 1vw, 0.5rem);
  text-align: center;
}

h1 {
  margin-top: 20px;
}

.link {
  color: rgb(172, 61, 83);
}

.link:hover {
  color: rgb(102, 27, 42);
}

.foja {
  width: 90%;
  margin: 0 auto;
}

.foja li {
  list-style: none;
  position: relative;
}

.foja li::before {
  content: "✦";
  position: absolute;
  left: -1rem;
}

.banderas {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.bandera {
  width: clamp(2.8rem, 6vw, 4rem);
  height: clamp(2.8rem, 6vw, 4rem);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bandera:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.bandera img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
