/* SIMFOUR landing — complemento visual (software / compliance). Scope: .landing-modern */

.landing-modern {
  --lm-slate-950: #0b1220;
  --lm-slate-900: #111827;
  --lm-slate-800: #1e293b;
  --lm-slate-100: #f1f5f9;
  --lm-accent: #0ea5e9;
  --lm-accent-soft: rgba(14, 165, 233, 0.12);
  --lm-border: rgba(148, 163, 184, 0.2);
  --lm-glow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: linear-gradient(180deg, var(--lm-slate-100) 0%, #e2e8f0 48%, #f8fafc 100%);
  color: var(--lm-slate-900);
}

.landing-hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.65rem;
  font-weight: 600;
}

/* Títulos hero sobre foto del banner (.top-banner) */
.landing-hero-display {
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.08;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 8px 32px rgba(0, 0, 0, 0.45);
}

@media (min-width: 576px) {
  .landing-hero-display {
    font-size: clamp(1.85rem, 4.5vw, 3rem);
  }
}

.landing-hero-cta .btn-dark {
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.landing-hero-cta .btn-light {
  backdrop-filter: blur(8px);
}

.lm-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.lm-section--dark {
  background: linear-gradient(165deg, var(--lm-slate-950) 0%, var(--lm-slate-900) 40%, #0f172a 100%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.lm-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
  pointer-events: none;
}

.lm-section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.lm-section-lead {
  max-width: 42rem;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.55;
}

.lm-section--dark .lm-section-lead {
  color: #94a3b8;
}

.lm-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.lm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(14, 165, 233, 0.15);
  color: #0369a1;
  border: 1px solid rgba(14, 165, 233, 0.35);
}

.lm-section--dark .lm-badge {
  background: rgba(14, 165, 233, 0.1);
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, 0.25);
}

.lm-card-solution {
  display: block;
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lm-border);
  box-shadow: var(--lm-glow), 0 18px 50px -24px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lm-card-solution:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: var(--lm-glow), 0 24px 60px -20px rgba(14, 165, 233, 0.25);
  color: inherit;
}

.lm-card-solution__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: var(--lm-accent-soft);
  color: #38bdf8;
}

.lm-card-solution h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.lm-card-solution p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #94a3b8;
  margin: 0;
}

.lm-card-solution .lm-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #38bdf8;
}

.lm-video-shell {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--lm-border);
  background: var(--lm-slate-800);
  box-shadow: 0 24px 80px -32px rgba(0, 0, 0, 0.45);
}

.lm-video-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lm-video-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.lm-video-dot--r { background: #f87171; }
.lm-video-dot--y { background: #fbbf24; }
.lm-video-dot--g { background: #4ade80; }

.lm-video-chrome span {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

.lm-video-shell iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto !important;
  min-height: 200px;
}

.lm-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 992px) {
  .lm-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lm-gallery__item {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: #f8fafc;
  box-shadow: 0 10px 40px -20px rgba(15, 23, 42, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  aspect-ratio: 4 / 3;
}

.lm-gallery__item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px -24px rgba(14, 165, 233, 0.35);
}

.lm-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
}

.lm-pillars {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lm-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .lm-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lm-pillar {
  padding: 1.25rem 1.15rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 8px 30px -18px rgba(15, 23, 42, 0.2);
  height: 100%;
}

.lm-pillar__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.lm-pillar h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--lm-slate-900);
}

.lm-pillar p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

.lm-law-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.35rem;
}

.lm-law-list li {
  font-size: 0.82rem;
  padding: 0.4rem 0.65rem;
  border-radius: 0.45rem;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #cbd5e1;
}

.lm-stat {
  text-align: center;
  padding: 1rem;
}

.lm-stat__num {
  font-size: 2.15rem;
  font-weight: 800;
  color: #0284c7;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
}

.lm-stat__num .mdi {
  vertical-align: middle;
}

.lm-stat__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  margin-top: 0.25rem;
}

.lm-section--dark .lm-stat__label {
  color: #94a3b8;
}

/* —— Subpáginas (menú landing) —— */

.lm-page-head {
  position: relative;
  overflow: hidden;
  padding-top: 2px;
  padding-bottom: 2px;
  background: linear-gradient(165deg, var(--lm-slate-950) 0%, var(--lm-slate-900) 40%, #0f172a 100%);
}

.lm-page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.lm-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.lm-page-head h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lm-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}

