/* =========================================================
   FOOTER PREMIUM — ESTILO APPLE ELITE
   ========================================================= */

.loq-footer-premium {
  --f-bg: var(--loq-brand-navy);
  --f-bg-alt: #073548;
  --f-text: rgba(255, 255, 255, 0.7);
  --f-title: #ffffff;
  --f-link-hover: var(--loq-brand-cyan);
  --f-border: rgba(255, 255, 255, 0.1);
  --f-radius: 0px;

  background-color: var(--f-bg);
  color: var(--f-text);
  font-family: var(--loq-font-family);
  line-height: 1.6;
}

/* 1. PRE-FOOTER: VALUE PROPS */
.loq-pre-footer {
  padding: 60px 0;
  border-bottom: 1px solid var(--f-border);
}

.loq-trust-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

@media (min-width: 768px) {
  .loq-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.loq-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.loq-trust-icon {
  color: var(--loq-brand-cyan);
  flex-shrink: 0;
  margin-top: 4px;
}

.loq-trust-title {
  color: var(--f-title);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}

.loq-trust-text {
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

/* 2. MAIN FOOTER: 4 COLUMNS */
.loq-footer-main {
  padding: 80px 0;
}

.loq-footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
}

@media (min-width: 640px) {
  .loq-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .loq-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.loq-footer-title {
  color: var(--f-title);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.loq-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.loq-footer-links li {
  margin-bottom: 12px;
}

.loq-footer-links a {
  color: var(--f-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.loq-footer-links a:hover {
  color: var(--f-link-hover);
}

.loq-footer-address {
  font-style: normal;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Brand Section */
.loq-footer-logo {
  margin-bottom: 20px;
}

.loq-logo-neg {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.loq-footer-desc {
  font-size: 14px;
  margin-bottom: 24px;
}

.loq-footer-social {
  display: flex;
  gap: 20px;
}

.loq-footer-social a {
  color: var(--f-text);
  transition: color 0.2s ease, transform 0.2s ease;
}

.loq-footer-social a:hover {
  color: var(--f-link-hover);
  transform: translateY(-2px);
}

/* 3. LEGAL BAR */
.loq-footer-legal {
  padding: 30px 0 60px;
  border-top: 1px solid var(--f-border);
}

.loq-legal-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 12px;
}

@media (min-width: 1024px) {
  .loq-legal-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.loq-legal-copy {
  opacity: 0.6;
}

.loq-arrepentimiento {
  color: var(--f-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.loq-arrepentimiento:hover {
  border-bottom-color: var(--f-text);
}

.loq-legal-badges {
  display: flex;
  align-items: center;
  gap: 24px;
}

.loq-afip-qr {
  height: 32px;
  width: auto;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.3s ease;
}

.loq-afip-qr:hover {
  filter: grayscale(0) opacity(1);
}

.loq-payments-img {
  height: 20px;
  width: auto;
  filter: grayscale(1) opacity(0.4);
  transition: filter 0.3s ease;
}

.loq-payments-img:hover {
  filter: grayscale(0) opacity(0.8);
}

/* Utility: Container */
.loq-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Elite WhatsApp Link */
.loq-footer-wa {
  font-weight: 600;
  color: var(--loq-brand-cyan) !important;
}

.loq-chevron-svg {
  display: none;
}

/* =========================================================
   MOBILE OPTIMIZATIONS (Refined & Fixed)
   ========================================================= */

@media (max-width: 1023px) {
  /* 1. Trust Items: Centered vertically */
  .loq-trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .loq-trust-icon {
    width: 20px;
    height: 20px;
  }

  .loq-trust-title {
    font-size: 15px;
  }

  .loq-trust-text {
    font-size: 13px;
    opacity: 0.6;
  }

  /* 2. Main Grid & Logo Refinement */
  .loq-footer-grid {
    gap: 0; /* Let accordions handle spacing */
  }

  .loq-footer-col--accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .loq-footer-col.loq-footer-brand {
    border-bottom: none;
    text-align: center;
    padding: 50px 0 20px;
    width: 100%;
  }

  /* CRITICAL: SHRUNK LOGO ON MOBILE */
  .loq-logo-neg {
    height: 24px !important; 
    width: auto;
    margin: 0 auto;
    display: block;
  }

  .loq-footer-brand .loq-footer-social {
    justify-content: center;
    margin-top: 15px;
  }

  .loq-footer-col--accordion .loq-footer-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--f-title);
  }

  /* SVG Accordion Icon */
  .loq-chevron-svg {
    display: block;
    width: 12px;
    height: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
  }

  .loq-footer-col--accordion.is-active .loq-chevron-svg {
    transform: rotate(180deg);
  }

  .loq-footer-col--accordion .loq-footer-links,
  .loq-footer-col--accordion .loq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
  }

  .loq-footer-col--accordion.is-active .loq-footer-links,
  .loq-footer-col--accordion.is-active .loq-accordion-content {
    max-height: 600px;
    opacity: 1;
    padding-bottom: 25px;
  }

  /* 3. Legal Bar refinements */
  .loq-footer-legal {
    padding: 30px 0 50px;
  }

  .loq-legal-grid {
    gap: 24px;
    padding-top: 20px;
  }

  .loq-legal-copy {
    order: 3;
    font-size: 10px;
    opacity: 0.4;
    text-align: center;
  }

  .loq-legal-center {
    order: 2;
  }

  .loq-legal-right {
    order: 1;
    width: 100%;
  }

  .loq-legal-badges {
    justify-content: center;
    gap: 24px;
    width: 100%;
  }

  .loq-afip-qr {
    height: 26px !important;
  }

  .loq-payments-img {
    height: 16px !important;
  }
}
/* 2.5 NEWSLETTER — Digital Trade Style */
.loq-footer-newsletter {
  padding: 60px 0;
  border-top: 1px solid var(--f-border);
  margin-top: 20px;
}

.loq-newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .loq-newsletter-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.loq-newsletter-title {
  color: var(--f-title);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.loq-newsletter-desc {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}

.loq-newsletter-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 480px;
}

.loq-newsletter-input {
  flex: 1;
  height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.loq-newsletter-input:focus {
  border-color: var(--loq-brand-cyan);
  background: rgba(255, 255, 255, 0.06);
}

.loq-newsletter-submit {
  height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--loq-brand-orange);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.loq-newsletter-submit:hover {
  background: #d66f0d;
  transform: translateY(-2px);
}

.loq-newsletter-submit:active {
  transform: translateY(0);
}
