/* Footer background */
.bg-footer {
  background-color: #7a5a3a;
}
/* Logo */
.footer-logo {
  max-width: 140px;
}

/* Enlaces */
.footer-links li {
  margin-bottom: 6px;
}
.footer-links a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #ffd27f;
}

/* Redes sociales */
.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-links a:hover {
  color: #ffd27f;
  transform: translateY(-3px);
}

/* Footer title */
.site-footer .footer-title {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  border-left: 4px solid #ffd27f; /* en lugar de borde completo */
  padding-left: 10px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

 .site-footer {
  border-top: 3px solid #5a3c28; /* tono marrón más oscuro */
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -20px; /* altura que invade la sección blanca */
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.2), rgba(0,0,0,0));
}

/* Contenedor del formulario dentro del footer */
.site-footer .mailpoet_form {
  background: transparent !important; /* quita el recuadro blanco */
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Inputs */
.site-footer .mailpoet_text,
.site-footer .mailpoet_textarea,
.site-footer .mailpoet_select {
  width: 100%;
  background: rgba(255,255,255,0.1); /* translúcido */
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 10px 12px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.site-footer .mailpoet_text:focus,
.site-footer .mailpoet_textarea:focus {
  background: rgba(255,255,255,0.15);
  border-color: #ffd27f; /* dorado */
  outline: none;
}

/* Placeholder */
.site-footer .mailpoet_text::placeholder {
  color: rgba(255,255,255,0.7);
  font-family: 'Roboto', sans-serif;
}
.site-footer .mailpoet_paragraph input {
      padding: 0.3em 0.5em !important;
      color: #fff !important;
}

/* Botón */
.site-footer .mailpoet_submit {
  display: inline-block;
  width: 100%;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 8px;
  font-family: 'Merriweather', serif !important;
}

.site-footer .mailpoet_submit:hover {
  background: #e36b00;
  transform: translateY(-2px);
}
.site-footer .mailpoet_validate_error, .site-footer .parsley-errors-list {
  color: #fff;
}

.fermin-btn {
  position: fixed;
  bottom: 1em; /* más arriba para no chocar con footer */
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

/* Burbuja estilo glass */
.fermin-bubble {
  background: #7a5a3a; /* marrón institucional */
  color: #fff;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  margin-bottom: 6px;
  text-align: center;
  font-weight: 500;
  max-width: 140px;
  transition: all 0.3s ease;
}

/* Icono circular más integrado */
.fermin-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #f57c00; /* acento naranja */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fermin-btn:hover .fermin-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
