/* ============================================================
   LBS component CSS — decorative effects that free Elementor
   widgets can't express (::before dashes, layered backgrounds,
   gradient overlays). Attach the lbs-fx-* classes to elements
   via Elementor's free Advanced > CSS Classes field.
   Mirrors references/.../lib/styles.css. Load site-wide
   (Customizer > Additional CSS locally; child theme or a CSS
   plugin on the real site — Additional CSS is per-theme).
   ============================================================ */

/* Eyebrow: small cyan dash before tracked caps (.lbs-hero__eyebrow::before) */
.lbs-fx-eyebrow .elementor-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.lbs-fx-eyebrow .elementor-heading-title::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #00A2C3;
  flex-shrink: 0;
}

/* Hero background: faint diagonal hairline stripes over white (.lbs-hero) */
.lbs-fx-herobg {
  background-image: repeating-linear-gradient(
    120deg,
    transparent 0, transparent 38px,
    rgba(0, 162, 195, 0.05) 38px, rgba(0, 162, 195, 0.05) 40px
  );
}

/* Featured-cohort panel: radial cyan glow + diagonal hairlines (.lbs-hero__panel::before).
   Applied as a direct background-image layered over Elementor's navy background-color —
   NOT a ::before, because Elementor containers already use their own ::before/::after. */
.lbs-fx-panel {
  background-image:
    radial-gradient(120% 80% at 100% 0%, rgba(0, 162, 195, 0.45), transparent 55%),
    repeating-linear-gradient(
      120deg,
      transparent 0, transparent 42px,
      rgba(127, 208, 225, 0.10) 42px, rgba(127, 208, 225, 0.10) 44px
    );
}

/* ============================================================
   DESIGN TOKENS — subset needed by the component CSS below.
   Mirrors lib/colors_and_type.css :root. Custom-prop names are
   LBS-specific; safe to define at :root (no Elementor collision).
   ============================================================ */
:root {
  --lbs-navy: #1E2F60;      --lbs-navy-700: #182650;
  --lbs-navy-500: #2D4280;  --lbs-navy-300: #6675A8;
  --lbs-cyan: #00A2C3;      --lbs-cyan-700: #0084A0;  --lbs-cyan-300: #7FD0E1;
  --lbs-ink: #202020;       --lbs-ink-600: #3D3D3D;   --lbs-ink-400: #6B6B6B;
  --lbs-bone: #F4F6FB;      --lbs-mist: #E4E9F2;
  --lbs-paper: #FFFFFF;
  --lbs-slate-300: #BFC8DD;
  --accent: #00A2C3;        --accent-hover: #0084A0;  --accent-soft: #7FD0E1;
  --color-border: #E4E9F2;  --color-border-strong: #BFC8DD;
  --font-sans: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --shadow-md: 0 4px 16px rgba(30, 47, 96, 0.10);
  --color-success: #2F8F5C;
}

/* ============================================================
   CATEGORY STRIP — chips row (verbatim from styles.css .lbs-cats)
   ============================================================ */
.lbs-cats { background: #fff; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.lbs-cats__inner { max-width: 1440px; margin: 0 auto; padding: 18px 48px; display: flex; gap: 8px; flex-wrap: wrap; }
.lbs-cats__chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  background: var(--lbs-bone); border: 1px solid transparent; font-size: 13px;
  font-weight: 600; color: var(--lbs-ink); cursor: pointer;
  font-family: var(--font-sans); letter-spacing: 0; transition: all 160ms var(--ease-out);
}
.lbs-cats__chip:hover { background: #fff; border-color: var(--color-border-strong); color: var(--lbs-navy); }
.lbs-cats__chip[data-active="true"] { background: var(--lbs-navy); color: #fff; border-color: var(--lbs-navy); }
.lbs-cats__chip .count { font-size: 11px; font-weight: 700; color: var(--lbs-ink-400); letter-spacing: 0.05em; }
.lbs-cats__chip[data-active="true"] .count { color: rgba(255,255,255,0.7); }

/* ============================================================
   FILTER BAR (verbatim from styles.css .lbs-filters)
   ============================================================ */
.lbs-filters { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; margin-bottom: 32px; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.lbs-filters__group { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.lbs-filters__label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lbs-ink-400); font-weight: 700; margin-right: 4px; }
.lbs-filters__pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border: 1px solid var(--color-border-strong); background: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--lbs-ink-600); cursor: pointer; transition: all 140ms; font-family: var(--font-sans); }
.lbs-filters__pill:hover { border-color: var(--lbs-navy); color: var(--lbs-navy); }
.lbs-filters__pill[data-active="true"] { background: var(--lbs-navy); color: #fff; border-color: var(--lbs-navy); }
.lbs-filters__count { font-size: 12px; color: var(--lbs-ink-400); font-weight: 600; }
.lbs-filters__count b { color: var(--lbs-ink); font-weight: 700; }

/* ============================================================
   COURSE GRID + CARD (verbatim from styles.css)
   ============================================================ */
.lbs-grid { display: grid; gap: 24px; }
.lbs-grid--4 { grid-template-columns: repeat(4, 1fr); }
.lbs-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lbs-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1100px) { .lbs-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  { .lbs-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .lbs-grid--4, .lbs-grid--3 { grid-template-columns: 1fr; } }

.course-card { position: relative; background: #fff; border: 1px solid var(--color-border); display: flex; flex-direction: column; cursor: pointer; text-align: left; font-family: var(--font-sans); transition: box-shadow 240ms var(--ease-out), transform 240ms var(--ease-out), border-color 240ms; text-decoration: none; color: inherit; }
.course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--lbs-slate-300); }
.course-card__thumb { aspect-ratio: 16 / 10; position: relative; overflow: hidden; background: var(--lbs-navy); }
.course-card__thumb::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(120deg, transparent 0, transparent 24px, rgba(255,255,255,0.06) 24px, rgba(255,255,255,0.06) 26px); pointer-events: none; }
.course-card__thumb--photo::before { display: none; }
.course-card__thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 360ms var(--ease-out); }
.course-card:hover .course-card__thumb-img { transform: scale(1.03); }
.course-card__badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.95); color: var(--lbs-navy); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 10px; }
.course-card__badge--accent { background: var(--accent); color: #fff; }
.course-card__bookmark { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: rgba(255,255,255,0.95); border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; color: var(--lbs-navy); transition: background 160ms, color 160ms; }
.course-card__bookmark:hover { background: var(--lbs-navy); color: #fff; }
.course-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.course-card__category { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-hover); margin-bottom: 8px; }
.course-card__title { font-size: 17px; font-weight: 700; line-height: 1.25; color: var(--lbs-ink); margin: 0 0 8px; letter-spacing: -0.005em; text-wrap: balance; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.course-card__instructor { font-size: 12px; color: var(--lbs-ink-400); margin-bottom: 8px; }
.course-card__rating { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.course-card__rating .score { font-size: 14px; font-weight: 700; color: var(--lbs-ink); }
.course-card__rating .stars { display: inline-flex; gap: 1px; color: #C49000; font-size: 13px; line-height: 1; }
.course-card__rating .count { font-size: 12px; color: var(--lbs-ink-400); }
.course-card__meta { display: flex; flex-wrap: wrap; gap: 6px; font-size: 11px; color: var(--lbs-ink-400); letter-spacing: 0.06em; margin-bottom: 14px; }
.course-card__meta span + span::before { content: "·"; margin-right: 6px; color: var(--lbs-slate-300); }
.course-card__price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--color-border); }
.course-card__price { font-size: 22px; font-weight: 900; color: var(--lbs-navy); letter-spacing: -0.02em; line-height: 1; }
.course-card__price-old { font-size: 13px; color: var(--lbs-ink-400); text-decoration: line-through; margin-left: 8px; }
.course-card__add { width: 36px; height: 36px; background: var(--lbs-navy); color: #fff; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background 160ms, transform 160ms; }
.course-card__add:hover { background: var(--lbs-navy-700); }
/* Non-purchasable programme card (lecturer "Pedir proposta" extras) — same
   card shape, a CTA label instead of a price. */
.course-card--proposal { cursor: default; }
.course-card__proposal-cta { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-hover); }
.course-card--proposal:hover .course-card__proposal-cta { color: var(--lbs-navy); }

/* ============================================================
   EXECUTIVE PROGRAM CARD — navy band, institutional (no price)
   Verbatim from styles.css .exec-card*. Cards live inside an
   html widget wrapped in .lbs-section--navy so the navy
   descendant overrides apply (translucent card on navy band).
   ============================================================ */
.lbs-fx-eyebrow--navy .elementor-heading-title::before { background: var(--lbs-cyan-300); }

.exec-card {
  background: #fff; border: 1px solid rgba(255,255,255,0.18);
  padding: 32px 28px 28px; cursor: pointer; text-align: left;
  font-family: var(--font-sans);
  transition: transform 240ms var(--ease-out), border-color 240ms;
  display: flex; flex-direction: column; min-height: 380px;
  text-decoration: none; color: inherit;
}
.lbs-section--navy .exec-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); color: #fff; }
.lbs-section--navy .exec-card:hover { background: rgba(255,255,255,0.08); border-color: var(--accent); }
.exec-card__cat {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lbs-cyan-300); font-weight: 700; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.exec-card__cat::before { content: ""; display: inline-block; width: 24px; height: 2px; background: var(--lbs-cyan-300); }
.exec-card__title {
  font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: 0;
  line-height: 1.05; margin: 0 0 16px; color: #fff; text-wrap: balance;
}
.exec-card__desc { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.72); margin: 0 0 24px; }
.exec-card__facts {
  margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.18); margin-bottom: 20px;
}
.exec-card__facts .l { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 700; margin-bottom: 4px; display: block; }
.exec-card__facts .v { font-size: 13px; color: #fff; font-weight: 700; }
.exec-card__cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; display: inline-flex; align-items: center; gap: 8px; padding-top: 4px;
  border-bottom: 2px solid var(--accent); align-self: flex-start; padding-bottom: 4px;
  transition: gap 180ms;
}
.exec-card:hover .exec-card__cta { gap: 14px; }

