/* =====================================================
   NEWSLETTER SUBSCRIPTION MODULE - PIRATE SAILOR
   Sistema profesional de suscripción con guía de regalo
   ===================================================== */

.checklist-section {
  padding: 32px 0 24px;
  background: transparent;
}

.lead-checklist {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 32px 28px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Decoración náutica sutil */
.lead-checklist::before {
  display: none;
}

.lead-checklist-head {
  text-align: center;
  margin-bottom: 20px;
}

/* Badge "Newsletter" */
.lead-checklist-head::before {
  display: none;
}

.lead-checklist-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  color: #0a2540;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.lead-checklist-head p {
  margin: 10px auto 0;
  max-width: 760px;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/* Bloque de beneficios - OCULTO */
.newsletter-benefits {
  display: none;
}

/* Gift box - OCULTO */
.newsletter-gift {
  display: none;
}

.newsletter-gift::before {
  display: none;
}

.newsletter-gift p {
  display: none;
}

.newsletter-gift strong {
  display: none;
}

.newsletter-gift-preview {
  display: none;
}

.newsletter-gift-preview strong {
  display: none;
}

.newsletter-gift-preview p {
  display: none;
}

.gift-preview-tag {
  display: none;
}

/* Formulario premium */
.checklist-form {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.checklist-form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.checklist-form input[type="text"],
.checklist-form input[type="email"] {
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #ffffff;
}

.checklist-form input[type="text"]:focus,
.checklist-form input[type="email"]:focus {
  border-color: #0066a1;
  box-shadow: 0 0 0 2px rgba(0, 102, 161, 0.08);
  outline: none;
}

.checklist-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
  padding: 12px 14px;
  transition: border-color 0.2s ease;
}

.checklist-checkbox-row:hover {
  border-color: #0066a1;
}

.checklist-checkbox-row input[type='checkbox'] {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 1px;
  flex: 0 0 20px;
  cursor: pointer;
  accent-color: #06a9b7;
}

.checklist-checkbox-row label {
  color: #2c3e50;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
  min-height: unset !important;
  display: block !important;
  align-items: unset !important;
  flex: 1;
}

.checklist-checkbox-row a {
  color: #0066a1;
  text-decoration: underline;
  font-weight: 600;
}

.checklist-checkbox-row a:hover {
  color: #06a9b7;
}

.checklist-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

/* Botón de suscripción premium */
.checklist-cta-row .btn {
  min-width: 260px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
  background: #0066a1;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 102, 161, 0.15);
  transition: all 0.2s ease;
  text-transform: none;
}

.checklist-cta-row .btn:hover {
  background: #005080;
  box-shadow: 0 4px 12px rgba(0, 102, 161, 0.25);
}

.checklist-cta-row .btn:active {
  transform: translateY(0);
}

.checklist-cta-row .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Status messages */
.checklist-status {
  margin: 0;
  padding: 14px 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 600;
  display: none;
  text-align: center;
  width: 100%;
}

.checklist-offer-note {
  display: none;
}

.checklist-status.is-visible {
  display: block;
}

.checklist-status.is-success {
  background: linear-gradient(135deg, 
    rgba(60, 159, 108, 0.15), 
    rgba(46, 125, 50, 0.10));
  border-color: #3c9f6c;
  color: #1f5a3d;
}

.checklist-status.is-error {
  background: linear-gradient(135deg, 
    rgba(184, 64, 64, 0.15), 
    rgba(211, 47, 47, 0.10));
  border-color: #b84040;
  color: #7a2121;
}

/* Fallback download */
.checklist-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, 
    rgba(6, 169, 183, 0.08), 
    rgba(0, 102, 161, 0.06));
  border: 2px solid #06a9b7;
  border-radius: 12px;
  color: #2c3e50;
  font-size: 15px;
  margin-top: 20px;
}

.checklist-fallback.is-visible {
  display: flex;
}

.checklist-fallback span {
  font-weight: 600;
  font-size: 16px;
}

.checklist-fallback a {
  color: #0066a1;
  text-decoration: underline;
  font-weight: 700;
  font-size: 15px;
}

.checklist-fallback a:hover {
  color: #06a9b7;
}

.checklist-fallback button {
  border: 2px solid #06a9b7;
  background: #ffffff;
  color: #0066a1;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checklist-fallback button:hover {
  background: #06a9b7;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 169, 183, 0.3);
}

/* Privacy note */
.checklist-privacy-note {
  margin: 8px 0 0;
  text-align: center;
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

/* Honeypot anti-spam */
.checklist-hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 900px) {
  .lead-checklist {
    padding: 28px 24px;
  }

  .lead-checklist-head h2 {
    font-size: 24px;
  }

  .newsletter-benefits ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .checklist-form-row {
    grid-template-columns: 1fr;
  }

  .checklist-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .checklist-cta-row .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .checklist-section {
    padding: 24px 0 16px;
  }

  .lead-checklist {
    padding: 20px 16px;
    border-width: 1px;
  }

  .lead-checklist::before {
    display: none;
  }

  .lead-checklist-head::before {
    display: none;
  }

  .lead-checklist-head h2 {
    font-size: 22px;
  }

  .lead-checklist-head p {
    font-size: 15px;
  }

  .newsletter-benefits {
    display: none;
  }

  .newsletter-gift {
    display: none;
  }

  .newsletter-gift-preview {
    display: none;
  }

  .checklist-form input[type="text"],
  .checklist-form input[type="email"] {
    padding: 12px 14px;
    font-size: 14px;
  }

  .checklist-checkbox-row {
    padding: 10px 12px;
  }

  .checklist-checkbox-row label {
    font-size: 13px;
  }

  .checklist-cta-row .btn {
    padding: 13px 20px;
    font-size: 14px;
    min-width: 100%;
  }

  .checklist-privacy-note {
    font-size: 11px;
  }
}