@media (max-width: 575px) {
  .lm-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lm-icon-cell {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 0.85rem;
  padding: 1rem 0.65rem;
  text-align: center;
  box-shadow: 0 8px 28px -18px rgba(15, 23, 42, 0.18);
}

.lm-icon-cell .mdi.lm-icon-xl {
  font-size: 2.1rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}

.lm-icon-cell p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lm-slate-800);
}

.lm-icon-cell--amber .mdi {
  color: #d97706;
}

.lm-icon-cell--sky .mdi {
  color: #0284c7;
}

.lm-icon-cell--slate .mdi {
  color: #475569;
}

.lm-triple-panel {
  border-radius: 1rem;
  padding: 1.2rem 1.1rem;
  height: 100%;
  font-size: 0.9rem;
  line-height: 1.5;
}

.lm-triple-panel h6 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  color: rgba(241, 174, 181, 1);
}

.lm-triple-panel--soft {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.02));
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: var(--lm-slate-800);
}

.lm-triple-panel--risk {
  background: linear-gradient(160deg, rgba(185, 28, 28, 0.11), rgba(127, 29, 29, 0.06));
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #450a0a;
}

.lm-triple-panel--ok {
  background: linear-gradient(160deg, rgba(22, 163, 74, 0.12), rgba(20, 83, 45, 0.06));
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #14532d;
}

.lm-triple-panel--iso {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.14), rgba(127, 29, 29, 0.08));
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #1e293b;
}

.lm-triple-panel--iso::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lm-iso-bg, none) right center / 42% no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.lm-check-line {
  display: block;
  padding: 0.15rem 0;
  padding-left: 1.35rem;
  position: relative;
  color: var(--bs-danger-border-subtle);
}

.lm-check-line .mdi {
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1rem;
  color: #0284c7;
}

.lm-triple-panel--risk .lm-check-line .mdi,
.lm-triple-panel--ok .lm-check-line .mdi {
  color: inherit;
  opacity: 0.85;
}

.lm-section-heading-center {
  text-align: center;
  margin-bottom: 1.5rem;
}

.lm-section-heading-center img {
  width: min(72px, 14vw);
  height: auto;
  margin-bottom: 0.35rem;
}

.lm-faq {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lm-faq__item {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0.85rem;
  padding: 1.1rem 1.2rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 22px -14px rgba(15, 23, 42, 0.14);
}

.lm-faq__item h5 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--lm-slate-900);
}

.lm-faq__item p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

a.lm-module-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.38);
  color: #0369a1;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  margin: 0 0.35rem 0.45rem 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

a.lm-module-link:hover {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.55);
  color: #0c4a6e;
}

.lm-feature-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .lm-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lm-feature-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0.7rem;
  padding: 0.75rem 0.95rem;
}

.lm-section--dark .lm-feature-row {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(148, 163, 184, 0.28);
}

.lm-feature-row__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 700;
  color: #dc2626;
  flex-shrink: 0;
  min-width: 2.25rem;
  font-size: 0.8rem;
}

.lm-feature-row p {
  margin: 0;
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.45;
}

.lm-feature-row strong {
  display: block;
  font-size: 0.88rem;
  color: var(--lm-slate-900);
  margin-bottom: 0.15rem;
}

.lm-contact-card {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 1rem;
  padding: 1.35rem 1.25rem;
  height: 100%;
  box-shadow: 0 12px 40px -22px rgba(15, 23, 42, 0.2);
}

.lm-contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lm-map-frame {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 50px -28px rgba(15, 23, 42, 0.35);
  height: 100%;
  min-height: 280px;
}

.lm-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.lm-exp-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.lm-exp-item:last-child {
  border-bottom: none;
}

.lm-exp-item__num {
  font-family: ui-monospace, monospace;
  font-weight: 700;
  font-size: 0.75rem;
  color: #64748b;
  width: 2rem;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.lm-exp-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #0369a1;
}

.lm-exp-item p {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

/* —— Login / recuperar clave (base_auth) —— */

.auth-page-body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(165deg, var(--lm-slate-950) 0%, var(--lm-slate-900) 45%, #1e293b 100%);
  position: relative;
}

.auth-page-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.auth-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 3rem;
}