/* ============================================================
   MISSION + STATS — verbatim from styles.css .lbs-mission /
   .lbs-stats (navy-default base). MissionBlock is the BONE
   variant: wrap the html in .lbs-section--bone so the light
   overrides below apply (mirrors the JSX inline overrides).
   ============================================================ */
.lbs-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.lbs-mission__col h3 {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lbs-cyan-300); font-weight: 700; margin: 0 0 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.lbs-mission__col h3::before { content: ""; display: inline-block; width: 24px; height: 2px; background: var(--lbs-cyan-300); }
.lbs-mission__col p { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.45; margin: 0; font-weight: 400; color: #fff; max-width: 40ch; }
.lbs-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18); border-bottom: 1px solid rgba(255,255,255,0.18); margin-top: 64px;
}
.lbs-stats__cell { padding: 40px 24px; border-right: 1px solid rgba(255,255,255,0.18); }
.lbs-stats__cell:last-child { border-right: none; }
.lbs-stats__num { font-size: clamp(40px, 4vw, 56px); font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: var(--lbs-cyan-300); margin: 0 0 12px; }
.lbs-stats__label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 700; }

/* Bone (light) variant overrides — mirror MissionBlock inline styles */
.lbs-section--bone .lbs-mission__col h3 { color: var(--accent-hover); }
.lbs-section--bone .lbs-mission__col p { color: var(--lbs-ink); }
.lbs-section--bone .lbs-stats { border-color: var(--color-border); }
.lbs-section--bone .lbs-stats__cell { border-color: var(--color-border); }
.lbs-section--bone .lbs-stats__num { color: var(--lbs-navy); }
.lbs-section--bone .lbs-stats__label { color: var(--lbs-ink-400); }

/* ============================================================
   TESTIMONIALS — white band, 3-col quote cards. Verbatim from
   styles.css .lbs-tests / .lbs-test (default white variant — no
   context-class wrapper needed). Big cyan opening quote = ::before
   on .lbs-test__quote (a WIDGET inner el, so ::before is safe).
   ============================================================ */
.lbs-tests { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lbs-test { background: #fff; border: 1px solid var(--color-border); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.lbs-test__quote { font-size: 17px; line-height: 1.5; color: var(--lbs-ink); margin: 0; font-weight: 400; letter-spacing: -0.005em; flex: 1; }
.lbs-test__quote::before { content: "\201C"; display: block; font-size: 56px; font-weight: 900; color: var(--accent); line-height: 0.8; margin-bottom: 4px; font-family: var(--font-sans); }
.lbs-test__who { display: flex; gap: 14px; align-items: center; padding-top: 16px; border-top: 1px solid var(--color-border); }
.lbs-test__avatar { width: 44px; height: 44px; background: var(--lbs-navy); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; letter-spacing: 0.04em; flex-shrink: 0; }
.lbs-test__name { font-size: 14px; font-weight: 700; color: var(--lbs-ink); margin-bottom: 2px; }
.lbs-test__role { font-size: 12px; color: var(--lbs-ink-400); letter-spacing: 0.02em; }

/* ============================================================
   PARTNERS — free image-carousel styled as the design's logo cells
   (.lbs-partners-carousel = _css_classes on the image-carousel widget)
   ============================================================ */
.lbs-partners-carousel .swiper-slide {
  background: #fff;
  border: 1px solid var(--color-border);
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  box-sizing: border-box;
}
.lbs-partners-carousel .swiper-slide figure,
.lbs-partners-carousel .swiper-slide-inner { margin: 0; }
.lbs-partners-carousel .swiper-slide img,
.lbs-partners-carousel .swiper-slide-image {
  width: auto !important;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(0.15);
  transition: filter 200ms;
}
.lbs-partners-carousel .swiper-slide:hover img { filter: grayscale(0); }
.lbs-partners-carousel .swiper-pagination-bullet-active { background: #00A2C3; }

/* ============================================================
   NEWS — editorial cards (verbatim from styles.css ~1235) + see-all
   ============================================================ */
.lbs-section__see-all {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lbs-navy);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  transition: gap 180ms;
  white-space: nowrap;
}
.lbs-section__see-all:hover { gap: 14px; }
.lbs-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lbs-news__item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  font-family: var(--font-sans);
}
.lbs-news__thumb {
  aspect-ratio: 16 / 10;
  background: var(--lbs-navy);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.lbs-news__thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 360ms var(--ease-out);
}
.lbs-news__item:hover .lbs-news__thumb-img { transform: scale(1.03); }
.lbs-news__thumb--fin { background: linear-gradient(135deg, #2D4280 0%, #1E2F60 100%); }
.lbs-news__thumb--est { background: linear-gradient(135deg, #1E2F60 0%, #00A2C3 100%); }
.lbs-news__thumb--lid { background: linear-gradient(135deg, #1E2F60 0%, #182650 100%); }
.lbs-news__thumb-cat {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--lbs-navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
}
.lbs-news__date {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lbs-ink-400);
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.lbs-news__date::after {
  content: "·";
  color: var(--lbs-slate-300);
}
.lbs-news__date span:last-child { color: var(--lbs-ink-400); }
.lbs-news__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--lbs-ink);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.lbs-news__item:hover .lbs-news__title { color: var(--lbs-navy); }
.lbs-news__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lbs-ink-600);
  margin: 0 0 16px;
}
.lbs-news__author {
  font-size: 12px;
  color: var(--lbs-ink-400);
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lbs-news__author-name b { color: var(--lbs-ink); font-weight: 700; }
.lbs-news__more {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lbs-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* ============================================================
   NEWS (dynamic) — Essential Addons Post Grid restyled to .lbs-news
   .lbs-news-dyn = _css_classes on the eael-post-grid widget
   ============================================================ */
.lbs-news-dyn .eael-grid-post,
.lbs-news-dyn .eael-grid-post-holder,
.lbs-news-dyn .eael-grid-post-holder-inner {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.lbs-news-dyn .eael-entry-media { margin-bottom: 20px; }
.lbs-news-dyn .eael-entry-thumbnail {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--lbs-navy);
}
.lbs-news-dyn .eael-entry-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 360ms var(--ease-out);
}
.lbs-news-dyn .eael-grid-post:hover .eael-entry-thumbnail img { transform: scale(1.03); }
.lbs-news-dyn .eael-entry-overlay { display: none; }   /* design has no hover-arrow overlay */
.lbs-news-dyn .eael-entry-wrapper { padding: 0; text-align: left; }
.lbs-news-dyn .eael-entry-title { margin: 0 0 12px; }
.lbs-news-dyn .eael-entry-title a {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--lbs-ink);
  text-decoration: none;
}
.lbs-news-dyn .eael-grid-post:hover .eael-entry-title a { color: var(--lbs-navy); }
.lbs-news-dyn .eael-grid-post-excerpt p,
.lbs-news-dyn .eael-grid-post-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lbs-ink-600);
  margin: 0 0 16px;
}
.lbs-news-dyn .eael-post-elements-readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lbs-navy);
  background: none;
  border: none;
  border-bottom: 1px solid var(--accent);
  padding: 0 0 2px;
  text-decoration: none;
}
.lbs-news-dyn .eael-entry-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.lbs-news-dyn .eael-author-avatar { display: none; }   /* design has no avatar */
.lbs-news-dyn .eael-entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--lbs-ink-400);
}
.lbs-news-dyn .eael-posted-by a { color: var(--lbs-ink); font-weight: 700; text-decoration: none; }
.lbs-news-dyn .eael-posted-on time { color: var(--lbs-ink-400); }

