/* Tipografía: Garamond (títulos), Inter (texto) */
body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #222;
  font-family: 'Inter', sans-serif;
}

h1, h2 {
  font-family: 'EB Garamond', serif;
  margin: 0;
  text-align: center;
}

.contenedor {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
}

header h1 {
  font-size: 2.4em;
  font-weight: 500;
}

header h2 {
  font-size: 1.2em;
  color: #555;
  margin-top: 10px;
}

.portada img {
  width: 100%;
  height: auto;
  margin: 40px 0;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.descripcion p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.acciones {
  margin-top: 40px;
  text-align: center;
}

.btn-descarga {
  background-color: #111;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.btn-descarga:hover {
  background-color: #333;
}

.contador {
  margin-top: 20px;
  font-size: 0.95em;
  color: #666;
}


footer {
  margin: 40px auto 100px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #aaa;
  margin: 0 10px;
  font-size: 1.5em;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: goldenrod;
}


.perfil {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ddd;
}

.foto-perfil {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.bio {
  max-width: 600px;
  text-align: center;
  line-height: 1.5;
  font-size: 15px;
  color: #666;
}

.leyenda-edicion {
  margin-top: 15px;
  font-size: 14px;
  color: #888;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}
.compartir {
  margin-top: 30px;
  text-align: center;
  color: #bbb;
}

.compartir p {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}

.botones-redes {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #222;
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}

.btn-share:hover {
  background-color: #555;
}

.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.whatsapp { background-color: #25d366; }
.correo { background-color: #6c6c6c; }
.sms { background-color: #888; }

.container-nav {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 1000;
  width: 100%;
  margin: 0 auto;
  border-radius: 5px 5px 0 0;
}

.bottom-nav a {
  text-align: center;
  color: #555;
  font-size: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: bold;
}

.bottom-nav a:hover,
.bottom-nav a.active {
  color: #e87e04;
}

.bottom-nav i {
  display: block;
  font-size: 20px;
  margin-bottom: 3px;
}

.sponsored-ad {
  background-color: #fefefe;
  border: 4px dotted #d63031;
  padding: 4px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin: 50px auto;
}

.sponsored-ad img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}