.elementor-350 .elementor-element.elementor-element-7cb6231e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-350 .elementor-element.elementor-element-e09a79c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-350:not(.elementor-motion-effects-element-type-background), body.elementor-page-350 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F4F1EC;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1de3dcf6 *//* =========================
HEADER BASE
========================= */

.ls-header {
  position: sticky;
  top: 0;
  z-index: 999;

  width: 100%;
  padding: 20px 30px;

  background: rgba(244,241,236,0.85);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* CONTENEDOR */

.ls-header-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.ls-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2e2e2e;
  text-decoration: none;
}

/* NAV */

.ls-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.ls-nav a {
  font-size: 14px;
  text-decoration: none;
  color: #2e2e2e;

  transition: opacity 0.3s ease;
}

.ls-nav a:hover {
  opacity: 0.6;
}

/* CTA */

.ls-contact-btn {
  padding: 10px 22px;
  border-radius: 999px;

  background: #7a8a7b;
  color: #fff !important;

  font-size: 13px;

  transition: all 0.3s ease;
}

.ls-contact-btn:hover {
  background: #657565;
}

/* MOBILE BUTTON */

.ls-menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE MENU */

.ls-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;

  padding: 20px;

  background: #f4f1ec;
}

.ls-mobile-menu a {
  text-decoration: none;
  color: #2e2e2e;
  font-size: 16px;
}

/* ACTIVE */

.ls-mobile-menu.active {
  display: flex;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 768px) {

  .ls-nav {
    display: none;
  }

  .ls-menu-toggle {
    display: block;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2ea1c54 *//* =========================
BASE
========================= */

.ls-distribucion {
  background: #f4f1ec;
  padding: 140px 20px;
}

.ls-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
TÍTULO
========================= */

.ls-title {

  font-family: 'Playfair Display', serif;

  font-size: clamp(40px, 5vw, 72px);

  font-weight: 400;

  color: #7a8a7b;

  text-align: center;

  margin-bottom: 100px;

}

/* =========================
BLOQUES GENERALES
========================= */

.ls-block {
  margin-bottom: 60px;
}

/* =========================
INTRO
========================= */

.ls-intro {

  text-align: center;

  max-width: 700px;

  margin: 0 auto 80px;

}

.ls-intro h3 {

  font-family: 'Playfair Display', serif;

  font-size: clamp(26px, 3vw, 36px);

  font-weight: 400;

  margin-bottom: 25px;

  color: #2e2e2e;

}

/* =========================
LISTA INTRO
========================= */

.ls-intro ul {

  list-style: none;

  margin-bottom: 25px;

  padding: 0;

}

.ls-intro li {

  font-size: 16px;

  margin-bottom: 10px;

  color: #444;

}

.ls-intro li::before {

  content: "•";

  color: #7a8a7b;

  margin-right: 8px;

}

/* =========================
TEXTO INTRO
========================= */

.ls-intro p {

  font-size: 18px;

  line-height: 1.6;

  color: #6f6f6f;

}

/* =========================
GALERÍA
========================= */

.ls-gallery {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  margin-bottom: 100px;

}

/* =========================
IMÁGENES
========================= */

.ls-gallery img {

  width: 100%;

  height: 320px;

  object-fit: cover;

  object-position: center;

  border-radius: 28px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.4);

  transition: all 0.4s ease;

  display: block;

}

/* =========================
HOVER
========================= */

.ls-gallery img:hover {

  transform: translateY(-6px) scale(1.02);

}

/* =========================
GRID TARJETAS
========================= */

.ls-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

  margin-bottom: 80px;

}

/* =========================
CARDS
========================= */

.ls-card {

  position: relative;

  padding: 35px 28px;

  border-radius: 30px;

  background: rgba(122,138,123,0.85);

  backdrop-filter: blur(12px);

  color: #fff;

  min-height: 260px;

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  transition: all 0.4s ease;

  box-shadow:
    0 25px 70px rgba(0,0,0,0.08);

}

/* BORDE INTERNO */

.ls-card::after {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: 30px;

  border: 1px solid rgba(255,255,255,0.2);

  pointer-events: none;

}

/* =========================
HOVER CARD
========================= */

.ls-card:hover {

  transform: translateY(-8px) scale(1.02);

  background: rgba(122,138,123,0.95);

}

/* =========================
TÍTULO CARD
========================= */

.ls-card h4 {

  font-size: 20px;

  margin-bottom: 15px;

  color: #fff;

}

/* =========================
TEXTOS CARD
========================= */

.ls-card p {

  font-size: 14px;

  line-height: 1.6;

  opacity: 0.92;

}

/* =========================
LISTAS CARD
========================= */

.ls-card ul {

  padding-left: 18px;

}

.ls-card li {

  margin-bottom: 8px;

  font-size: 14px;

  line-height: 1.5;

}

/* =========================
FOOTER
========================= */

.ls-footer {

  text-align: center;

  max-width: 760px;

  margin: 0 auto;

  font-size: 16px;

  color: #777;

  line-height: 1.8;

}

/* =========================
RESPONSIVE TABLET
========================= */

@media (max-width: 1024px) {

  .ls-gallery {

    grid-template-columns: repeat(2, 1fr);

  }

  .ls-grid {

    grid-template-columns: repeat(2, 1fr);

  }

  .ls-gallery img {

    height: 260px;

  }

}

/* =========================
RESPONSIVE MOBILE
========================= */

@media (max-width: 768px) {

  .ls-distribucion {

    padding: 90px 20px;

  }

  .ls-title {

    margin-bottom: 60px;

  }

  .ls-intro {

    margin-bottom: 60px;

  }

  .ls-intro h3 {

    font-size: 28px;

  }

  .ls-intro p {

    font-size: 16px;

  }

  .ls-gallery {

    grid-template-columns: 1fr;

    gap: 20px;

    margin-bottom: 60px;

  }

  .ls-gallery img {

    height: 220px;

    border-radius: 22px;

  }

  .ls-grid {

    grid-template-columns: 1fr;

    gap: 20px;

  }

  .ls-card {

    min-height: auto;

    padding: 30px 24px;

  }

  .ls-footer {

    font-size: 15px;

    line-height: 1.7;

  }

}/* End custom CSS */