/* --- News dynamic: extra fidelity (category badge, gutter, footer) --------- */
/* 32px gutter (EA default is 10px); specificity beats EA's post-grid.css */
.lbs-news-dyn .eael-post-grid { margin: 0 -16px; }
.lbs-news-dyn .eael-post-grid .eael-grid-post { padding: 16px; }
/* category term → persistent bottom-left badge (EA hides it / shows on hover top-left) */
.lbs-news-dyn .post-carousel-categories {
  visibility: visible;
  opacity: 1;
  top: auto;
  bottom: 0;
  left: 0;
  width: auto;
  padding: 14px;
  transition: none;
}
.lbs-news-dyn .post-carousel-categories li { margin: 0; text-transform: none; }
.lbs-news-dyn .post-carousel-categories li::after { display: none; }
.lbs-news-dyn .post-carousel-categories li a {
  display: inline-block;
  background: rgba(255,255,255,0.95);
  color: var(--lbs-navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  line-height: 1;
  text-decoration: none;
}
/* footer meta on ONE row (EA stacks it column), no date icon, "por" prefix */
.lbs-news-dyn .eael-grid-post .eael-entry-footer .eael-entry-meta {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
}
.lbs-news-dyn .eael-posted-on::before { content: none !important; display: none !important; padding: 0 !important; }
.lbs-news-dyn .eael-posted-on time { text-transform: uppercase; letter-spacing: 0.1em; }
.lbs-news-dyn .eael-posted-by::before { content: "por "; color: var(--lbs-ink-400); }

/* ============================================================
   NEWSLETTER band (verbatim from styles.css .lbs-newsletter).
   Lives in an `html` widget as plain DOM, so the decorative
   ::before (radial glow + diagonal stripes) paints normally —
   unlike an Elementor container, which reserves ::before.
   Form is a static placeholder (Daniela wires the real one).
   ============================================================ */
.lbs-newsletter {
  background: var(--lbs-navy);
  color: #fff;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
.lbs-newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 0% 100%, rgba(0,162,195,0.30), transparent 55%),
    repeating-linear-gradient(120deg, transparent 0, transparent 60px, rgba(127,208,225,0.06) 60px, rgba(127,208,225,0.06) 62px);
  pointer-events: none;
}
.lbs-newsletter__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.lbs-newsletter__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--lbs-cyan-300);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.lbs-newsletter__eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--lbs-cyan-300);
}
.lbs-newsletter h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #fff;
  text-wrap: balance;
}
.lbs-newsletter p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 50ch;
}
.lbs-newsletter__form {
  display: grid;
  gap: 16px;
}
.lbs-newsletter__row {
  display: flex;
  align-items: stretch;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.lbs-newsletter__row input {
  flex: 1;
  border: none;
  outline: none;
  padding: 20px 22px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--lbs-ink);
  background: transparent;
}
.lbs-newsletter__row input::placeholder { color: var(--lbs-ink-400); }
.lbs-newsletter__row button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 180ms;
  white-space: nowrap;
}
.lbs-newsletter__row button:hover { background: var(--accent-hover); }
.lbs-newsletter__row[data-sent="true"] button { background: var(--color-success); }
.lbs-newsletter__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.lbs-newsletter__check input {
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--lbs-cyan-300);
}
.lbs-newsletter__check a {
  color: var(--lbs-cyan-300);
  text-decoration: underline;
  cursor: pointer;
}
.lbs-newsletter__sent {
  background: rgba(0,162,195,0.18);
  border: 1px solid var(--lbs-cyan-300);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.lbs-newsletter__sent svg { color: var(--lbs-cyan-300); flex-shrink: 0; }
.lbs-newsletter__sent strong { font-weight: 700; letter-spacing: 0.04em; }

/* ============================================================
   FOOTER (verbatim from styles.css .lbs-footer*).
   Plain DOM in an `html` widget. On the real site the footer is
   theme-rendered (Theme Builder is Pro) — this placeholder gives
   the homepage a complete footer + Daniela the exact markup.
   ============================================================ */
.lbs-footer {
  background: var(--lbs-navy);
  color: #fff;
  padding: 80px 48px 28px;
}
.lbs-footer__top {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
/* .lbs-footer ancestor raises specificity above Elementor frontend.min.css
   `.elementor img { height: auto }` (0,1,1), which otherwise shadows these
   image-height rules and bloats the logo + WayAcross mark. */
.lbs-footer .lbs-footer__logo { height: 44px; margin-bottom: 22px; display: block; }
.lbs-footer__brand-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 36ch;
  margin: 0 0 24px;
}
.lbs-footer__socials { display: flex; gap: 10px; }
.lbs-footer__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 160ms;
}
.lbs-footer__socials a:hover { background: rgba(255,255,255,0.12); border-color: var(--lbs-cyan-300); }
.lbs-footer__col h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lbs-cyan-300);
  margin: 0 0 18px;
  font-weight: 700;
}
.lbs-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lbs-footer__col a {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: color 160ms, border-color 160ms;
}
.lbs-footer__col a:hover { border-bottom-color: var(--lbs-cyan-300); color: #fff; }
.lbs-footer__legal {
  max-width: 1440px;
  margin: 32px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.lbs-footer__legal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.lbs-footer__legal img {
  max-height: 56px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.lbs-footer__bottom {
  max-width: 1440px;
  margin: 32px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  gap: 24px;
  flex-wrap: wrap;
}
.lbs-footer__copy {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.lbs-footer__by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 160ms;
  white-space: nowrap;
}
.lbs-footer__by:hover { color: #fff; }
.lbs-footer .lbs-footer__by img {
  height: 1em;
  width: auto;
  display: inline-block;
  opacity: 0.85;
  transition: opacity 160ms;
  vertical-align: middle;
  transform: translateY(-0.5px);
}
.lbs-footer__by:hover img { opacity: 1; }
.lbs-footer__copy-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.25);
}
.lbs-footer__policies { display: inline-flex; gap: 18px; }
.lbs-footer__policies a {
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 160ms;
  text-decoration: none;
}
.lbs-footer__policies a:hover { color: #fff; }

/* ============================================================
   HEADER — verbatim from styles.css (.lbs-header*, lines ~28-180).
   Mounted as a GLOBAL HFE type_header template (html widget). Plain DOM
   so sticky bar + bg-blur paint natively. The scoped .lbs-header
   .lbs-header__logo height fix at the end beats Elementor's
   .elementor img{height:auto} (0,1,1) — same rule as the footer logo.
   ============================================================ */
.lbs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.lbs-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.lbs-header__logo { height: 44px; cursor: pointer; display: block; }

.lbs-header__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--color-border-strong);
  background: var(--lbs-paper);
  max-width: 460px;
  width: 100%;
  justify-self: center;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.lbs-header__search:focus-within {
  border-color: var(--lbs-navy);
  box-shadow: 0 0 0 3px rgba(0, 162, 195, 0.18);
}
.lbs-header__search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--lbs-ink);
  background: transparent;
}
.lbs-header__search input::placeholder {
  color: var(--lbs-ink-400);
}
.lbs-header__search svg {
  flex-shrink: 0;
  color: var(--lbs-ink-400);
}

.lbs-header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lbs-header__nav {
  display: flex;
  gap: 22px;
}
.lbs-header__nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lbs-ink);
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
  white-space: nowrap;
}
.lbs-header__nav a:hover { color: var(--lbs-navy); border-bottom-color: var(--accent); }
.lbs-header__nav a[data-active="true"] { color: var(--lbs-navy); border-bottom-color: var(--accent); }

.lbs-header__cart {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  color: var(--lbs-ink);
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.lbs-header__cart:hover { background: var(--lbs-bone); border-color: var(--color-border-strong); }
.lbs-header__cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.lbs-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lbs-navy);
  color: #fff;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 180ms var(--ease-out);
  font-family: var(--font-sans);
  white-space: nowrap;
}
.lbs-header__cta:hover { background: var(--lbs-navy-700); }

.lbs-header__secondary {
  background: var(--lbs-bone);
  border-bottom: 1px solid var(--color-border);
}
.lbs-header__secondary-inner {
  display: flex;
  gap: 24px;
  padding: 10px 48px;
  max-width: 1440px;
  margin: 0 auto;
  font-size: 12px;
}
.lbs-header__secondary a {
  color: var(--lbs-ink-600);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  padding: 2px 0;
  transition: color 160ms, border-color 160ms;
}
.lbs-header__secondary a:hover {
  color: var(--lbs-navy);
  border-bottom-color: var(--accent);
}

/* Header responsive: hide search below 900px (from styles.css ~2808) */
@media (max-width: 900px) {
  .lbs-header__search { display: none; }
}

/* img-specificity fix: beat .elementor img{height:auto} (0,1,1) */
.lbs-header .lbs-header__logo { height: 44px; width: auto; }

/* ============================================================
   HEADER v2 — NATIVE WIDGETS (no html block). Namespace .lbs-hd2*.
   Every widget-skin rule is prefixed with the .lbs-hd2 ancestor so it
   reaches (0,3,x) and beats Elementor's per-element/kit CSS (0,2,x),
   which otherwise wins on source order (Elementor inline CSS loads after
   the Customizer Additional CSS). Sticky uses .lbs-hd2.e-con to beat
   .elementor-element{position:relative} (0,1,0).
   ============================================================ */
.lbs-hd2.e-con { position: sticky; top: 0; z-index: 50; }

/* bands (full-bleed bg) */
.lbs-hd2 .lbs-hd2-secbar { background: var(--lbs-bone); border-bottom: 1px solid var(--color-border); width: 100%; }
.lbs-hd2 .lbs-hd2-mainbar { background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-border); width: 100%; }

/* secondary: contact icon-list (phone/email) */
.lbs-hd2 .lbs-hd2-contact a,
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-text { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--lbs-ink-600); }
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-item:hover a,
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-item:hover .elementor-icon-list-text { color: var(--lbs-navy); }
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-icon svg,
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-icon i { fill: var(--lbs-ink-400); color: var(--lbs-ink-400); width: 13px; height: 13px; font-size: 12px; }
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-item:hover .elementor-icon-list-icon svg { fill: var(--accent); }

/* secondary: DGERT (no wrap) + login group */
.lbs-hd2 .lbs-hd2-secright { gap: 24px; }
.lbs-hd2 .lbs-hd2-dgert .elementor-heading-title { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--lbs-ink-400); margin: 0; white-space: nowrap; }

/* login trigger: strip Elementor button chrome -> plain link */
.lbs-hd2 .lbs-hd2-login-trigger .elementor-button { background: transparent; color: var(--lbs-ink-600); padding: 2px 0; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; border: none; border-radius: 0; box-shadow: none; fill: currentColor; }
.lbs-hd2 .lbs-hd2-login-trigger .elementor-button:hover { background: transparent; color: var(--lbs-navy); }
.lbs-hd2 .lbs-hd2-login-trigger .elementor-button-content-wrapper { gap: 6px; align-items: center; }
.lbs-hd2 .lbs-hd2-login-trigger .elementor-button-icon svg { width: 13px; height: 13px; }

/* login: CSS hover/focus dropdown holding the real EA Login/Register form */
.lbs-hd2 .lbs-hd2-login { position: relative; }
/* the login container is content_width:full (so the dropdown anchors to it); stop it
   stretching across the top-bar's right half, which left the button floating mid-bar.
   Shrink to its trigger so secright's flex-end packs DGERT + login flush to the right. */
