
/* ... (estilos anteriores) ... */

.follow-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem auto 1rem;
  color: #222;
  background: linear-gradient(135deg, #ff0066, #ff9900);
  padding: 1rem 2rem;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Barra de navegación */
nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  color: #222;
  background: #f0f0f0;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.3s;
}

nav a:hover {
  background: #ddd;
}

/* Iconos sociales */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.social-buttons a {
  color: #222;
  transition: transform 0.2s;
}

.social-buttons a:hover {
  transform: scale(1.2);
}

/* Formulario de contacto */
#contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact-form input,
#contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

#contact-form button {
  padding: 0.8rem;
  background: #aaa;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: not-allowed;
}

#contact-form button.enabled {
  background: #ff0066;
  cursor: pointer;
}

/* ------------------------------- */
/* Botones de idioma en el nav     */
/* ------------------------------- */
nav a#lang-pt,
nav a#lang-en,
nav a#lang-es {
  border: 2px solid #ccc;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

nav a#lang-pt:hover {
  border-color: #009739;   /* verde Brasil */
  background: #e6f9ec;
}

nav a#lang-en:hover {
  border-color: #3c3b6e;   /* azul USA */
  background: #eef2ff;
}

nav a#lang-es:hover {
  border-color: #aa151b;   /* rojo España */
  background: #fff0f0;
}

nav a#lang-pt img,
nav a#lang-en img,
nav a#lang-es img {
  width: 20px;
  height: auto;
  vertical-align: middle;
  margin-right: 6px;
  border-radius: 3px; /* suaviza esquinas */
}