.popup-club-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.popup-club-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-club-modal {
  position: relative;
  width: 820px;
  max-width: 94vw;
  max-height: 90vh;
  background: #1a3d2b;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.popup-club-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.popup-club-close:hover {
  color: #fff;
}

.popup-club-inner {
  display: flex;
  min-height: 460px;
}

.popup-club-image {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
}

.popup-club-content {
  flex: 0 0 50%;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.popup-club-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.popup-club-divider {
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.popup-club-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
}

.popup-club-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup-club-input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.popup-club-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.popup-club-input:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

.popup-club-submit {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 2px;
  background: #f5e6d3;
  color: #1a3d2b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.popup-club-submit:hover {
  background: #e8d5bf;
}

.popup-club-dismiss {
  margin: 20px 0 0;
  text-align: center;
}
.popup-club-dismiss a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  transition: color 0.2s;
}
.popup-club-dismiss a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .popup-club-image {
    display: none;
  }
  .popup-club-content {
    flex: 0 0 100%;
    padding: 40px 28px;
  }
  .popup-club-inner {
    min-height: auto;
  }
  .popup-club-title {
    font-size: 28px;
  }
  .popup-club-modal {
    max-width: 92vw;
  }
}

/* ── Newsletter section (home, antes del footer) ── */
.newsletter-section {
  background: #1a3d2b;
  padding: 64px 24px;
  text-align: center;
}

.newsletter-section-inner {
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.newsletter-section-divider {
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 20px;
}

.newsletter-section-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-section-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-section-input {
  flex: 1;
  min-width: 0;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-section-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-section-input:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

.newsletter-section-submit {
  flex-shrink: 0;
  height: 50px;
  padding: 0 32px;
  border: none;
  border-radius: 2px;
  background: #f5e6d3;
  color: #1a3d2b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-section-submit:hover {
  background: #e8d5bf;
}

.newsletter-section-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 20px 0 0;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 48px 20px;
  }
  .newsletter-section-title {
    font-size: 28px;
  }
  .newsletter-section-text {
    font-size: 14px;
  }
  .newsletter-section-form {
    flex-direction: column;
    max-width: 100%;
  }
  .newsletter-section-input {
    width: 100%;
  }
  .newsletter-section-submit {
    width: 100%;
  }
}

/* ── Newsletter blog (final de cada post) ── */
.newsletter-blog-block {
  margin-top: 40px;
  padding: 32px 28px;
  background: #1a3d2b;
  border-radius: 4px;
  text-align: center;
}

.newsletter-blog-heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.newsletter-blog-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-blog-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto;
}

.newsletter-blog-input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-blog-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-blog-input:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

.newsletter-blog-submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 2px;
  background: #f5e6d3;
  color: #1a3d2b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-blog-submit:hover {
  background: #e8d5bf;
}

@media (max-width: 768px) {
  .newsletter-blog-block {
    padding: 28px 20px;
  }
  .newsletter-blog-heading {
    font-size: 20px;
  }
}

/* ── Club success message (todos los contextos) ── */
.club-success {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  text-align: center;
}
.club-success-error {
  color: #f8a0a0 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  text-align: center;
}
