/**
 * Shield Footer - Light Premium Theme (Reference Based)
 * ---------------------------------------
 */

.shield-footer {
  background: #f7f7f9;
  color: #555555;
  font-size: 14px;
  font-family: var(--shield-font-base);
  border-top: 1px solid #eaeaea;
}

/* NEWSLETTER */
.shield-footer__newsletter {
  padding: 48px 0;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.shield-newsletter__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.shield-newsletter__text h3 {
  font-size: 22px;
  color: #222222;
  margin: 0 0 8px 0;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.shield-newsletter__text p {
  margin: 0;
  color: #777777;
  font-size: 14px;
}

.shield-newsletter__form {
  flex: 0 0 500px;
}

.shield-newsletter__form form {
  margin: 0 0 8px 0;
}

.shield-newsletter__input-group {
  display: flex;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #dddddd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shield-newsletter__input-group:focus-within {
  border-color: #634c9f;
  box-shadow: 0 0 0 3px rgba(99, 76, 159, 0.1);
}

.shield-newsletter__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #999999;
}

.shield-newsletter__input-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 0;
  font-size: 14px;
  background: transparent;
  color: #333333;
}

.shield-newsletter__input-group input::placeholder {
  color: #999999;
}

.shield-newsletter__input-group button {
  background: #634c9f;
  color: #ffffff;
  border: none;
  padding: 0 28px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}

.shield-newsletter__input-group button:hover {
  background: #503d82;
}

.shield-newsletter__form small {
  font-size: 12px;
  color: #888888;
}

.shield-newsletter__status {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.shield-newsletter__status--ok {
  color: #1f8f46;
}

.shield-newsletter__status--error {
  color: #c92a2a;
}

/* MAIN FOOTER (5 COLUMNS) */
.shield-footer__main {
  padding: 64px 0;
}

.shield-footer-cols {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.8fr;
  gap: 40px;
}

.shield-footer-col__title {
  font-size: 15px;
  color: #222222;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.shield-footer-col__desc {
  margin: 0 0 24px 0;
  line-height: 1.6;
  font-size: 14px;
  color: #666666;
}

/* Contact List */
.shield-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shield-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.shield-contact-icon {
  color: #634c9f;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  flex-shrink: 0;
  margin-top: 2px;
}

.shield-contact-icon svg {
  width: 20px;
  height: 20px;
  overflow: visible; /* Previene que el stroke-width se corte y se vea mordido */
}

.shield-contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.shield-contact-text small {
  color: #777777;
  font-size: 12px;
  margin-bottom: 2px;
}

.shield-contact-text strong {
  color: #222222;
  font-weight: 700;
  font-size: 16px;
}

/* Footer Menus */
.shield-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shield-footer-menu a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 14px;
  display: inline-block;
}

.shield-footer-menu a:hover {
  color: #634c9f;
}

/* Trust Features */
.shield-trust-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shield-trust-feat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shield-trust-icon {
  color: #634c9f;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.shield-trust-icon svg {
  width: 18px;
  height: 18px;
}

.shield-trust-feat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.shield-trust-feat-text strong {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
}

.shield-trust-feat-text small {
  color: #777777;
  font-size: 12px;
  margin-top: 2px;
}

/* Social Links */
.shield-social-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shield-social-title {
  margin: 0;
  font-size: 13px;
  color: #222222;
  font-weight: 600;
}

.shield-social-links {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.shield-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #555555;
  background: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.shield-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: #ffffff;
}

.shield-social-btn--fb:hover { background: #1877F2; }
.shield-social-btn--tw:hover { background: #1DA1F2; }
.shield-social-btn--ig:hover { background: #E4405F; }
.shield-social-btn--in:hover { background: #0A66C2; }

.shield-social-btn svg {
  width: 16px;
  height: 16px;
}

/* BOTTOM FOOTER */
.shield-footer__bottom {
  padding: 24px 0;
  background: #f7f7f9;
  border-top: 1px solid #eaeaea;
}

.shield-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #777777;
}

.shield-bottom__left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.shield-payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shield-payment-icons span {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.5px;
}

.shield-pay-visa { color: #1434CB; font-style: italic; }
.shield-pay-mc { color: #EB001B; }
.shield-pay-pp { color: #003087; font-style: italic; }

.shield-bottom-links {
  display: flex;
  gap: 24px;
}

.shield-bottom-links a {
  color: #555555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.shield-bottom-links a:hover {
  color: #222222;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .shield-footer-cols {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .shield-newsletter__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .shield-newsletter__form {
    flex: 1;
    width: 100%;
    max-width: 500px;
  }
  .shield-footer-cols {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .shield-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .shield-footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .shield-footer-cols {
    grid-template-columns: 1fr;
  }
}