.lbs-hd2 .lbs-hd2-secright .lbs-hd2-login { width: auto; flex: 0 0 auto; }
.lbs-hd2 .lbs-hd2-login .lbs-hd2-login__drop { position: absolute; top: calc(100% + 10px); right: 0; min-width: 340px; background: #fff; border: 1px solid var(--color-border); box-shadow: var(--shadow-md); padding: 22px; z-index: 60; display: none; text-align: left; }
.lbs-hd2 .lbs-hd2-login:hover .lbs-hd2-login__drop,
.lbs-hd2 .lbs-hd2-login:focus-within .lbs-hd2-login__drop { display: block; }

/* main: logo (beat .elementor img{height:auto} (0,1,1); zero figure chrome) */
.lbs-hd2 .lbs-hd2-logo img { height: 44px; width: auto; display: block; }
.lbs-hd2 .lbs-hd2-logo,
.lbs-hd2 .lbs-hd2-logo .elementor-widget-container,
.lbs-hd2 .lbs-hd2-logo figure,
.lbs-hd2 .lbs-hd2-logo .hfe-site-logo,
.lbs-hd2 .lbs-hd2-logo a { margin: 0; padding: 0; line-height: 0; }

/* main: HFE search as an ICON button (layout=icon) sitting beside the cart.
   The icon layout renders .hfe-search-icon-toggle (a magnifier <i> + an input
   that expands on click). We box the toggle to match .lbs-hd2-cart exactly and
   drop the expanding input as an overlay so it never reflows the bar. */
.lbs-hd2 .lbs-hd2-search { width: auto; max-width: none; }
.lbs-hd2 .lbs-hd2-search .elementor-widget-container,
.lbs-hd2 .lbs-hd2-search .hfe-search-button-wrapper { width: auto; }
.lbs-hd2 .lbs-hd2-search .hfe-search-icon-toggle { position: relative; width: 44px !important; height: 44px !important; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); border-radius: 0; background: transparent; color: var(--lbs-ink); transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out); cursor: pointer; }
.lbs-hd2 .lbs-hd2-search .hfe-search-icon-toggle:hover { background: var(--lbs-bone); border-color: var(--color-border-strong); }
/* expanding field becomes an absolute dropdown under the icon.
   !important throughout: HFE's widget CSS styles the focused input with
   higher-specificity rules (grey #ededed bg, no border) and an inline
   padding-right for its (hidden) magnifier icon. */
.lbs-hd2 .lbs-hd2-search .hfe-search-icon-toggle input[type="search"] { position: absolute; right: 0; top: calc(100% + 10px); width: 0; max-width: 78vw; padding: 0 !important; border: 1px solid var(--color-border-strong) !important; background: var(--lbs-paper) !important; font-family: var(--font-sans); font-size: 14px; color: var(--lbs-ink) !important; height: 44px !important; border-radius: 0 !important; opacity: 0; pointer-events: none; transition: width 200ms var(--ease-out), opacity 200ms var(--ease-out), padding 200ms var(--ease-out); }
.lbs-hd2 .lbs-hd2-search.hfe-input-focus .hfe-search-icon-toggle input[type="search"],
.lbs-hd2 .lbs-hd2-search .hfe-input-focus .hfe-search-icon-toggle input[type="search"] { width: 300px !important; padding: 0 16px !important; opacity: 1; pointer-events: auto; }
.lbs-hd2 .lbs-hd2-search .hfe-search-icon-toggle input[type="search"]::placeholder { color: var(--lbs-ink-400); }

/* main: HFE nav menu — tracked-caps links + cyan hover underline */
.lbs-hd2 .lbs-hd2-nav a.hfe-menu-item { font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lbs-ink); padding: 6px 0; border-bottom: 2px solid transparent; transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out); }
.lbs-hd2 .lbs-hd2-nav a.hfe-menu-item:hover { color: var(--lbs-navy); border-bottom-color: var(--accent); }
.lbs-hd2 .lbs-hd2-nav .hfe-nav-menu { flex-wrap: nowrap; }
.lbs-hd2 .lbs-hd2-nav .hfe-nav-menu__item { margin: 0 10px; white-space: nowrap; }
.lbs-hd2 .lbs-hd2-nav a.hfe-menu-item { white-space: nowrap; }

/* main: HFE cart — sharp 44px square; recolor HFE's [data-counter]::after
   bubble cyan and hide it when the cart is empty (design shows no 0-badge). */
.lbs-hd2 .lbs-hd2-cart .hfe-cart-container { width: 44px; height: 44px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); border-radius: 0; background: transparent; color: var(--lbs-ink); box-shadow: none; transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out); position: relative; }
.lbs-hd2 .lbs-hd2-cart .hfe-cart-container:hover { background: var(--lbs-bone); border-color: var(--color-border-strong); }
.lbs-hd2 .lbs-hd2-cart .hfe-subtotal { display: none; }
.lbs-hd2 .lbs-hd2-cart .elementor-button-icon { display: inline-flex; align-items: center; justify-content: center; color: var(--lbs-ink); font-size: 20px; }
.lbs-hd2 .lbs-hd2-cart .elementor-button-icon[data-counter]::before,
.lbs-hd2 .lbs-hd2-cart .elementor-button-icon[data-counter]::after { background: var(--accent); color: #fff; min-width: 20px; height: 20px; line-height: 16px; padding: 0 5px; font-size: 11px; font-weight: 700; border: 2px solid #fff; border-radius: 9999px; top: -8px; right: -10px; }
.lbs-hd2 .lbs-hd2-cart .elementor-button-icon[data-counter="0"]::before,
.lbs-hd2 .lbs-hd2-cart .elementor-button-icon[data-counter="0"]::after { display: none; }

/* main: Candidatar CTA */
.lbs-hd2 .lbs-hd2-cta .elementor-button { background: var(--lbs-navy); color: #fff; padding: 11px 18px; font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: none; border-radius: 0; box-shadow: none; fill: #fff; }
.lbs-hd2 .lbs-hd2-cta .elementor-button:hover { background: var(--lbs-navy-700); color: #fff; }
.lbs-hd2 .lbs-hd2-cta .elementor-button-content-wrapper { gap: 8px; align-items: center; }
.lbs-hd2 .lbs-hd2-cta .elementor-button-icon svg { width: 14px; height: 14px; }

@media (max-width: 900px) { .lbs-hd2 .lbs-hd2-search { display: none; } }


/* ============================================================
   HEADER v2 — LUCIDE ICONS (override Font Awesome via CSS mask).
   Elementor free ships only Font Awesome, so the native widgets
   render FA <svg>; we hide it and paint the matching Lucide glyph
   as a mask-image on a ::before (color via background-color). Same
   stroke language as the design's lib/components.jsx Icon set.
   ============================================================ */
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-icon svg { display:none; }
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-icon { color: var(--lbs-ink-400); display:inline-flex; align-items:center; }
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-item:hover .elementor-icon-list-icon { color: var(--accent); }
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-icon::before { content:''; display:inline-block; width:14px; height:14px; background-color: currentColor; -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat; -webkit-mask-position:center; mask-position:center; -webkit-mask-size:contain; mask-size:contain; }
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-item:nth-child(1) .elementor-icon-list-icon::before { -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6%2019.79%2019.79%200%200%201-3.07-8.67A2%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72%2012.84%2012.84%200%200%200%20.7%202.81%202%202%200%200%201-.45%202.11L8.09%209.91a16%2016%200%200%200%206%206l1.27-1.27a2%202%200%200%201%202.11-.45%2012.84%2012.84%200%200%200%202.81.7A2%202%200%200%201%2022%2016.92z%27%2F%3E%3C%2Fsvg%3E"); mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6%2019.79%2019.79%200%200%201-3.07-8.67A2%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72%2012.84%2012.84%200%200%200%20.7%202.81%202%202%200%200%201-.45%202.11L8.09%209.91a16%2016%200%200%200%206%206l1.27-1.27a2%202%200%200%201%202.11-.45%2012.84%2012.84%200%200%200%202.81.7A2%202%200%200%201%2022%2016.92z%27%2F%3E%3C%2Fsvg%3E"); }
.lbs-hd2 .lbs-hd2-contact .elementor-icon-list-item:nth-child(2) .elementor-icon-list-icon::before { -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20width%3D%2720%27%20height%3D%2716%27%20x%3D%272%27%20y%3D%274%27%20rx%3D%272%27%2F%3E%3Cpath%20d%3D%27m22%207-8.97%205.7a1.94%201.94%200%200%201-2.06%200L2%207%27%2F%3E%3C%2Fsvg%3E"); mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20width%3D%2720%27%20height%3D%2716%27%20x%3D%272%27%20y%3D%274%27%20rx%3D%272%27%2F%3E%3Cpath%20d%3D%27m22%207-8.97%205.7a1.94%201.94%200%200%201-2.06%200L2%207%27%2F%3E%3C%2Fsvg%3E"); }
.lbs-hd2 .lbs-hd2-login-trigger .elementor-button-icon svg { display:none; }
.lbs-hd2 .lbs-hd2-login-trigger .elementor-button-icon::before { content:''; display:inline-block; width:13px; height:13px; background-color: currentColor; -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat; -webkit-mask-position:center; mask-position:center; -webkit-mask-size:contain; mask-size:contain; -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M19%2021v-2a4%204%200%200%200-4-4H9a4%204%200%200%200-4%204v2%27%2F%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%277%27%20r%3D%274%27%2F%3E%3C%2Fsvg%3E"); mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M19%2021v-2a4%204%200%200%200-4-4H9a4%204%200%200%200-4%204v2%27%2F%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%277%27%20r%3D%274%27%2F%3E%3C%2Fsvg%3E"); }
.lbs-hd2 .lbs-hd2-cta .elementor-button-icon svg { display:none; }
.lbs-hd2 .lbs-hd2-cta .elementor-button-icon::before { content:''; display:inline-block; width:15px; height:15px; background-color:#fff; -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat; -webkit-mask-position:center; mask-position:center; -webkit-mask-size:contain; mask-size:contain; -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M5%2012h14%27%2F%3E%3Cpath%20d%3D%27m12%205%207%207-7%207%27%2F%3E%3C%2Fsvg%3E"); mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M5%2012h14%27%2F%3E%3Cpath%20d%3D%27m12%205%207%207-7%207%27%2F%3E%3C%2Fsvg%3E"); }
.lbs-hd2 .lbs-hd2-search .hfe-search-icon-toggle i.fa-search { display:none; }
.lbs-hd2 .lbs-hd2-search .hfe-search-icon-toggle::after { content:''; display:inline-block; width:20px; height:20px; flex-shrink:0; background-color: var(--lbs-ink); pointer-events:none; -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat; -webkit-mask-position:center; mask-position:center; -webkit-mask-size:contain; mask-size:contain; -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2711%27%20cy%3D%2711%27%20r%3D%278%27%2F%3E%3Cpath%20d%3D%27m21%2021-4.3-4.3%27%2F%3E%3C%2Fsvg%3E"); mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2711%27%20cy%3D%2711%27%20r%3D%278%27%2F%3E%3Cpath%20d%3D%27m21%2021-4.3-4.3%27%2F%3E%3C%2Fsvg%3E"); }
.lbs-hd2 .lbs-hd2-cart .elementor-button-icon i.eicon::before { content:''; }
.lbs-hd2 .lbs-hd2-cart .elementor-button-icon i.eicon { display:inline-block; width:20px; height:20px; background-color: var(--lbs-ink); -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat; -webkit-mask-position:center; mask-position:center; -webkit-mask-size:contain; mask-size:contain; -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%278%27%20cy%3D%2721%27%20r%3D%271%27%2F%3E%3Ccircle%20cx%3D%2719%27%20cy%3D%2721%27%20r%3D%271%27%2F%3E%3Cpath%20d%3D%27M2.05%202.05h2l2.66%2012.42a2%202%200%200%200%202%201.58h9.78a2%202%200%200%200%201.95-1.57l1.65-7.43H5.12%27%2F%3E%3C%2Fsvg%3E"); mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%278%27%20cy%3D%2721%27%20r%3D%271%27%2F%3E%3Ccircle%20cx%3D%2719%27%20cy%3D%2721%27%20r%3D%271%27%2F%3E%3Cpath%20d%3D%27M2.05%202.05h2l2.66%2012.42a2%202%200%200%200%202%201.58h9.78a2%202%200%200%200%201.95-1.57l1.65-7.43H5.12%27%2F%3E%3C%2Fsvg%3E"); }