.auth-top-bar {
  width: 100%;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.auth-top-bar a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.auth-top-bar a:hover {
  color: #7dd3fc;
}

.auth-lang-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.auth-lang-inline img {
  cursor: pointer;
  border-radius: 2px;
  vertical-align: middle;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 28px 80px -32px rgba(0, 0, 0, 0.55);
  padding: 2rem 1.75rem;
}

.auth-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Fondo detrás del logo — login / recuperar clave */
.auth-brand-banner {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #7c6ffa;
  padding: 1.75rem 1rem;
  margin-bottom: 0.75rem;
}

.auth-brand-banner__inner {
  position: relative;
}

.auth-brand img {
  max-width: 200px;
  height: auto;
}

.auth-brand__title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lm-slate-900);
  margin: 0.5rem 0 0;
}

.auth-brand__sub {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0.25rem 0 0;
}

.auth-card .form-label,
.auth-card label.label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lm-slate-800);
  margin-bottom: 0.35rem;
}

.auth-card .input-group-text {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #475569;
}

.auth-card .form-control {
  border-color: #cbd5e1;
}

.auth-card .form-control:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.2);
}

.auth-card .btn-primary {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border: none;
  font-weight: 600;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.auth-card .btn-primary:hover {
  background: linear-gradient(135deg, #0369a1, #075985);
}

.auth-card .btn-info {
  font-weight: 600;
}

.auth-footer-links {
  font-size: 0.88rem;
  margin-top: 1rem;
}

.auth-footer-links a {
  color: #0369a1;
  font-weight: 600;
  text-decoration: none;
}

.auth-footer-links a:hover {
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.8rem;
  margin: 1.25rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

/* —— Pie público (landing + subpáginas) —— */
.landing-page .lm-footer {
  --lm-footer-fg: #cbd5e1;
  --lm-footer-fg-muted: #64748b;
  --lm-footer-link: #f1f5f9;
  --lm-footer-link-hover: #7dd3fc;
  margin-top: 0;
  width: 100%;
  background: linear-gradient(165deg, #0f172a 0%, #0b1220 42%, #020617 100%);
  color: var(--lm-footer-fg);
  border-top: 1px solid rgba(14, 165, 233, 0.22);
  box-shadow: 0 -24px 48px -32px rgba(0, 0, 0, 0.45);
}

.landing-page .lm-footer__inner {
  padding-top: 2.75rem;
  padding-bottom: 1.75rem;
}

@media (min-width: 992px) {
  .landing-page .lm-footer__inner {
    padding-top: 3.25rem;
    padding-bottom: 2rem;
  }
}

.landing-page .lm-footer__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lm-footer-fg-muted);
  margin-bottom: 1rem;
}

.landing-page .lm-footer__list li + li {
  margin-top: 0.65rem;
}

.landing-page .lm-footer__link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--lm-footer-link);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.landing-page .lm-footer__link:hover {
  color: var(--lm-footer-link-hover);
}

.landing-page .lm-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  background: rgba(14, 165, 233, 0.12);
  color: #38bdf8;
  font-size: 1.1rem;
}

.landing-page .lm-footer__address {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--lm-footer-fg);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.landing-page .lm-footer__address:hover {
  color: var(--lm-footer-link-hover);
}

.landing-page .lm-footer__address .lm-footer__icon {
  margin-top: 0.1rem;
}

.landing-page .lm-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.landing-page .lm-footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.landing-page .lm-footer__social-btn:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(14, 165, 233, 0.5);
}

.landing-page .lm-footer__social-btn img {
  display: block;
  width: 22px;
  height: auto;
  max-height: 22px;
  object-fit: contain;
}

.landing-page .lm-footer__denuncias {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.15rem;
  border-radius: 0.6rem;
  color: #0f172a;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border: 1px solid rgba(125, 211, 252, 0.5);
  box-shadow: 0 4px 14px -6px rgba(14, 165, 233, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.landing-page .lm-footer__denuncias:hover {
  color: #0c4a6e;
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -8px rgba(14, 165, 233, 0.55);
}

.landing-page .lm-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(51, 65, 85, 0.6);
}

.landing-page .lm-footer__legal {
  text-align: center;
  font-size: 0.84rem;
  color: var(--lm-footer-fg-muted);
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
}

.landing-page .lm-footer__legal-line {
  display: inline;
}

.landing-page .lm-footer__legal-sep {
  color: #475569;
  user-select: none;
}

.landing-page .lm-footer__legal a {
  color: #94a3b8;
  font-weight: 600;
  text-decoration: none;
}

.landing-page .lm-footer__legal a:hover {
  color: var(--lm-footer-link-hover);
}
