/* Hojas de Estilo de Sección - Suscripción Newsletter */

/* --- 1. SECCIÓN PRINCIPAL --- */
.hero-section {
  background-color: var(--color-bg-black);
  background-image: var(--gradient-overlay), url("../images/bg-newsletter.avif");
  background-size: cover;
  background-position: center right;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.newsletter-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Bloque Perfil con Firma Encabalgada */
.profile-block {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 320px;
}

.profile-pic {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-full);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.signature-img {
  position: absolute;
  bottom: -10px;
  left: 8%;
  transform: rotate(-3deg);
  width: 100%;
  max-width: 250px;
  height: auto;
  aspect-ratio: 5 / 1.7;
}

/* Descripción */
.newsletter-desc {
  color: var(--color-text-light);
  font-size: 20px;
  text-align: center;
  line-height: 1.35;
  max-width: 700px;
}

/* Formulario */
.form-wrapper {
  width: 100%;
  max-width: 600px;
  margin-top: 1rem;
}

/* --- 2. PIE DE PÁGINA --- */
.footer-section {
  background-color: var(--color-bg-black);
  color: #9e9e9e;
  padding: 20px 0;
  flex-shrink: 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 14px;
  text-decoration: underline;
  color: #9e9e9e;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-text-light);
}

.footer-claim-link {
  font-size: 18px;
  text-decoration: underline;
  color: #9e9e9e;
}