/* ============================================================
   QUEM SOMOS (about / sobre) PAGE
   Helpers for the interior page hero + about sections. Layout,
   backgrounds, padding and typography are driven by native
   Elementor controls in the page itself; these rules only cover
   what Elementor free can't express: layered navy gradients,
   the eyebrow dash, the breadcrumb, the pull-quote highlight,
   the partner-logo cells, and Lucide line-icons inside icon-box
   widgets (Elementor ships only Font Awesome). Ports lib/pages.css
   + lib/styles.css values; reuses the :root tokens above.
   ============================================================ */

/* Navy hero / CTA — radial glow + diagonal stripe overlay */
.lbs-hero-fx, .lbs-cta-fx { position: relative; overflow: hidden; }
.lbs-hero-fx::before, .lbs-cta-fx::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.lbs-hero-fx::before {
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(0,162,195,0.32), transparent 55%),
    repeating-linear-gradient(120deg, transparent 0, transparent 58px, rgba(127,208,225,0.07) 58px, rgba(127,208,225,0.07) 60px);
}
.lbs-cta-fx::before {
  background:
    radial-gradient(55% 90% at 100% 100%, rgba(0,162,195,0.28), transparent 55%),
    repeating-linear-gradient(120deg, transparent 0, transparent 58px, rgba(127,208,225,0.06) 58px, rgba(127,208,225,0.06) 60px);
}
/* keep real content above the overlay */
.lbs-hero-fx > .e-con-inner, .lbs-cta-fx > .e-con-inner,
.lbs-hero-fx > .elementor-element, .lbs-cta-fx > .elementor-element { position: relative; z-index: 1; }

/* Eyebrow: small uppercase label preceded by a 28x2 dash (color = text color) */
.lbs-eyebrow .elementor-heading-title { display: inline-flex; align-items: center; gap: 12px; }
.lbs-eyebrow .elementor-heading-title::before {
  content: ""; flex: 0 0 auto; width: 28px; height: 2px; background: currentColor; display: inline-block;
}

