/* ==========================================================================
   NORDICWEAR STORE — CASE STUDY | PeakSites design system (todo en un solo CSS)
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }

/* ===== VARIABLES ===== */
:root {
  --primary: #0a0f2c;
  --accent: #00d4ff;
  --accent2: #0099ff;
  --bg-light: #f8fafd;
  --bg-dark: #0a0f2c;
  --text-light: #1e2937;
  --text-dark: #f1f5f9;
  --text-soft-light: #64748b;
  --text-soft-dark: #94a3b8;
  --card-bg-light: #ffffff;
  --card-bg-dark: rgba(255, 255, 255, 0.06);
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg-light);
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  padding: 0;
}
body.dark { background: var(--bg-dark); color: var(--text-dark); }

.container { width: 90%; max-width: 1100px; margin: auto; }
.container.narrow { max-width: 900px; }
section { padding: 80px 0; }

p { color: var(--text-soft-light); }
body.dark p { color: var(--text-soft-dark); }

h1, h2, h3, h4 { color: var(--text-light); letter-spacing: -0.01em; }
body.dark h1, body.dark h2, body.dark h3, body.dark h4 { color: var(--text-dark); }

a { color: inherit; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 9999;
  background: rgba(255,255,255,0.95);
  padding: 15px 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}
body.dark .header {
  background: rgba(10,15,44,0.95);
  border-bottom: 1px solid var(--border-dark);
}
.nav { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 15px; }
nav { display: flex; align-items: center; gap: 15px; flex: 1; justify-content: flex-end; }
nav a { text-decoration: none; color: var(--primary); font-weight: 500; }
body.dark nav a { color: #fff; }

.logo { height: 28px; width: auto; flex-shrink: 0; transition: transform .3s; }
.logo:hover { transform: scale(1.05); }
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
.brand-name { font-weight: 550; font-size: 16px; line-height: 1; color: inherit; }
body.dark .brand-name {
  background: linear-gradient(90deg,#fff,#a0b8ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.desktop-nav { flex: 1; display: flex; gap: 10px; justify-content: flex-end; }
.desktop-nav a { display: inline-flex !important; align-items: center !important; height: 46px !important; padding: 12px 14px !important; }
.nav-right { display: flex; align-items: center; gap: 15px; }

.nav-item { position: relative; display: inline-block; }
.nav-link {
  text-decoration: none; color: inherit; font-weight: 500;
  padding: 12px 14px !important; border-radius: 8px;
  transition: background .25s ease;
  display: inline-flex; align-items: center; gap: 4px;
  height: 46px; line-height: 1;
}
.nav-link:hover { background: rgba(0,212,255,.08); }
.chevron { font-size: .68em; transition: transform .3s; position: relative; top: -1px; }

/* MEGA MENU */
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 15px; opacity: 0; visibility: hidden;
  transition: all .3s ease; z-index: 10000;
  pointer-events: none; width: 100vw;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-menu-content {
  background: #fff; border-radius: 22px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.22);
  border: 1px solid #e2e8f0;
  margin: 0 auto; max-width: 1180px; width: 95%; padding: 50px 48px;
}
body.dark .mega-menu-content { background: #0f1629; border-color: rgba(255,255,255,.09); }
.mega-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 52px; }
.mega-column { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.mega-column h4 {
  font-size: 14.8px; font-weight: 700; color: #00d4ff;
  margin-bottom: 28px; letter-spacing: .5px; text-transform: uppercase; line-height: 1.25;
}
.mega-column a {
  display: block; padding: 2px 6px;
  color: var(--text-light); text-decoration: none;
  font-size: 15.4px; line-height: 1.4;
  transition: color .2s ease, padding-left .2s ease;
}
body.dark .mega-column a { color: var(--text-dark); }
.mega-column a:hover { color: #00d4ff; padding-left: 12px; }

/* THEME BTN */
.theme-toggle {
  height: 32px; width: 32px;
  border: 1px solid var(--border-light);
  border-radius: 6px; background: none; cursor: pointer;
  transition: .3s; color: var(--primary);
}
body.dark .theme-toggle { border: 1px solid rgba(255,255,255,.2); color: #fff; }
.theme-toggle:hover { background: rgba(0,212,255,.08); }

/* LANG SWITCH */
.lang-switch { position: relative; display: inline-block; margin-left: 12px; z-index: 100; }
.lang-current {
  display: flex !important; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 10px;
  background: #0f1629; color: #fff;
  font-weight: 600; font-size: 15px; cursor: pointer; white-space: nowrap;
  border: 2px solid transparent !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.3) !important;
  transition: all .2s ease !important; outline: none !important;
}
.lang-switch:hover .lang-current {
  background: #1a2338 !important; border: 2px solid #00d4ff !important;
  box-shadow: 0 0 0 4px rgba(0,212,255,.25), 0 6px 20px rgba(0,212,255,.45) !important;
}
.lang-menu {
  position: absolute; top: 100%; right: 0; margin-top: 0;
  background: #1f252f; border: 1px solid #444; border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  display: none; min-width: 180px; padding: 8px 0; z-index: 9999;
}
.lang-switch:hover .lang-menu { display: block; }
.flag-wrapper { display: inline-flex; padding: 2px; background: transparent; border: none; }
.lang-current img, .lang-option img { width: 26px; height: 17px; object-fit: cover; border-radius: 3px; }
.arrow { font-size: 19px; line-height: 1; color: #fff; }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; color: #eee; text-decoration: none; font-size: 15px;
}
.lang-option:hover { background: #2a323f; }

/* Lang light-mode overrides */
body:not(.dark) .header .lang-current {
  background: #fff !important; color: #0a0f2c !important;
  border: 2px solid transparent !important;
  box-shadow: 0 8px 25px rgba(10,15,44,.08) !important;
}
body:not(.dark) .header .lang-current .arrow { color: #0a0f2c !important; }
body:not(.dark) .lang-current:hover, body:not(.dark) .lang-switch:hover .lang-current {
  background: #fff !important; border: 2px solid #00d4ff !important;
  box-shadow: 0 0 0 4px rgba(0,212,255,.2), 0 10px 30px rgba(0,212,255,.35) !important;
}
body:not(.dark) .lang-menu {
  background: #fff !important; border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important; box-shadow: 0 15px 40px rgba(10,15,44,.1) !important;
  padding: 6px 0 !important;
}
body:not(.dark) .lang-menu .lang-option { color: #1e2937 !important; font-weight: 500 !important; }
body:not(.dark) .lang-menu .lang-option:hover { background: #f1f5f9 !important; color: #0099ff !important; }

/* MOBILE MENU */
.mobile-menu-btn {
  display: none; background: none; border: none;
  font-size: 34px; color: var(--primary); cursor: pointer; padding: 5px 10px;
}
body.dark .mobile-menu-btn { color: #fff; }
.mobile-menu {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  z-index: 9999999; display: none; justify-content: flex-end;
}
.mobile-menu.active { display: flex; }
.mobile-menu-links {
  position: fixed !important; top: 0 !important; right: 0 !important;
  width: 82vw !important; max-width: 300px !important; height: 100vh !important;
  padding: 80px 25px 40px 30px !important;
  background: #0a0f2c !important; z-index: 9999999999 !important;
}
.close-menu-btn {
  position: fixed; top: 18px; right: 18px; font-size: 32px; color: #fff;
  background: rgba(0,0,0,.4); border: none; border-radius: 8px;
  padding: 6px 10px; cursor: pointer; z-index: 9999999999 !important;
}
.mobile-link {
  display: block; color: #fff; font-size: 1.1rem;
  padding: 16px 0; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.mobile-link:last-child { border-bottom: none; }

/* ============================== CASE STUDY ============================== */

/* HERO */
.case-hero {
  padding: 90px 0 60px;
  background: linear-gradient(180deg, #f1f4fb 0%, #f8fafd 100%);
}
body.dark .case-hero { background: linear-gradient(180deg,#0a0f2c 0%,#0d1638 100%); }
.breadcrumb {
  font-size: .88rem; color: var(--text-soft-light);
  margin-bottom: 24px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.breadcrumb a { color: var(--accent2); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-soft-light); }
.case-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.15;
  text-align: center; max-width: 900px; margin: 0 auto 24px; font-weight: 700;
}
.hero-lead {
  text-align: center; max-width: 780px; margin: 0 auto 40px;
  font-size: 1.05rem; line-height: 1.7;
}
.chip-row {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 14px; padding: 22px 28px;
  max-width: 780px; margin: 0 auto;
  box-shadow: 0 10px 30px -18px rgba(10,15,44,.15);
}
body.dark .chip-row { background: rgba(255,255,255,.04); border-color: var(--border-dark); }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .98rem; color: var(--text-light);
}
body.dark .chip { color: var(--text-dark); }
.chip-ico { font-size: 1.2rem; }

/* SECTION BLOCKS */
.section-block { padding: 70px 0; }
.section-block.alt { background: #fff; }
body.dark .section-block.alt { background: #0d1638; }
.section-block h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0 0 24px; font-weight: 700; line-height: 1.25;
}
.section-block p { margin: 0 0 18px; font-size: 1.02rem; }
.section-block strong { color: var(--text-light); }
body.dark .section-block strong { color: var(--text-dark); }

/* Mockups */
.mockup {
  margin: 40px 0; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(10,15,44,.35);
  background: #000;
}
.mockup img { display: block; width: 100%; height: auto; }

/* Accordion */
.accordion { margin: 30px 0 40px; display: flex; flex-direction: column; gap: 14px; }
.acc-item {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 14px; padding: 0; overflow: hidden;
  transition: box-shadow .3s;
}
body.dark .acc-item { background: rgba(255,255,255,.04); border-color: var(--border-dark); }
.acc-item[open] { box-shadow: 0 12px 30px -18px rgba(10,15,44,.2); }
.acc-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; font-weight: 600; font-size: 1.02rem;
  display: flex; align-items: center; gap: 12px;
  color: var(--text-light);
}
body.dark .acc-item summary { color: var(--text-dark); }
.acc-item summary::-webkit-details-marker { display: none; }
.acc-ico { font-size: 1.1rem; }
.acc-arrow { margin-left: auto; transition: transform .3s; color: var(--text-soft-light); }
.acc-item[open] .acc-arrow { transform: rotate(180deg); }
.acc-body { padding: 0 24px 22px 56px; }
.acc-body p { margin: 0; }

/* Mini cards */
.mini-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 30px;
}
.mini-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 16px; padding: 28px 24px;
  transition: transform .3s, box-shadow .3s;
}
body.dark .mini-card { background: rgba(255,255,255,.04); border-color: var(--border-dark); }
.mini-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(10,15,44,.2); }
.mini-card h3 {
  margin: 0 0 12px; font-size: 1.08rem; display: flex; align-items: center; gap: 10px; font-weight: 700;
}
.mini-card p { margin: 0; font-size: .96rem; }

/* Link arrow */
.link-arrow {
  display: inline-block; color: var(--accent);
  text-decoration: none; font-weight: 600; margin: 6px 0 28px;
  border-bottom: 2px solid transparent; transition: all .3s;
}
.link-arrow:hover { color: var(--accent2); border-bottom-color: var(--accent); }

/* Feature grid */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 30px;
}
.feat-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 16px; padding: 32px 28px;
  transition: transform .3s, box-shadow .3s;
}
body.dark .feat-card { background: rgba(255,255,255,.04); border-color: var(--border-dark); }
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -22px rgba(10,15,44,.22); }
.feat-badge {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(0,212,255,.12); color: var(--accent2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 18px;
}
.feat-card h3 { margin: 0 0 12px; font-size: 1.08rem; font-weight: 700; }
.feat-card p { margin: 0; font-size: .96rem; }

/* Form + Result */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}
.form-card {
  background: #fff; border-radius: 20px;
  padding: 34px 30px;
  box-shadow: 0 30px 60px -30px rgba(10,15,44,.25);
  border: 1px solid var(--border-light);
  position: sticky; top: 100px;
}
body.dark .form-card { background: #0f1629; border-color: var(--border-dark); }
.form-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  color: var(--primary); margin: 0 0 22px;
}
body.dark .form-eyebrow { color: var(--accent); }
.quote-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field span {
  font-size: .78rem; font-weight: 600; color: var(--text-soft-light);
  position: absolute; top: -8px; left: 14px;
  background: #fff; padding: 0 6px;
}
body.dark .field span { background: #0f1629; color: var(--text-soft-dark); }
.field input {
  padding: 14px 16px; border: 1px solid var(--border-light);
  border-radius: 10px; font-size: 1rem; font-family: inherit;
  background: #fff; color: var(--text-light); transition: border-color .2s, box-shadow .2s;
}
body.dark .field input { background: #0a0f2c; color: var(--text-dark); border-color: var(--border-dark); }
.field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,255,.18); }
.btn-cta {
  margin-top: 6px; padding: 15px 20px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0f2c; font-weight: 700; font-size: 1rem; border-radius: 12px;
  transition: transform .3s, box-shadow .3s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(0,212,255,.35); }
.form-msg { font-size: .88rem; margin: 8px 0 0; min-height: 1em; color: var(--accent2); }

.result-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 20px; padding: 40px 36px;
  box-shadow: 0 30px 60px -30px rgba(10,15,44,.15);
}
body.dark .result-card { background: rgba(255,255,255,.04); border-color: var(--border-dark); }
.result-card h2 { margin: 0 0 20px; font-size: 1.6rem; }
.result-card p { font-size: 1rem; }

/* CTA final */
.final-cta { background: #fff; padding: 120px 20px; text-align: center; margin: 0; }
body.dark .final-cta {
  background: #0d153a;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.final-cta-content { max-width: 780px; margin: 0 auto; }
.final-cta h2 {
  font-size: 2.35rem; line-height: 1.2; margin-bottom: 24px; color: #0a0f2c;
}
body.dark .final-cta h2 { color: #fff; }
.final-cta p {
  font-size: 1.2rem; line-height: 1.55; color: #475569;
  max-width: 680px; margin: 0 auto 40px;
}
body.dark .final-cta p { color: #94a3b8; }
.btn-big {
  display: inline-block; padding: 18px 42px; font-size: 1.15rem; font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  color: #0a0f2c; text-decoration: none;
  transition: all .3s;
  box-shadow: 0 10px 30px rgba(0,212,255,.3);
}
.btn-big:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,212,255,.45); }

/* ============================== FOOTER ============================== */
.footer-pro {
  background: #080b14; color: #aaa;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px; margin-bottom: 50px;
}
.footer-pro h4 { color: #fff; margin-bottom: 15px; font-size: 14px; }
.footer-pro a {
  display: block; text-decoration: none; color: #888;
  font-size: 14px; margin-bottom: 10px; transition: .3s;
}
.footer-pro a:hover { color: #00d4ff; }
.footer-bottom {
  border-top: 1px solid #222; padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; font-size: 13px;
}

/* Footer light mode */
body:not(.dark) .footer-pro { background: #f8fafd !important; color: #475569 !important; }
body:not(.dark) .footer-pro h4 { color: #1e2937 !important; }
body:not(.dark) .footer-pro a { color: #64748b !important; }
body:not(.dark) .footer-pro a:hover { color: #0f172a !important; }
body:not(.dark) .footer-bottom { border-top-color: #e2e8f0 !important; color: #64748b !important; }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 991px) {
  .desktop-nav, .nav-right, .header .lang-switch { display: none !important; }
  .mobile-menu-btn { display: block; }
  .header { position: sticky; z-index: 100; }
  .mega-menu { display: none !important; }
  body.menu-open { overflow: hidden; }
  .mobile-theme-btn {
    display: block !important; height: 38px; width: 38px; font-size: 1.2rem; margin-left: 8px;
  }
  .desktop-only.nav-right { display: none !important; }
  .theme-toggle.mobile-theme-btn {
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.1); color: #fff;
  }
  body:not(.dark) .theme-toggle.mobile-theme-btn {
    border-color: var(--border-light);
    background: rgba(0,0,0,.08); color: var(--primary);
  }
  .mobile-lang-container {
    margin-top: 35px; padding-top: 25px;
    border-top: 1px solid rgba(128,128,128,.15);
    display: flex; justify-content: center;
  }
  .mobile-lang-switch { position: relative; width: 100%; max-width: 200px; }
  .mobile-lang-switch .lang-current {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px 20px; background: rgba(128,128,128,.08);
    border-radius: 10px; font-weight: 600; font-size: 1rem; cursor: pointer;
  }
  body.dark .mobile-lang-switch .lang-current { background: rgba(255,255,255,.06); }
  .mobile-lang-switch .arrow { font-size: .8rem; transition: transform .3s; }
  .mobile-lang-switch.active .arrow { transform: rotate(180deg); }
  .mobile-lang-switch .lang-menu {
    display: none; background: rgba(128,128,128,.05);
    border-radius: 10px; margin-top: 8px; overflow: hidden;
    border: 1px solid rgba(128,128,128,.1);
    position: static !important; box-shadow: none !important;
  }
  .mobile-lang-switch.active .lang-menu { display: block; }
  .mobile-lang-switch .lang-option {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px; color: inherit; text-decoration: none;
    font-size: .95rem; font-weight: 500;
  }
  .mobile-lang-switch .lang-option:not(:last-child) { border-bottom: 1px solid rgba(128,128,128,.08); }
  .mobile-lang-switch .lang-option:hover { background: rgba(128,128,128,.12); }
  .mobile-lang-switch .flag-wrapper { display: inline-flex; align-items: center; width: 20px; }
  .mobile-lang-switch .flag-wrapper img { width: 100%; height: auto; border-radius: 3px; }
}

@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-btn, .mobile-theme-btn { display: none !important; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .form-card { position: static; }
  .feature-grid { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { width: 94%; padding: 0 15px; }
  section { padding: 55px 0 !important; }
  .case-hero { padding: 60px 0 40px !important; }
  .case-hero h1 { font-size: 1.9rem !important; }
  .hero-lead { font-size: .98rem; }
  .chip-row { flex-direction: column; align-items: flex-start; padding: 18px 22px; }
  h2 { font-size: 1.55rem !important; line-height: 1.3 !important; }
  h3 { font-size: 1.15rem !important; }
  p { font-size: .98rem !important; }
  .acc-body { padding: 0 20px 18px 20px; }
  .final-cta { padding: 70px 20px !important; }
  .final-cta h2 { font-size: 1.75rem !important; }
  .btn-big { display: block; width: 100%; max-width: 340px; margin: 0 auto; text-align: center; padding: 16px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 35px !important; }
  .footer-pro { padding: 60px 20px 40px !important; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* 1. Ajuste de la figura para eliminar bordes y sombras intrusivas */
.case-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; /* Eliminamos márgenes para evitar saltos visuales */
  padding: 0;
  max-width: 100%;
  border: none !important;
  box-shadow: none !important;
  background: transparent;
}

/* 2. Asegurar que las imágenes dentro ocupen todo el ancho sin bordes extra */
.case-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px; /* Mantiene la estética redondeada */
}

/* 3. Ajuste del contenedor para evitar separaciones forzadas */
.container.narrow {
  max-width: 900px;
  margin: auto;
  padding: 0; /* Quitamos padding si está generando líneas de fondo extra */
}

/* 4. Limpieza de secciones adyacentes */
/* Esto evita que si tienes una sección clara pegada a una oscura se vea una línea */
.section-block {
  padding: 40px 0; /* Reducimos el padding si quieres que se vean más compactas */
}

/* Elimina bordes horizontales que puedan estar siendo generados por separadores */
hr, .separator, .divider {
    display: none !important;
    border: none !important;
}

/* Fuerza a que los contenedores no tengan bordes en sus uniones */
section, .section-block, .container {
    border-top: none !important;
    border-bottom: none !important;
}