/* Breadcrumb (html widget on the navy hero) */
.lbs-crumb-w { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.6); }
.lbs-crumb-w a { color: rgba(255,255,255,0.82); text-decoration: none; cursor: pointer; }
.lbs-crumb-w a:hover { color: #fff; }
.lbs-crumb-w .sep { color: rgba(255,255,255,0.35); margin: 0 9px; }
.lbs-crumb-w .curr { color: var(--lbs-cyan-300); }

/* Philosophy pull-quote: translucent accent highlight behind the emphasised phrase */
.lbs-pull-quote em {
  font-style: normal; color: var(--lbs-navy);
  background-image: linear-gradient(transparent 58%, rgba(0,162,195,0.28) 58%, rgba(0,162,195,0.28) 88%, transparent 88%);
}

/* Partner-logo cell (container wrapper around a native image widget) */
.lbs-partlogo { border: 1px solid var(--color-border); background: #fff; min-height: 110px; }
.lbs-partlogo img { max-height: 64px; width: auto; object-fit: contain; filter: grayscale(0.15); transition: filter 200ms; }
.lbs-partlogo:hover img { filter: grayscale(0); }

/* Objective / governance cards: a container wrapper (the white box) around a
   native icon-box widget. Left-aligned layout, a 48x48 navy icon square, and
   the Font Awesome glyph swapped for the design's Lucide line-icon via a mask. */
.lbs-objcard {
  background: #fff; border: 1px solid var(--color-border); padding: 32px 28px;
  transition: box-shadow 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.lbs-objcard:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.lbs-objcard .elementor-icon-box-wrapper { text-align: left !important; }
.lbs-objcard .elementor-icon-box-icon { margin-bottom: 20px; }
.lbs-objcard .elementor-icon-box-icon .elementor-icon {
  width: 48px; height: 48px; background: var(--lbs-navy);
  display: inline-flex; align-items: center; justify-content: center; padding: 0; border: 0;
}
.lbs-objcard .elementor-icon-box-icon .elementor-icon i,
.lbs-objcard .elementor-icon-box-icon .elementor-icon svg { display: none !important; }
.lbs-objcard .elementor-icon-box-icon .elementor-icon::before {
  content: ""; width: 22px; height: 22px; background-color: #fff;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.lbs-objcard .elementor-icon-box-title { font-size: 19px; font-weight: 700; color: var(--lbs-ink); margin: 0 0 10px; letter-spacing: -0.01em; }
.lbs-objcard .elementor-icon-box-title a, .lbs-objcard .elementor-icon-box-title span { color: inherit; }
.lbs-objcard .elementor-icon-box-description { font-size: 14px; line-height: 1.6; color: var(--lbs-ink-600); margin: 0; }

/* Per-card Lucide glyphs (order matches the page widgets) */
.lbs-cards-obj > :nth-child(1) .elementor-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M4%204h12a4%204%200%200%201%204%204v12H8a4%204%200%200%201-4-4z%20M8%204v16%27%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M4%204h12a4%204%200%200%201%204%204v12H8a4%204%200%200%201-4-4z%20M8%204v16%27%2F%3E%3C%2Fsvg%3E"); }
.lbs-cards-obj > :nth-child(2) .elementor-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%279%27%20r%3D%276%27%2F%3E%3Cpath%20d%3D%27m9%2014-2%207%205-3%205%203-2-7%27%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%279%27%20r%3D%276%27%2F%3E%3Cpath%20d%3D%27m9%2014-2%207%205-3%205%203-2-7%27%2F%3E%3C%2Fsvg%3E"); }
.lbs-cards-obj > :nth-child(3) .elementor-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%279%27%2F%3E%3Cpath%20d%3D%27M3%2012h18M12%203a14%2014%200%200%201%200%2018M12%203a14%2014%200%200%200%200%2018%27%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%279%27%2F%3E%3Cpath%20d%3D%27M3%2012h18M12%203a14%2014%200%200%201%200%2018M12%203a14%2014%200%200%200%200%2018%27%2F%3E%3C%2Fsvg%3E"); }
.lbs-cards-gov > :nth-child(1) .elementor-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%279%27%20cy%3D%278%27%20r%3D%274%27%2F%3E%3Cpath%20d%3D%27M2%2021c0-4%203-6%207-6s7%202%207%206M16%204a4%204%200%200%201%200%208M22%2021c0-3-2-5-5-6%27%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%279%27%20cy%3D%278%27%20r%3D%274%27%2F%3E%3Cpath%20d%3D%27M2%2021c0-4%203-6%207-6s7%202%207%206M16%204a4%204%200%200%201%200%208M22%2021c0-3-2-5-5-6%27%2F%3E%3C%2Fsvg%3E"); }
.lbs-cards-gov > :nth-child(2) .elementor-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%279%27%20r%3D%276%27%2F%3E%3Cpath%20d%3D%27m9%2014-2%207%205-3%205%203-2-7%27%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%279%27%20r%3D%276%27%2F%3E%3Cpath%20d%3D%27m9%2014-2%207%205-3%205%203-2-7%27%2F%3E%3C%2Fsvg%3E"); }
.lbs-cards-gov > :nth-child(3) .elementor-icon::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27m5%2012%205%205L20%207%27%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.9%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27m5%2012%205%205L20%207%27%2F%3E%3C%2Fsvg%3E"); }

/* Responsive: below 768 Elementor drops container --width (cols stack); just
   tidy the stat dividers so a stacked cell has no stray right border. */
@media (max-width: 767px) {
  .lbs-statcell { border-right: none !important; }
}

/* Stats strip dividers (mission/vision) */
.lbs-statgrid { border-top: 1px solid rgba(255,255,255,0.18); border-bottom: 1px solid rgba(255,255,255,0.18); }
.lbs-statcell { border-right: 1px solid rgba(255,255,255,0.18); }
.lbs-statcell:last-child { border-right: none; }

/* ============================================================
   CONTACTOS (contactos) PAGE
   Ported from references/.../lib/pages.css (.ct-*). The info block + map are
   html widgets; the form is a Contact Form 7 form embedded via the Elementor
   shortcode widget, so this block also re-skins CF7's control markup to the
   design's .ct-field / .ct-form__row grid.
   ============================================================ */

/* The hero is native Elementor widgets (each sets Barlow); these bespoke html /
   CF7 blocks inherit the page default (system stack), so pin Barlow explicitly
   to mirror the design's `body { font-family: var(--font-sans) }`. */
.ct-info, .ct-form, .ct-form .wpcf7 { font-family: var(--font-sans); }

/* ---- Contact info column (html widget) ---- */
.ct-info__block { margin-bottom: 32px; }
.ct-info__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-hover); margin: 0 0 10px; display: inline-flex; align-items: center; gap: 10px;
}
.ct-info__label svg { color: var(--lbs-navy); }
.ct-info__block p { font-size: 15px; line-height: 1.62; color: var(--lbs-ink); margin: 0; }
.ct-info__block a {
  color: var(--lbs-navy); text-decoration: none;
  border-bottom: 1px solid var(--accent-soft); transition: border-color 160ms;
}
.ct-info__block a:hover { border-bottom-color: var(--accent); }
.ct-note { font-size: 12px; color: var(--lbs-ink-400); }
.ct-info__divider { height: 1px; background: var(--color-border); margin: 0 0 32px; }
.ct-socials { display: flex; gap: 10px; }
.ct-socials a {
  width: 40px; height: 40px; border: 1px solid var(--color-border-strong); color: var(--lbs-navy);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.ct-socials a:hover { background: var(--lbs-navy); color: #fff; border-color: var(--lbs-navy); }

/* ---- Form card (container) + CF7 reset ---- */
.ct-form { background: #fff; border: 1px solid var(--color-border); padding: 40px; }
.ct-form .elementor-widget-container,
.ct-form .wpcf7 { margin: 0; }
.ct-form .wpcf7 .screen-reader-response { position: absolute; clip: rect(1px,1px,1px,1px); height: 1px; width: 1px; overflow: hidden; }
.ct-form__head {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: var(--lbs-navy); margin: 0 0 24px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border);
}
.ct-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ct-form__row--full { grid-template-columns: 1fr; }
.ct-field { display: flex; flex-direction: column; gap: 7px; }
.ct-field--full { grid-column: 1 / -1; }
.ct-field label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lbs-ink-600); }
/* CF7 wraps each control in an inline span — force it to fill the field */
.ct-field .wpcf7-form-control-wrap { display: block; width: 100%; }
.ct-field input, .ct-field select, .ct-field textarea {
  font-family: var(--font-sans); font-size: 14px; color: var(--lbs-ink); background: var(--lbs-paper);
  border: 1px solid var(--color-border-strong); padding: 12px 14px; outline: none; width: 100%; box-sizing: border-box;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus {
  border-color: var(--lbs-navy); box-shadow: 0 0 0 3px rgba(0,162,195,0.16);
}
.ct-field textarea { resize: vertical; min-height: 120px; }

/* Consent (CF7 acceptance) */
.ct-form__consent { font-size: 12px; line-height: 1.5; color: var(--lbs-ink-600); margin: 4px 0 22px; }
.ct-form__consent .wpcf7-list-item { margin: 0; }
.ct-form__consent label { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; cursor: pointer; }
.ct-form__consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--lbs-navy); flex-shrink: 0; }

/* Submit (CF7) — site primary, block, lg */
.ct-form input[type="submit"] {
  font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 14px; color: #fff; background: var(--lbs-navy); border: 1px solid transparent;
  padding: 16px 28px; width: 100%; cursor: pointer; transition: background 180ms var(--ease-out);
  appearance: none; -webkit-appearance: none; border-radius: 0;
}
.ct-form input[type="submit"]:hover { background: var(--lbs-navy-700); }
.ct-form .wpcf7-spinner { margin: 0 0 0 12px; }
.ct-form .wpcf7-response-output { margin: 18px 0 0; font-size: 13px; border-width: 1px; }

/* ---- Map placeholder (static, design-faithful; Daniela swaps real iframe into .ct-map-embed later) ---- */
.ct-map { position: relative; height: 360px; border: 1px solid var(--color-border); overflow: hidden; display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(120deg, var(--lbs-navy) 0, var(--lbs-navy) 60px, #1a2a55 60px, #1a2a55 62px); }
.ct-map::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 50%, rgba(0,162,195,0.25), transparent 60%); }
.ct-map__pin { position: relative; z-index: 1; text-align: center; color: #fff; }
.ct-map__pin svg { color: var(--lbs-cyan-300); margin-bottom: 10px; }
.ct-map__pin div { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.ct-map__pin span { font-size: 12px; color: rgba(255,255,255,0.7); }

/* ---- Map embed (native Elementor Google Maps widget — iframe embed, no API key) ---- */
.ct-map-embed { border: 1px solid var(--color-border); line-height: 0; }
.ct-map-embed .elementor-custom-embed,
.ct-map-embed iframe { display: block; width: 100%; border: 0; }

@media (max-width: 767px) {
  .ct-form { padding: 28px; }
  .ct-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   CURSOS (catalog archive) PAGE — hero + type bar + toolbar
   Ported from design pages.css (.lbs-pagehero / .lbs-typebar / .cat-*)
   ============================================================ */
.lbs-pagehero { position: relative; background: var(--lbs-navy); color: #fff; overflow: hidden; padding: 36px 48px 56px; }
.lbs-pagehero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(0,162,195,0.32), transparent 55%),
    repeating-linear-gradient(120deg, transparent 0, transparent 58px, rgba(127,208,225,0.07) 58px, rgba(127,208,225,0.07) 60px);
}
.lbs-pagehero__inner { position: relative; z-index: 1; max-width: 1440px; margin: 0 auto; }
.lbs-crumb { display: flex; align-items: center; gap: 9px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 34px; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.lbs-crumb a { color: rgba(255,255,255,0.82); cursor: pointer; border-bottom: 1px solid transparent; padding-bottom: 1px; transition: border-color 160ms var(--ease-out), color 160ms var(--ease-out); }
.lbs-crumb a:hover { color: #fff; border-bottom-color: var(--lbs-cyan-300); }
.lbs-crumb__sep { color: rgba(255,255,255,0.35); font-size: 13px; }
.lbs-crumb__curr { color: var(--lbs-cyan-300); }
.lbs-pagehero__grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; }
.lbs-pagehero__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lbs-cyan-300); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.lbs-pagehero__eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--lbs-cyan-300); }
.lbs-pagehero__title { font-size: clamp(38px, 4.4vw, 60px); line-height: 1; font-weight: 900; letter-spacing: 0; text-transform: uppercase; margin: 0; color: #fff; text-wrap: balance; }
.lbs-pagehero__lead { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.55; color: rgba(255,255,255,0.82); margin: 18px 0 0; max-width: 60ch; }
/* Right-side meta cluster in the hero (ported from pages.css 101-121) */
.lbs-pagehero__meta { display: flex; gap: 36px; padding-bottom: 6px; }
.lbs-pagehero__meta-cell .n { display: block; font-size: clamp(28px, 2.6vw, 40px); font-weight: 900; letter-spacing: -0.02em; line-height: 1; color: #fff; margin-bottom: 8px; }
.lbs-pagehero__meta-cell .l { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* Navy CTA band — closes every interior page (ported from pages.css 246-307) */
.lbs-cta { background: var(--lbs-navy); color: #fff; padding: 72px 48px; position: relative; overflow: hidden; }
.lbs-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 90% at 100% 100%, rgba(0,162,195,0.28), transparent 55%), repeating-linear-gradient(120deg, transparent 0, transparent 58px, rgba(127,208,225,0.06) 58px, rgba(127,208,225,0.06) 60px); pointer-events: none; }
.lbs-cta__inner { position: relative; max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr auto; gap: 48px; align-items: center; }
.lbs-cta__eyebrow { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--lbs-cyan-300); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.lbs-cta__eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--lbs-cyan-300); }
.lbs-cta h2 { font-size: clamp(26px, 2.6vw, 38px); font-weight: 900; letter-spacing: 0; text-transform: uppercase; line-height: 1.05; margin: 0 0 14px; color: #fff; text-wrap: balance; max-width: 24ch; }
.lbs-cta p { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.78); margin: 0; max-width: 52ch; }
.lbs-cta__actions { display: flex; flex-direction: column; gap: 12px; }

/* Interior-page body section gutter (ported from styles.css 551-555). The
   eventos/notícias white rows live in a plain .lbs-section, so they need their
   own 48px gutter + 1440 cap once the wrapping Elementor container is padding:0
   (which lets the navy .lbs-pagehero/.lbs-cta bands bleed edge-to-edge). Scoped
   off .lbs-section--navy/--bone — on the homepage those get bg+padding from
   their Elementor container, so they must NOT also pick up this padding.
   :where() keeps the :not() exclusions at zero specificity — the bare :not()
   chain scored (0,3,0) and out-ranked legitimate page-scoped overrides like
   lbs-courses' .cd-page__body .lbs-section { padding: 40px 0 }. */
.lbs-section:where(:not(.lbs-section--navy):not(.lbs-section--bone)) { padding: 96px 48px; }
.lbs-section__container { max-width: 1440px; margin: 0 auto; }

.lbs-typebar { background: #fff; border-bottom: 1px solid var(--color-border); position: sticky; top: 0; z-index: 30; }
.lbs-typebar__inner { max-width: 1440px; margin: 0 auto; padding: 0 48px; display: flex; gap: 4px; flex-wrap: wrap; }
.lbs-typebar__tab { appearance: none; background: none; border: none; border-bottom: 3px solid transparent; padding: 18px 18px 15px; font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lbs-ink-600); cursor: pointer; transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out); white-space: nowrap; text-decoration: none; }
.lbs-typebar__tab:hover { color: var(--lbs-navy); }
.lbs-typebar__tab[data-active="true"] { color: var(--lbs-navy); border-bottom-color: var(--accent); }
.lbs-typebar__tab .c { font-size: 11px; color: var(--lbs-ink-400); margin-left: 6px; }
.lbs-typebar__tab[data-active="true"] .c { color: var(--accent-hover); }

.lbs-modality { display: inline-flex; align-items: center; gap: 10px; margin-left: auto; padding: 10px 0; }
.lbs-modality select, .lbs-modality .orderby { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--lbs-navy); background: #fff; border: 1px solid var(--color-border-strong); padding: 9px 14px; cursor: pointer; }

.cat-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 32px; padding-bottom: 18px; border-bottom: 1px solid var(--color-border); flex-wrap: wrap; }
.cat-toolbar__count { font-size: 14px; color: var(--lbs-ink-600); }
.cat-toolbar__count b { color: var(--lbs-navy); font-weight: 800; }
.cat-empty { padding: 72px 0; text-align: center; color: var(--lbs-ink-400); font-size: 15px; }

/* Formação Executiva exec-cards render on the bone catalog
   section (no .lbs-section--navy ancestor), so the navy override at
   `.lbs-section--navy .exec-card` never applies — the base .exec-card is a
   white background with white text (invisible). Give the catalog exec-cards a
   self-contained solid-navy treatment. */
.cat-page .exec-card { background: var(--lbs-navy); border-color: rgba(255,255,255,0.14); }
.cat-page .exec-card:hover { background: #182650; border-color: var(--accent); transform: translateY(-2px); }

@media (max-width: 768px) {
  .lbs-pagehero { padding-left: 24px; padding-right: 24px; }
  .lbs-typebar__inner { padding-left: 24px; padding-right: 24px; }
  .lbs-pagehero__grid { grid-template-columns: 1fr; gap: 24px; }
  .lbs-pagehero__meta { margin-top: 24px; }
  .lbs-cta { padding-left: 24px; padding-right: 24px; }
  .lbs-cta__inner { grid-template-columns: 1fr; gap: 28px; }
}


/* ============================================================
   Interior pages — Notícias + Eventos
   Ported verbatim from references/.../lib/pages.css (news + events).
   .lbs-pagehero/.lbs-crumb/.lbs-news__* already live above (cursos/home).
   ============================================================ */
:root{ --lbs-slate-300:#BFC8DD; --lbs-slate-500:#8090B0; --lbs-slate-700:#4A5575; }

.news-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.news-filter__chip {
  appearance: none;
  font-family: var(--font-sans);
  background: var(--lbs-bone);
  border: 1px solid transparent;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lbs-ink-600);
  cursor: pointer;
  transition: all 160ms var(--ease-out);
}
.news-filter__chip:hover { color: var(--lbs-navy); border-color: var(--color-border-strong); background: #fff; }
.news-filter__chip[data-active="true"] {
  background: var(--lbs-navy);
  color: #fff;
  border-color: var(--lbs-navy);
}

/* Featured (lead) article */
.news-lead {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 1px solid var(--color-border);
  background: #fff;
  margin-bottom: 48px;
  cursor: pointer;
  transition: box-shadow 240ms var(--ease-out);
}
.news-lead:hover { box-shadow: var(--shadow-md); }
.news-lead__thumb {
  position: relative;
  min-height: 380px;
  background: var(--lbs-navy);
  overflow: hidden;
}
.news-lead__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}
.news-lead:hover .news-lead__thumb img { transform: scale(1.03); }
.news-lead__cat {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.news-lead__body {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-lead__date {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lbs-ink-400);
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.news-lead__date::after { content: "·"; color: var(--lbs-slate-300); }
.news-lead__title {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--lbs-ink);
  margin: 0 0 16px;
  text-wrap: balance;
}
.news-lead:hover .news-lead__title { color: var(--lbs-navy); }
.news-lead__excerpt {
  font-size: 15px;
  line-height: 1.62;
  color: var(--lbs-ink-600);
  margin: 0 0 24px;
}
.news-lead__more {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lbs-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap 180ms var(--ease-out);
}
.news-lead:hover .news-lead__more { gap: 14px; }

/* News pagination */
.news-pager {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.ev-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}
.ev-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: background 160ms var(--ease-out);
}
.ev-row:hover { background: var(--lbs-bone); }
.ev-row[data-past="true"] { opacity: 0.62; }
.ev-date {
  text-align: center;
  border: 1px solid var(--color-border-strong);
  padding: 12px 6px;
  background: #fff;
}
.ev-date .d {
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: var(--lbs-navy);
  letter-spacing: -0.02em;
}
.ev-date .m {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lbs-ink-400);
  margin-top: 6px;
}
.ev-main { min-width: 0; }
.ev-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ev-type__dot {
  width: 7px; height: 7px; border-radius: 9999px;
  background: var(--accent);
  display: inline-block;
}
.ev-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--lbs-ink);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.ev-row:hover .ev-title { color: var(--lbs-navy); }
.ev-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--lbs-ink-600);
}
.ev-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ev-meta svg { color: var(--lbs-slate-500); flex-shrink: 0; }
/* .ev-cta layout lives once with the row-CTA rules near the end of this file. */
.ev-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 9999px;
  background: var(--lbs-bone);
  color: var(--lbs-slate-700);
  border: 1px solid var(--color-border);
}
.ev-pill[data-tone="open"] { background: rgba(0,162,195,0.12); color: var(--accent-hover); border-color: var(--accent-soft); }
.ev-pill[data-tone="soon"] { background: var(--lbs-bone); color: var(--lbs-ink-600); }
.ev-pill[data-tone="past"] { background: var(--lbs-mist); color: var(--lbs-slate-500); }

/* Featured event card (hero of eventos) */
.ev-feature {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--accent);
  padding: 36px 40px;
  margin-bottom: 56px;
}
.ev-feature__date {
  text-align: center;
}
.ev-feature__date .d {
  display: block;
  font-size: 64px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--lbs-navy);
  letter-spacing: -0.03em;
}
.ev-feature__date .m {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-top: 10px;
}
.ev-feature__date .y {
  display: block;
  font-size: 12px;
  color: var(--lbs-ink-400);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.ev-feature h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  margin: 10px 0 12px;
  color: var(--lbs-ink);
  letter-spacing: -0.01em;
}
.ev-feature p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lbs-ink-600);
  margin: 0 0 16px;
  max-width: 52ch;
}

/* Tone tabs on eventos (Próximos / Anteriores) */
.ev-tabs {
  display: inline-flex;
  border: 1px solid var(--color-border-strong);
  margin-bottom: 8px;
}
.ev-tabs button {
  appearance: none;
  background: #fff;
  border: none;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lbs-ink-600);
  cursor: pointer;
}
.ev-tabs button + button { border-left: 1px solid var(--color-border-strong); }
.ev-tabs button[data-active="true"] { background: var(--lbs-navy); color: #fff; }

/* Site-wide .lbs-btn button system (ported from styles.css; used by Eventos/Notícias) */
.lbs-btn {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 180ms var(--ease-out);
  font-size: 13px;
  padding: 13px 22px;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.lbs-btn--primary { background: var(--lbs-navy); color: #fff; }
/* :focus mirrors :hover everywhere below — Hello Elementor's reset.css paints
   button:focus #c36 (pinkish) and would otherwise win after a click */
.lbs-btn--primary:hover, .lbs-btn--primary:focus { background: var(--lbs-navy-700); }
.lbs-btn--accent { background: var(--accent); color: #fff; }
.lbs-btn--accent:hover, .lbs-btn--accent:focus { background: var(--accent-hover); }
.lbs-btn--outline { background: transparent; color: var(--lbs-navy); border-color: var(--lbs-navy); }
.lbs-btn--outline:hover, .lbs-btn--outline:focus { background: var(--lbs-navy); color: #fff; }
.lbs-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.lbs-btn--ghost-light:hover, .lbs-btn--ghost-light:focus { background: #fff; color: var(--lbs-navy); border-color: #fff; }
.lbs-btn--lg { padding: 16px 28px; font-size: 14px; }
.lbs-btn--block { width: 100%; justify-content: center; }

/* The [hidden] attribute must always win (JS tab/filter toggles rely on it; .ev-list/.lbs-news__item set display) */
[hidden]{display:none!important;}

/* Event row CTA button (sits beside the status pill when an event has a link) */
.ev-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.ev-rowbtn { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.ev-rowbtn svg { width: 14px; height: 14px; }
@media (max-width: 640px) {
  .ev-cta { flex-direction: row; align-items: center; flex-wrap: wrap; }
}

/* ============================================================
   CANDIDATURAS (candidaturas) PAGE
   Ported from references/.../lib/pages.css (.cand-*). The hero is the shared
   .lbs-pagehero band (above); the aside is an html widget; the application form
   is a Contact Form 7 form in the Elementor shortcode widget, so this block also
   re-skins CF7's radio markup into the design's segmented control. The .ct-form/
   .ct-field/.ct-form__row/consent/submit rules are reused from CONTACTOS above.
   ============================================================ */

/* The aside + CF7 form inherit the page default stack — pin Barlow like .ct-*. */
.cand-aside, .cand-form { font-family: var(--font-sans); }

/* 2-col layout: a real CSS grid (the design's method) so the form stays in the
   right column at every width. Elementor flex + % widths + a px gap only fit
   above ~1900px and wrapped the form below the aside on laptops; grid fr units
   account for the gap. Forced over Elementor's .e-con flex; children sized by
   the tracks. The sticky aside works in grid even with align-items:start
   (a grid item's containing block spans the full row height). */
.cand-grid { display: grid !important; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: start; }
.cand-grid > .e-con, .cand-grid > .elementor-element { width: auto !important; }
.cand-aside { position: sticky; top: 104px; }

/* ---- Steps ("Como funciona") ---- */
.cand-steps { margin-bottom: 32px; }
.cand-step {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  padding: 16px 0; border-top: 1px solid var(--color-border);
}
.cand-step:last-child { border-bottom: 1px solid var(--color-border); }
.cand-step__n {
  font-family: var(--font-sans); font-size: 13px; font-weight: 800;
  letter-spacing: 0.08em; color: var(--lbs-cyan-700); padding-top: 1px;
}
.cand-step__t { font-size: 15px; font-weight: 700; color: var(--lbs-ink); margin-bottom: 4px; }
.cand-step__d { font-size: 13.5px; line-height: 1.55; color: var(--lbs-ink-600); margin: 0; }

/* ---- Help card ---- */
.cand-help {
  background: var(--lbs-bone); border: 1px solid var(--color-border);
  padding: 24px; margin-bottom: 20px;
}
.cand-help__label, .cand-note__label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lbs-navy); margin-bottom: 12px;
}
.cand-help__label svg, .cand-note__label svg { color: var(--lbs-navy); }
.cand-help p { font-size: 13.5px; line-height: 1.55; color: var(--lbs-ink-600); margin: 0 0 14px; }
.cand-help__line {
  display: block; font-size: 14px; font-weight: 600; color: var(--lbs-navy);
  text-decoration: none; padding: 3px 0;
}
.cand-help__line:hover { color: var(--lbs-cyan-700); }

/* ---- Data-protection note ---- */
.cand-note { padding: 4px 2px; }
.cand-note p { font-size: 12.5px; line-height: 1.6; color: var(--lbs-ink-400); margin: 0 0 10px; }

/* ---- Form card (shares .ct-form bg/border; tighter top padding) ---- */
.cand-form { padding: 36px 40px 40px; }
.cand-fieldset { margin-bottom: 30px; }
.cand-fieldset:last-of-type { margin-bottom: 22px; }
.cand-legend {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lbs-navy); padding-bottom: 14px; margin-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}
.cand-legend__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; background: var(--lbs-navy); color: #fff;
  font-size: 12px; letter-spacing: 0;
}
.cand-row--3 { grid-template-columns: 1.4fr 0.9fr 1fr; }
.cand-opt { font-weight: 500; color: var(--lbs-ink-400); letter-spacing: 0; text-transform: none; }
.cand-form__foot { font-size: 12.5px; color: var(--lbs-ink-400); text-align: center; margin: 14px 0 0; }

/* ---- Segmented radio group (re-skins CF7's [radio] list markup) ---- */
.cand-radios { display: block; }
.cand-radios .wpcf7-radio { display: flex; border: 1px solid var(--color-border-strong); }
.cand-radios .wpcf7-list-item { flex: 1; margin: 0; position: relative; }
.cand-radios .wpcf7-list-item:not(:last-child) { border-right: 1px solid var(--color-border-strong); }
.cand-radios .wpcf7-list-item > label { display: block; margin: 0; cursor: pointer; }
.cand-radios input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.cand-radios .wpcf7-list-item-label {
  display: block; text-align: center; font-size: 13.5px; font-weight: 600;
  color: var(--lbs-ink-600); padding: 11px 8px;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
}
.cand-radios label:hover .wpcf7-list-item-label { background: rgba(0,162,195,0.06); }
.cand-radios input[type="radio"]:checked + .wpcf7-list-item-label { background: var(--lbs-navy); color: #fff; }
.cand-radios input[type="radio"]:focus-visible + .wpcf7-list-item-label { box-shadow: inset 0 0 0 2px var(--lbs-cyan); }

/* ---- CSS honeypot (bots fill it; humans never see it) ---- */
.cand-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- On-brand CF7 feedback states ---- */
.cand-form .wpcf7-response-output { border-radius: 0; }
.cand-form form.sent .wpcf7-response-output { border-color: var(--lbs-navy); color: var(--lbs-navy); background: rgba(30,47,96,0.05); }
.cand-form .wpcf7-not-valid-tip { color: #B3261E; font-size: 12px; margin-top: 4px; }
.cand-form .wpcf7-not-valid { border-color: #B3261E !important; }

@media (max-width: 900px) {
  .cand-grid { grid-template-columns: 1fr; }
  .cand-aside { position: static; }
  .cand-form { padding: 28px 22px 30px; }
  .cand-row--3 { grid-template-columns: 1fr; }
}

/* ============================================================
   HFE HEADER NAV — fit 7 items beside the logo + search/cart/CTA
   With the Candidaturas item added, the horizontal menu overflowed its
   column and overlapped the search icon. The header's boxed row has no
   max-width cap, so changing the columns' flex grow/shrink/justify makes the
   whole row balloon to thousands of px — the only safe lever is the menu's
   own footprint. Tighter link padding + a slightly smaller font keep all
   seven items within their column, clear of the right-side widgets, and the
   menu stays centred by the header's existing layout. Scoped to the
   horizontal layout so the mobile hamburger dropdown is untouched.
   ============================================================ */
.hfe-nav-menu__layout-horizontal a.hfe-menu-item {
  padding-left: 7px !important;
  padding-right: 7px !important;
  font-size: 12px !important;
}

/* ============================================================
   INSTITUCIONAL PAGES — Associados / Protocolos / Parcerias científicas
   These pages are built from NATIVE Elementor widgets (no html widget,
   per request — Daniela can edit everything in the editor). The classes
   below carry only what free Elementor can't express on containers:
   CSS-grid layouts (with the cand-grid `!important` pattern beating
   .e-con's flex), hover states, and the responsive collapses from the
   design's institucional.css. All colors/typography/padding live in the
   widgets' own settings (see wp-dev/build-institucional-pages.php).
   ============================================================ */

/* Founders logo strip (associados) — design .lbs-partners, 5-up */
.e-con.inst-partners { display: grid !important; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.inst-partners > .e-con { width: auto !important; }
.inst-partners img { max-height: 64px; width: auto; object-fit: contain; filter: grayscale(0.15); transition: filter 200ms; }
.inst-partners .e-con:hover img { filter: grayscale(0); }

/* Associates name-plate grid — design .assoc-grid, 5-up */
.e-con.inst-assoc-grid { display: grid !important; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.inst-assoc-grid > .e-con { width: auto !important; }
.e-con.inst-plate { transition: box-shadow 200ms var(--ease-out), border-color 200ms var(--ease-out); }
.e-con.inst-plate:hover { box-shadow: var(--shadow-md); border-color: #C7D0E2; }

/* Protocol cards — design .proto-grid / .proto-card (1fr auto inner grid) */
.e-con.inst-proto-grid { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.inst-proto-grid > .e-con { width: auto !important; }
.e-con.inst-proto-card { display: grid !important; grid-template-columns: 1fr auto; align-items: center; transition: box-shadow 200ms var(--ease-out), border-color 200ms var(--ease-out); }
.inst-proto-card > .e-con { width: auto !important; }
.e-con.inst-proto-card:hover { box-shadow: 0 2px 8px rgba(30, 47, 96, 0.08); border-color: #C7D0E2; }
.inst-proto-card .inst-proto-pct { min-width: 64px; }

/* Scientific-partner cards — design .scip-grid / .scip-card (132px plate) */
.e-con.inst-scip-grid { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.inst-scip-grid > .e-con { width: auto !important; }
.e-con.inst-scip-card { display: grid !important; grid-template-columns: 132px 1fr; align-items: stretch; transition: box-shadow 240ms var(--ease-out), transform 240ms var(--ease-out); }
.inst-scip-card > .e-con { width: auto !important; }
.e-con.inst-scip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
/* Plate logo (fetched from the partner's official site) — max-height composes
   with Elementor's .elementor img{height:auto} so no specificity bump needed. */
.inst-scip-plate img { max-width: 100%; max-height: 76px; width: auto; object-fit: contain; }

@media (max-width: 980px) {
  .e-con.inst-proto-grid, .e-con.inst-scip-grid { grid-template-columns: 1fr; }
  .e-con.inst-assoc-grid { grid-template-columns: repeat(3, 1fr); }
  .e-con.inst-partners { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .e-con.inst-assoc-grid { grid-template-columns: repeat(2, 1fr); }
  .e-con.inst-partners { grid-template-columns: repeat(2, 1fr); }
  .e-con.inst-scip-card { grid-template-columns: 1fr; }
  .inst-scip-card > .e-con:first-child { border-right: none !important; border-bottom: 1px solid var(--color-border) !important; }
}

/* Hero meta cluster (institucional pages) — cells size to content in the
   flex row (a nested .e-con otherwise defaults to width:100% and stacks). */
.inst-hero-meta > .e-con { width: auto !important; }

/* ============================================================
   LEGAL PAGES — Termos / Privacidade / Cookies
   Native-Elementor pages (wp-dev/build-legal-pages.php). The design's
   single legal.html with JS tabs becomes three pages cross-linked by a
   tab row. CSS carries the grid layout, sticky aside, link styling and
   the square accent list bullets; colors/typography/spacing live in the
   widgets' own settings.
   ============================================================ */

/* Tab row — a text-editor whose anchors are the tabs (design .legal-tab) */
.legal-tabs { border-bottom: 1px solid var(--color-border); }
.legal-tabs p { margin: 0; }
.legal-tabs a {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--lbs-ink-400);
  padding: 14px 4px 16px; margin-right: 32px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.legal-tabs a:hover { color: var(--lbs-navy); }
.legal-tabs a[aria-current="page"], .legal-tabs a.is-active { color: var(--lbs-navy); border-bottom-color: var(--accent); }

/* Aside + article two-column grid (design .legal-layout) */
.e-con.legal-layout { display: grid !important; grid-template-columns: 240px minmax(0, 1fr); gap: 56px; align-items: start; }
.legal-layout > .e-con { width: auto !important; min-width: 0; }
.e-con.legal-aside { position: sticky; top: 96px; }
.e-con.legal-article { max-width: 720px; }

/* Table of contents — a text-editor of block anchors (design .legal-toc) */
.legal-toc p { margin: 0; }
.legal-toc a {
  display: block;
  font-size: 13px; line-height: 1.4;
  color: var(--lbs-ink-600);
  text-decoration: none;
  padding: 7px 0 7px 14px; margin-bottom: 2px;
  border-left: 2px solid var(--lbs-mist);
  transition: color 160ms, border-color 160ms;
}
.legal-toc a:hover { color: var(--lbs-navy); border-left-color: var(--accent); }

/* Section bodies — paragraph rhythm + square accent bullets (design .legal-sec) */
.legal-body p { margin: 0 0 14px; }
.legal-body p:last-child { margin-bottom: 0; }
.legal-body ul { margin: 0 0 14px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.legal-body ul:last-child { margin-bottom: 0; }
.legal-body li { position: relative; padding-left: 20px; }
.legal-body li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--accent); }

/* TOC anchor targets sit under the fixed header when jumped to */
.legal-anchor { scroll-margin-top: 96px; }
html { scroll-behavior: smooth; }

@media (max-width: 980px) {
  .e-con.legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .e-con.legal-aside { position: static; }
}
