/**
 * Marconcrete Theme - Main stylesheet
 * Tema para MarConcreteServices, contratista de concreto residencial y comercial.
 */


  /* ===== BASE ===== */
  #page.site { overflow-x: clip; }

  :root {
    --ef-black: #1a1a1a;
    --ef-blue: #1E436A;
    --ef-blue-dark: #16334F;
    --ef-teal: #34c1bb;
    --ef-teal-light: #4FE3DC;
    --ef-teal-rgb: 52, 193, 187;
    --ef-teal-light-rgb: 79, 227, 220;
    --ef-dark: #0A0D12;
    --ef-dark-2: #05070B;
    --ef-reviews-bg: #F0F2F5;
    --ef-newsletter-bg: #F0F2F5;
    --ef-newsletter-link: #1E436A;
    --ef-white: #ffffff;
    --ef-grey: #666666;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
  margin: 0;
    font-family: 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--ef-black);
    background: var(--ef-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  ul, ol { list-style: none; }
  button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
  .ef-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
  .ef-section { padding: 72px 0; }
  h1, h2, h3 { font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
  h2 { font-size: 26px; }
  h3 { font-size: 16px; }
  p { color: var(--ef-grey); }

  /* ===== 1. ANNOUNCEMENT MARQUEE ===== */
  .ef-announcement {
    background: var(--ef-blue);
    overflow: hidden;
  }
  .ef-announcement__track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: ef-marquee 28s linear infinite;
  }
  .ef-announcement:hover .ef-announcement__track { animation-play-state: paused; }
  .ef-announcement__text {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--ef-white);
  }
  @keyframes ef-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ===== 2. BRAND SELECTOR (mobile only) ===== */
  .ef-brand-selector { display: none; background: var(--ef-white); border-bottom: 1px solid #eee; }
  .ef-brand-selector__inner {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
  }
  .ef-brand-selector__item {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    color: #999;
  }
  .ef-brand-selector__item--active { color: var(--ef-black); background: #f0f0f0; }

  /* ===== 3. HEADER ===== */
  .ef-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ef-white);
    border-bottom: 1px solid #eee;
  }
  .ef-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 24px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .ef-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--ef-black);
    text-transform: none;
    flex-shrink: 0;
  }
  .ef-header__logo img { max-height: 56px; width: auto; display: block; }
  .ef-header__logo svg { flex-shrink: 0; }
  .ef-header__nav { display: flex; align-items: center; gap: 28px; }
  .ef-header__nav-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ef-black);
  }
  .ef-header__nav-link:hover { color: var(--ef-blue); }
  .ef-header__sale { color: var(--ef-blue); }
  .ef-header__icons { display: flex; align-items: center; gap: 18px; }
  .ef-header__icon { display: inline-flex; color: var(--ef-black); }
  .ef-header__icon:hover { color: var(--ef-blue); }

  /* ===== LANGUAGE SWITCHER ===== */
  .ef-lang { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; letter-spacing: 0.08em; position: relative; }
  .ef-lang__toggle { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer; color: inherit; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; padding: 0; }
  .ef-lang__toggle:hover { color: var(--ef-blue); }
  .ef-lang__menu { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid #e4e9ec; box-shadow: 0 12px 30px rgba(20,40,60,.12); list-style: none; padding: 6px 0; margin: 0; min-width: 120px; z-index: 1000; opacity: 0; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease; pointer-events: none; }
  .ef-lang__menu:not([hidden]) { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .ef-lang__menu a { display: flex; align-items: center; gap: 8px; padding: 8px 14px; font-size: 12px; font-weight: 700; color: var(--ef-black); text-decoration: none; }
  .ef-lang__menu a:hover { background: #f5f7f8; color: var(--ef-blue); }
  .ef-lang__menu a.is-active { font-weight: 800; color: var(--ef-blue); }
  .ef-header__burger { display: none; }
  .ef-header__mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--ef-white);
    border-top: 1px solid #eee;
    padding: 12px 24px 20px;
  }
  .ef-header__mobile-nav.is-open { display: flex; }
  .ef-header__mobile-link {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  /* ===== 3b. SUB-BAR ===== */
  .ef-subbar { background: var(--ef-blue-dark); text-align: center; padding: 10px 16px; }
  .ef-subbar__link {
    color: var(--ef-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
  }
  .ef-subbar__link:hover { text-decoration: underline; }

  /* ===== 4. HERO ===== */
  .ef-hero { display: grid; grid-template-columns: 1fr 1fr; }
  .ef-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
  }
  .ef-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: 64px;
  }
  .ef-hero__title { font-size: clamp(30px, 4vw, 52px); line-height: 1.05; letter-spacing: 0.04em; }
  .ef-hero__text { max-width: 46ch; font-size: 16px; color: #555; }
  .ef-hero__btn {
    background: var(--ef-blue);
    color: var(--ef-white);
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 0;
  }
  .ef-hero__btn:hover { background: var(--ef-blue-dark); }

  /* ===== 5. TILES GRID ===== */
  .ef-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 72px 24px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .ef-tiles__tile { text-align: center; }
  .ef-tiles__media { background: #f5f7f8; overflow: hidden; }
  .ef-tiles__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .ef-tiles__tile:hover img { transform: scale(1.04); }
  .ef-tiles__title {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1em;
  }
  .ef-tiles__tile:hover .ef-tiles__title { color: var(--ef-blue); }

  /* ===== 6. MISSION ===== */
  .ef-mission { background: var(--ef-white); }
  .ef-mission__heading {
    text-align: center;
    margin-bottom: 48px;
    font-size: 26px;
    text-transform: lowercase;
  }
  .ef-mission__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .ef-mission__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .ef-mission__icon { color: var(--ef-blue); }
  .ef-mission__item h3 { font-size: 15px; letter-spacing: 0.1em; }

  /* ===== 7 & 8. CAROUSELS ===== */
  .ef-carousel { position: relative; }
  .ef-carousel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 32px;
  }
  .ef-carousel__head h2 {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .ef-carousel__head h2::before {
    content: "";
    width: 42px;
    height: 1px;
    background: #ccc;
    flex-shrink: 0;
  }
  .ef-carousel__head-link:hover { color: var(--ef-blue); }
  .ef-carousel__controls { display: flex; gap: 8px; }
  .ef-carousel__arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--ef-black);
    font-size: 26px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: var(--ef-white);
  }
  .ef-carousel__arrow:hover { background: var(--ef-black); color: var(--ef-white); }
.ef-carousel__viewport {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-padding-inline: 24px;
  padding: 0 24px 8px;
}
.ef-carousel__viewport::-webkit-scrollbar { display: none; }
@media (max-width: 768px) {
  .ef-carousel__viewport { padding-left: 20px; scroll-padding-inline: 20px; }
}

  .ef-product {
    flex: 0 0 calc(20% - 16px);
    scroll-snap-align: start;
    text-align: left;
  }
  .ef-product__media { position: relative; background: #f5f7f8; }
  .ef-product__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
  .ef-product__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 18px 18px;
    background: var(--ef-blue);
    color: var(--ef-white);
    min-height: 132px;
  }
  .ef-product__icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: var(--ef-white);
    flex-shrink: 0;
  }
  .ef-product__title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ef-white);
    line-height: 1.35;
  }
  .ef-product__title a { color: var(--ef-white); text-decoration: none; }
  .ef-product__title a:hover { text-decoration: underline; }
  .ef-product__learn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ef-white);
    text-decoration: none;
    transition: gap 0.2s ease;
  }
  .ef-product__learn:hover { gap: 10px; text-decoration: underline; }
  .ef-product__learn::after { content: ""; }
  .ef-carousel__cta {
    display: inline-block;
    margin-top: 32px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    border-bottom: 2px solid var(--ef-black);
    padding-bottom: 4px;
  }
  .ef-carousel__cta:hover { color: var(--ef-blue); border-color: var(--ef-blue); }

  /* ===== 9. CLUBS ===== */
  .ef-clubs { background: #fafbfc; }
  .ef-clubs__heading { text-align: center; margin-bottom: 16px; }
  .ef-clubs__intro {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto 48px;
    font-size: 15px;
  }
  .ef-clubs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .ef-clubs__tile { text-align: center; }
  .ef-clubs__media { overflow: hidden; background: #eef2f4; }
  .ef-clubs__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .ef-clubs__tile:hover img { transform: scale(1.03); }
  .ef-clubs__tile-title { margin-top: 14px; font-size: 16px; letter-spacing: 0.14em; }
  .ef-clubs__cta {
    display: block;
    width: fit-content;
    margin: 48px auto 0;
    background: #000;
    color: var(--ef-white);
    padding: 16px 48px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    border-radius: 0;
  }
  .ef-clubs__cta:hover { background: var(--ef-blue); }

  /* ===== LEGACY SECTIONS (unused) ===== */
  .ef-ambassador__heading { text-align: center; margin-bottom: 48px; }
  .ef-ambassador__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .ef-ambassador__steps { display: flex; flex-direction: column; gap: 28px; }
  .ef-ambassador__step { display: flex; align-items: flex-start; gap: 16px; }
  .ef-ambassador__num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--ef-blue);
    color: var(--ef-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
  }
  .ef-ambassador__step-text { color: #444; font-size: 15px; padding-top: 10px; }
  .ef-ambassador__step-text strong { color: var(--ef-black); font-weight: 800; letter-spacing: 0.06em; }
  .ef-ambassador__actions { display: flex; align-items: center; gap: 24px; margin-top: 12px; }
  .ef-ambassador__cta {
    background: #000;
    color: var(--ef-white);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    border-radius: 0;
  }
  .ef-ambassador__cta:hover { background: var(--ef-blue); }
  .ef-ambassador__more {
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid var(--ef-black);
    padding-bottom: 2px;
  }
  .ef-ambassador__more:hover { color: var(--ef-blue); border-color: var(--ef-blue); }

  /* Instagram mockup */
  .ef-post {
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    background: var(--ef-white);
  }
  .ef-post__head { display: flex; align-items: center; gap: 10px; padding: 12px 16px; }
  .ef-post__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ef-white);
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
  }
  .ef-post__handle { font-size: 13px; font-weight: 800; }
  .ef-post__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
  .ef-post__body {
  margin: 0; padding: 14px 16px 20px; }
  .ef-post__icons { display: flex; gap: 14px; margin-bottom: 10px; }
  .ef-post__caption { font-size: 13px; color: #444; }
  .ef-post__caption strong { color: var(--ef-black); }

  /* ===== 11. REVIEWS ===== */
  .ef-reviews { background: var(--ef-reviews-bg); }
  .ef-reviews__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    margin-bottom: 40px;
  }
  .ef-reviews__heading::before,
  .ef-reviews__heading::after {
    content: "";
    flex: 1;
    max-width: 90px;
    height: 1px;
    background: #ccc;
  }
  .ef-review {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    background: var(--ef-white);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 0;
  }
  .ef-review__stars { color: #111; font-size: 16px; letter-spacing: 3px; }
  .ef-review__text { color: #333; font-size: 14px; flex-grow: 1; }
  .ef-review__author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--ef-black);
  }
  .ef-review__check { color: var(--ef-teal); flex-shrink: 0; }

  /* ===== 12. INSTAGRAM GRID ===== */
  .ef-instagram__heading { text-align: center; margin-bottom: 40px; }
  .ef-instagram__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .ef-instagram__item { position: relative; overflow: hidden; }
  .ef-instagram__item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
  .ef-instagram__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--ef-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 12px;
  }
  .ef-instagram__overlay span { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; }
  .ef-instagram__item:hover .ef-instagram__overlay { opacity: 1; }

  /* ===== 13. NEWSLETTER ===== */
  .ef-newsletter { background: var(--ef-newsletter-bg); color: #1c1d1d; }
  .ef-newsletter__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 72px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .ef-newsletter__inner h2 { color: #1c1d1d; }
  .ef-newsletter__form {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-top: 8px;
  }
  .ef-newsletter__input {
    flex: 0 0 calc(65% - 12px);
    padding: 14px 16px;
    border: 1px solid #1c1d1d;
    border-radius: 0;
    background: var(--ef-white);
    font-family: inherit;
    font-size: 14px;
    color: #1c1d1d;
  }
  .ef-newsletter__input::placeholder { color: #888; }
  .ef-newsletter__btn {
    flex: 0 0 calc(30% - 12px);
    background: #1c1d1d;
    color: var(--ef-white);
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 0;
    text-transform: uppercase;
  }
  .ef-newsletter__btn:hover { background: var(--ef-blue); }
  .ef-newsletter__privacy { font-size: 12px; color: #1c1d1d; }
  .ef-newsletter__privacy a { color: var(--ef-newsletter-link); text-decoration: underline; }

  /* ===== 14. FOOTER ===== */
  .ef-footer { background: var(--ef-blue-dark); color: var(--ef-white); }
  .ef-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr 1.2fr 1.3fr;
    gap: 40px;
    padding: 64px 24px 48px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .ef-footer__col h3 {
    font-size: 13px;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
    color: var(--ef-white);
  }
  .ef-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
  .ef-footer__col ul a { font-size: 13px; color: #bbb; }
  .ef-footer__col ul a:hover { color: var(--ef-white); text-decoration: underline; }
  .ef-footer__badges { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
  .ef-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    padding: 8px 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--ef-white);
    width: fit-content;
  }
  .ef-footer__trust { margin-bottom: 20px; }
  .ef-footer__trust li { font-size: 13px; color: #bbb; }
  .ef-footer__trust li::before { content: "\2713  "; color: #7FB3D8; font-weight: 800; }
  .ef-footer__contact-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #bbb;
  }
  .ef-footer__contact-lines a { color: #7FB3D8; }
  .ef-footer__contact-lines a:hover { color: var(--ef-white); text-decoration: underline; }
  .ef-footer__medallion {
    width: 120px;
    height: 120px;
    border: 2px dashed #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 16px;
  }
  .ef-footer__form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .ef-footer__input {
    padding: 13px 14px;
    border: 1px solid #fff;
    border-radius: 0;
    background: transparent;
    color: var(--ef-white);
    font-family: inherit;
    font-size: 13px;
  }
  .ef-footer__input::placeholder { color: #999; }
  .ef-footer__submit {
    background: var(--ef-white);
    color: #000;
    padding: 13px 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 0;
    text-transform: uppercase;
  }
  .ef-footer__submit:hover { background: var(--ef-blue); color: var(--ef-white); }
  .ef-footer__sms {
    border: 1px solid #3a5573;
    padding: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
  }
  .ef-footer__legal { font-size: 11px; color: #888; line-height: 1.5; margin-bottom: 14px; }

  .ef-footer__bottom {
    border-top: 1px solid #222;
    padding: 20px 24px;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .ef-footer__copy { font-size: 12px; color: #aaa; }
  .ef-footer__links { display: flex; gap: 20px; }
  .ef-footer__links a { font-size: 12px; color: #aaa; }
  .ef-footer__links a:hover { color: var(--ef-white); }
  .ef-footer__socials { display: flex; gap: 14px; }
  .ef-footer__social { color: #aaa; display: inline-flex; }
  .ef-footer__social:hover { color: var(--ef-white); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .ef-product { flex: 0 0 calc(33.333% - 14px); }
    .ef-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ef-hero__content { padding: 40px; }
  }
  @media (max-width: 768px) {
    .ef-brand-selector { display: block; }
    .ef-header__nav { display: none; }
    .ef-header__burger { display: inline-flex; }
    .ef-header__bar {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 12px;
      align-items: center;
    }
    .ef-header__burger { grid-column: 1; justify-self: start; }
    .ef-header__logo { grid-column: 2; justify-self: center; }
    .ef-header__icons { grid-column: 3; justify-self: end; gap: 10px; }
    .ef-header__logo img { max-height: 48px; height: 44px; width: auto; display: block; }
    .ef-header__quote-btn { display: none !important; }
    .ef-hero { grid-template-columns: 1fr; }
    .ef-hero__content { padding: 40px 24px; }
    .ef-hero__media img { aspect-ratio: 16 / 10; }
    .ef-tiles { grid-template-columns: repeat(2, 1fr); }
    .ef-mission__grid { grid-template-columns: 1fr; gap: 40px; }
    .ef-product { flex: 0 0 calc(50% - 10px); }
    .ef-review { flex: 0 0 calc(50% - 10px); }
    .ef-clubs__grid { grid-template-columns: 1fr; }
    .ef-ambassador__grid { grid-template-columns: 1fr; gap: 48px; }
    .ef-instagram__grid { grid-template-columns: repeat(2, 1fr); }
    .ef-newsletter__form { flex-direction: column; gap: 14px; }
    .ef-newsletter__input, .ef-newsletter__btn { flex: 1 1 auto; width: 100%; }
    .ef-footer__grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .ef-tiles { grid-template-columns: 1fr; }
    .ef-product { flex: 0 0 82%; }
    .ef-review { flex: 0 0 100%; }
    .ef-section { padding: 48px 0; }
    .ef-header__bar { padding: 12px 16px; }
    .ef-header__logo { font-size: 18px; }
  }


/* ===== WP ADMIN BAR ===== */
.admin-bar .ef-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .ef-header { top: 46px; } }

/* ===== WP NAV MENUS ===== */
.ef-header__nav-list { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.ef-header__nav-list a {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--ef-black);
	text-decoration: none;
}
.ef-header__nav-list a:hover { color: var(--ef-blue); }
.ef-header__nav-list .current-menu-item > a { color: var(--ef-blue); }
.ef-header__nav-list a.is-active { color: var(--ef-blue); border-bottom: 2px solid var(--ef-blue); padding-bottom: 2px; }

.ef-header__mobile-list { list-style: none; margin: 0; padding: 0; }
.ef-header__mobile-list a.is-active { background: rgba(30,67,106,0.12); color: var(--ef-blue); border-left: 3px solid var(--ef-blue); padding-left: 8px; }
.ef-header__mobile-list a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	color: var(--ef-black);
}

.ef-brand-selector__list { display: flex; justify-content: center; gap: 8px; list-style: none; margin: 0; padding: 8px 16px; }
.ef-brand-selector__list a {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 6px 14px;
	color: #999;
	text-decoration: none;
}
.ef-brand-selector__list a:hover { color: var(--ef-black); }
.ef-brand-selector__list .current-menu-item a { color: var(--ef-black); background: #f0f0f0; }

/* ===== COMMENTS / CONTENT (pages) ===== */
.ef-page {
	max-width: 900px;
	margin: 0 auto;
	padding: 72px 24px;
}
.ef-page h1 { font-size: 32px; margin-bottom: 24px; }
.ef-page .entry-content p { color: #444; margin-bottom: 1em; }
.ef-page .entry-content img { max-width: 100%; height: auto; margin: 16px 0; }
.ef-page .entry-content ul, .ef-page .entry-content ol { margin: 0 0 1em 24px; color: #444; list-style: revert; }
.ef-page .entry-content h2, .ef-page .entry-content h3, .ef-page .entry-content h4 { margin: 1.4em 0 0.5em; }
.ef-page .entry-content a { color: var(--ef-blue); text-decoration: underline; }
.wp-caption-text { font-size: 12px; color: #888; text-align: center; padding: 6px 0; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.sticky, .bypostauthor, .gallery-caption { display: block; }

/* ===== WOOCOMMERCE LIGHT (si está activo) ===== */
.woocommerce .woocommerce-breadcrumb { color: var(--ef-grey); }
.woocommerce .woocommerce-breadcrumb a { color: var(--ef-black); }
.woocommerce ul.products li.product h2 { font-size: 13px; letter-spacing: 0.08em; }
.woocommerce .button, .woocommerce a.button {
	border-radius: 0 !important;
	background: #000 !important;
	color: #fff !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.woocommerce .button:hover, .woocommerce a.button:hover { background: var(--ef-blue) !important; }

/* ===== PRODUCT MEDIA HOVER ===== */
.ef-product__media--link { display: block; position: relative; }
.ef-product__img-main { display: block; }
.ef-product__img-hover { display: block; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s ease; }
.ef-product__media--link:hover .ef-product__img-hover { opacity: 1; }

/* ===== STICKY HEADER STATE ===== */
.ef-header { transition: box-shadow 0.2s ease; }
.ef-header--stuck { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); }

/* ===== FOOTER MENU (wp_nav_menu) ===== */
.ef-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ef-footer__menu a { font-size: 13px; color: #bbb; text-decoration: none; }
.ef-footer__menu a:hover { color: #fff; text-decoration: underline; }

/* ===== FOOTER SOCIAL LIST ===== */
.ef-footer__social-list { display: flex; gap: 14px; list-style: none; margin: 0; padding: 0; }
.ef-footer__social-list a { color: #aaa; display: inline-flex; }
.ef-footer__social-list a:hover { color: #fff; }

/* ===== LEGACY SECTIONS ADJUSTMENTS ===== */
.ef-ambassador__steps { justify-content: space-between; height: 100%; }
.ef-ambassador__grid { align-items: center; gap: 48px; }
.ef-ambassador__step { gap: 14px; }
.ef-ambassador__actions { margin-top: 8px; }
.ef-post { max-width: 420px; }
.ef-post__media img { aspect-ratio: 1; object-fit: cover; }

/* =====================================================
   WOOCOMMERCE
   ===================================================== */

/* Archive hero */
.ef-archive-hero { background: #000; color: #fff; text-align: center; padding: 64px 24px; }
.ef-archive-hero__title { font-size: clamp(26px, 4vw, 44px); letter-spacing: 0.06em; color: #fff; }
.ef-archive-hero__sub { color: #bbb; font-size: 15px; margin-top: 12px; }

/* Products grid */
.ef-products-grid { list-style: none; margin: 48px auto; padding: 0; max-width: 1440px; }
.ef-products-grid .ef-product { flex: none; width: 100%; }
ul.products.ef-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
ul.products.ef-products-grid .ef-product { flex: 0 0 auto; }
@media (max-width: 1024px) { ul.products.ef-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { ul.products.ef-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { ul.products.ef-products-grid { grid-template-columns: 1fr; } }

/* Product title link */
.ef-product__title a { color: var(--ef-white); text-decoration: none; }
.ef-product__title a:hover { color: var(--ef-white); text-decoration: underline; }

/* Add to cart button (replaces .ef-product__add) */
.ef-product__body .button, .ef-product__body a.button, .ef-product__body button.button {
	display: inline-block;
	margin-top: 8px;
	width: 100%;
	padding: 12px;
	border: 1px solid var(--ef-black);
	border-radius: 0;
	background: var(--ef-white);
	color: var(--ef-black);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
}
.ef-product__body .button:hover, .ef-product__body a.button:hover, .ef-product__body button.button:hover {
	background: var(--ef-black);
	color: var(--ef-white);
}
.ef-product__body .button.loading { opacity: 0.6; }
.ef-product__body .added_to_cart {
	display: block;
	margin-top: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--ef-blue);
	text-decoration: underline;
}

/* Result count / ordering toolbar */
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { color: var(--ef-grey); font-size: 13px; margin: 24px 0; }
.woocommerce .woocommerce-ordering select { padding: 10px 12px; border: 1px solid #ddd; border-radius: 0; font-family: inherit; background: #fff; }

/* Pagination */
.woocommerce nav.woocommerce-pagination ul { border: none; list-style: none; display: flex; gap: 8px; justify-content: center; margin: 48px 0; }
.woocommerce nav.woocommerce-pagination ul li { border: none; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
	min-width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 1px solid var(--ef-black);
	border-radius: 0;
	color: var(--ef-black);
	background: #fff;
	font-weight: 700;
}
.woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current { background: var(--ef-black); color: #fff; }

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb { font-size: 12px; color: var(--ef-grey); margin: 24px 0; }
.woocommerce .woocommerce-breadcrumb a { color: var(--ef-black); text-decoration: none; }

/* ===== SINGLE PRODUCT ===== */
.ef-single-product { max-width: 1280px; margin: 0 auto; padding: 48px 24px; }

.ef-single-product__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
	position: relative;
}
@media (max-width: 768px) { .ef-single-product__grid { grid-template-columns: 1fr; } }

/* Gallery (flexslider-based, theme styles since woocommerce css is off) */
.ef-single-product .woocommerce-product-gallery { position: relative; margin: 0; }
.ef-single-product .woocommerce-product-gallery__wrapper { margin: 0; position: relative; }
.ef-single-product .woocommerce-product-gallery__image { position: relative; }
.ef-single-product .woocommerce-product-gallery__image img { width: 100%; display: block; }
.ef-single-product .woocommerce-product-gallery__trigger { position: absolute; top: 12px; right: 12px; z-index: 2; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.92); border-radius: 999px; text-decoration: none; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.ef-single-product .woocommerce-product-gallery__trigger img.emoji { width: 18px !important; height: 18px !important; }

/* Flexslider basics */
.ef-single-product .flexslider { position: relative; }
.ef-single-product ul.flex-direction-nav { list-style: none; margin: 0; padding: 0; }
.ef-single-product .flex-direction-nav a {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
	width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,.92); color: var(--ef-black); text-decoration: none;
	font-size: 22px; line-height: 1; border-radius: 999px; box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.ef-single-product .flex-direction-nav a.flex-prev { left: 12px; }
.ef-single-product .flex-direction-nav a.flex-next { right: 12px; }
.ef-single-product .flex-direction-nav a.flex-disabled { opacity: .35; cursor: default; }
.ef-single-product .flex-viewport { overflow: hidden; }
.ef-single-product .slides { list-style: none; margin: 0; padding: 0; display: flex; }
.ef-single-product .slides > li { flex: 0 0 auto; width: 100%; position: relative; }

/* Gallery thumbnails */
.ef-single-product ol.flex-control-thumbs {
	list-style: none; margin: 12px 0 0; padding: 0;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.ef-single-product .flex-control-thumbs img { width: 100%; aspect-ratio: 4/5; object-fit: cover; cursor: pointer; opacity: .55; border: 2px solid transparent; transition: opacity .2s, border-color .2s; }
.ef-single-product .flex-control-thumbs img.flex-active, .ef-single-product .flex-control-thumbs img:hover { opacity: 1; border-color: var(--ef-black); }

.ef-single-product .product_title { font-size: 30px; letter-spacing: 0.04em; margin-bottom: 16px; }
.ef-single-product .woocommerce-product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 13px; color: var(--ef-grey); }
.ef-single-product .price { font-size: 24px; font-weight: 800; color: var(--ef-black); margin-bottom: 20px; }
.ef-single-product .price del { color: #999; font-weight: 400; margin-right: 8px; }
.ef-single-product .price ins { text-decoration: none; color: var(--ef-black); }
.ef-single-product .woocommerce-product-details__short-description { color: #444; margin-bottom: 24px; line-height: 1.6; }
.ef-single-product .cart { margin-bottom: 24px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.ef-single-product .qty { width: 64px; padding: 12px; border: 1px solid #ddd; border-radius: 0; font-family: inherit; text-align: center; }
.ef-single-product .single_add_to_cart_button {
	background: var(--ef-blue);
	color: #fff;
	padding: 15px 36px;
	border: none;
	border-radius: 0;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}
.ef-single-product .single_add_to_cart_button:hover { background: var(--ef-blue-dark); }
.ef-single-product .product_meta { border-top: 1px solid #eee; padding-top: 16px; font-size: 12px; color: var(--ef-grey); margin-top: 8px; }
.ef-single-product .product_meta a { color: var(--ef-black); }
.ef-single-product .product_meta .posted_in, .ef-single-product .product_meta .sku_wrapper { display: block; margin-bottom: 6px; }

/* Sale flash aligned to gallery */
.ef-single-product__grid > .onsale {
	position: absolute; top: 12px; left: 12px; z-index: 3;
	background: var(--ef-black); color: #fff; font-size: 11px; font-weight: 800;
	letter-spacing: 0.12em; padding: 6px 14px; border-radius: 999px;
}

/* Star ratings (woocommerce css is off, so we restyle) */
.ef-star, .star-rating {
	position: relative; display: inline-block; overflow: hidden; width: 90px; height: 18px;
	line-height: 1; font-size: 15px; margin-right: 8px;
}
.ef-star::before, .star-rating::before {
	content: "\2605\2605\2605\2605\2605";
	position: absolute; left: 0; top: 0; color: #d5d5d5; letter-spacing: 4px;
}
.ef-star span, .star-rating span {
	position: absolute; left: 0; top: 0; overflow: hidden; height: 18px;
	display: block; color: var(--ef-black);
}
.ef-star span::before, .star-rating span::before {
	content: "\2605\2605\2605\2605\2605";
	position: absolute; left: 0; top: 0; letter-spacing: 4px;
}
.woocommerce .star-rating span::before { color: var(--ef-black); }

/* Rating form on reviews */
.woocommerce #review_form #respond p.stars { display: flex; gap: 4px; padding: 0; margin: 8px 0; }
.woocommerce p.stars a {
	display: inline-block; width: 20px; height: 20px; text-indent: -9999px;
	position: relative; color: var(--ef-black); text-decoration: none;
}
.woocommerce p.stars a::before {
	content: "\2605"; position: absolute; left: 0; top: 0; font-size: 22px; color: #d5d5d5; text-indent: 0; line-height: 1;
}
.woocommerce p.stars a.active::before, .woocommerce p.stars a:hover::before { color: var(--ef-black); }
.woocommerce p.stars a[data-value] { opacity: 0; }

/* Tabs (full width, below the grid) */
.woocommerce div.product .woocommerce-tabs { border-top: 1px solid #eee; margin-top: 56px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { list-style: none; display: flex; gap: 4px; border-bottom: 2px solid #eee; margin: 0 0 32px; padding: 0; overflow-x: auto; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border: none; background: none; margin: 0; padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { display: block; padding: 14px 20px; font-size: 13px; font-weight: 800; letter-spacing: 0.08em; color: var(--ef-grey); text-transform: uppercase; text-decoration: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--ef-black); border-bottom: 2px solid var(--ef-black); }
.woocommerce div.product .woocommerce-tabs .panel { padding: 8px 0 48px; color: #444; line-height: 1.6; }
.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }

/* Reviews form */
.woocommerce #reviews #comments ol.commentlist { list-style: none; margin: 0 0 24px; padding: 0; }
.woocommerce #reviews #comments ol.commentlist li { padding: 16px 0; border-bottom: 1px solid #eee; }
.woocommerce #reviews .comment-text .star-rating { color: var(--ef-black); }
.woocommerce #reviews .comment-form input, .woocommerce #reviews .comment-form textarea,
.woocommerce p.comment-form-author input, .woocommerce p.comment-form-email input, .woocommerce p.comment-form-url input {
	padding: 12px; border: 1px solid #ddd; border-radius: 0; font-family: inherit; width: 100%;
}
.woocommerce #reviews .comment-form label { font-size: 13px; font-weight: 700; }
.woocommerce #reviews #respond .submit, .woocommerce #review_form #respond .form-submit input {
	background: var(--ef-black); color: #fff; border: none; border-radius: 0; padding: 14px 28px;
	font-weight: 800; letter-spacing: 0.08em; cursor: pointer;
}
.woocommerce #review_form #respond .form-submit { margin-top: 16px; }

/* Related / upsells */
.related.products, .upsells.products { max-width: 1280px; margin: 0 auto; padding: 48px 24px; clear: both; }
.related.products > h2, .upsells.products > h2 { font-size: 22px; margin-bottom: 24px; }

/* ===== CART ===== */
.woocommerce table.shop_table { border: 1px solid #eee; border-collapse: collapse; width: 100%; margin: 32px 0; }
.woocommerce table.shop_table th { background: #000; color: #fff; padding: 14px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.woocommerce table.shop_table td { padding: 14px; border-bottom: 1px solid #eee; vertical-align: middle; }
.woocommerce table.shop_table .product-thumbnail img { width: 72px; height: auto; }
.woocommerce a.remove { color: var(--ef-black) !important; font-weight: 800; }
.woocommerce a.remove:hover { background: #000; color: #fff !important; }
.woocommerce .cart_totals h2 { font-size: 20px; }
.woocommerce .wc-proceed-to-checkout a.checkout-button {
	background: var(--ef-blue);
	color: #fff;
	padding: 16px 32px;
	border-radius: 0;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.woocommerce .coupon input.input-text { padding: 12px; border: 1px solid #ddd; border-radius: 0; }
.woocommerce button.button, .woocommerce input.button {
	border-radius: 0;
	background: #000;
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.08em;
	padding: 14px 28px;
}
.woocommerce button.button:hover, .woocommerce input.button:hover { background: var(--ef-blue); }

/* ===== CHECKOUT / FORMS ===== */
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 0;
	font-family: inherit;
	width: 100%;
}
.woocommerce form .form-row label { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.woocommerce-checkout #payment { background: #fafafa; border-radius: 0; }
.woocommerce-checkout #payment div.payment_box { background: #eee; border-radius: 0; }

ul.products.ef-products-grid li.ef-product { list-style: none; }
.ef-products-grid { padding-bottom: 24px; }

/* CHECKOUT remainder */
.woocommerce #order_review_heading, .woocommerce h3#order_review_heading { font-size: 20px; }

/* MY ACCOUNT */
.woocommerce-account .woocommerce { max-width: 720px; margin: 0 auto; padding: 48px 24px; }
.woocommerce-account .woocommerce h2 { font-size: 22px; }
.woocommerce-account form.login, .woocommerce-account form.register {
	border: 1px solid #eee;
	border-radius: 0;
	padding: 32px;
	margin: 24px 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0 0 32px; padding: 0; border: 1px solid #eee; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li { border-bottom: 1px solid #eee; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child { border-bottom: none; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a { display: block; padding: 14px 20px; color: var(--ef-black); font-weight: 700; font-size: 14px; text-decoration: none; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a { background: #000; color: #fff; }

/* NOTICES */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-top: 2px solid var(--ef-blue);
	border-radius: 0;
	background: #f7fafb;
	color: var(--ef-black);
	padding: 16px 16px 16px 48px;
	position: relative;
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--ef-blue); }
.woocommerce-error { border-top-color: #e2401c; }

/* CHECKOUT / CART CONTAINERS */
.woocommerce { padding: 0 24px 48px; }
.woocommerce .col2-set, .woocommerce form.checkout, .woocommerce .cart-collaterals { max-width: 960px; margin: 0 auto; }
.woocommerce ul.products li.product a img { margin: 0; }
.woocommerce ul.products li.product { margin: 0; }

/* Payment methods */
.woocommerce #payment ul.payment_methods { list-style: none; margin: 0; padding: 16px; border: 1px solid #eee; }
.woocommerce #payment ul.payment_methods li { list-style: none; margin: 0 0 10px; padding: 0; }
.woocommerce #payment ul.payment_methods li:last-child { margin-bottom: 0; }
.woocommerce #payment ul.payment_methods label { display: inline; }
.woocommerce #payment ul.payment_methods .payment_box { margin: 8px 0 0 24px; }

/* REVIEWS on single product */
.woocommerce #reviews #comments h2 { font-size: 18px; }
.woocommerce #reviews .commentlist li { border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
.woocommerce p.stars a { color: var(--ef-black); }
.woocommerce .star-rating { color: var(--ef-black); }
.woocommerce .star-rating span { color: var(--ef-blue); }

/* Sale badge floating on gallery (single product) is handled by .ef-single-product__grid > .onsale */

/* Thumbnails gallery flex */
.woocommerce div.product div.images .flex-control-thumbs { margin: 8px 0 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.woocommerce div.product div.images .flex-control-thumbs li { width: 72px; float: none; }
.woocommerce div.product div.images .flex-control-thumbs img { border: 1px solid #eee; opacity: 0.6; }
.woocommerce div.product div.images .flex-control-thumbs img.flex-active { opacity: 1; border-color: var(--ef-black); }

/* Quantity buttons */
.woocommerce .quantity .qty { width: 64px; padding: 12px; border: 1px solid #ddd; border-radius: 0; font-family: inherit; text-align: center; }

/* Hide default woocommerce breadcrumb duplication in archive hero */
.woocommerce .woocommerce-breadcrumb { max-width: 1280px; margin-left: auto; margin-right: auto; }

.woocommerce ul.products li.product .price { color: var(--ef-black); font-size: 15px; font-weight: 800; }
.woocommerce ul.products li.product .price del { color: #999; font-weight: 400; }

/* Gallery thumbs grid wins over legacy li widths */
.ef-single-product .flex-control-thumbs li { width: auto !important; margin: 0 !important; }

/* =====================================================
   BLOG / SEARCH / ARCHIVE
   ===================================================== */

.ef-blog-hero { background: #000; color: #fff; text-align: center; padding: 64px 24px; }
.ef-blog-hero__title { font-size: clamp(26px, 4vw, 44px); letter-spacing: 0.06em; color: #fff; margin: 0; }
.ef-blog-hero__sub { color: #bbb; font-size: 15px; margin-top: 12px; }

.ef-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 1280px;
	margin: 48px auto;
	padding: 0 24px;
}
@media (max-width: 1024px) { .ef-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ef-blog-grid { grid-template-columns: 1fr; } }

.ef-post-card {
	display: flex; flex-direction: column;
	background: #fff; border: 1px solid #eee; border-radius: 0;
	transition: box-shadow .25s ease, transform .25s ease;
}
.ef-post-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.08); transform: translateY(-4px); }
.ef-post-card__media { display: block; overflow: hidden; background: #f5f7f8; }
.ef-post-card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .4s ease; }
.ef-post-card:hover .ef-post-card__media img { transform: scale(1.04); }
.ef-post-card__noimg { display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3; color: #bbb; font-size: 13px; font-weight: 800; letter-spacing: .1em; }
.ef-post-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ef-post-card__cat { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ef-blue); }
.ef-post-card__title { font-size: 17px; font-weight: 800; line-height: 1.3; letter-spacing: .01em; }
.ef-post-card__title a { color: var(--ef-black); text-decoration: none; }
.ef-post-card__title a:hover { color: var(--ef-blue); }
.ef-post-card__excerpt { font-size: 14px; color: #666; line-height: 1.6; flex: 1; }
.ef-post-card__meta { font-size: 12px; color: #999; letter-spacing: .05em; }
.ef-post-card__link { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ef-black); text-decoration: none; border-bottom: 2px solid var(--ef-black); align-self: flex-start; padding-bottom: 2px; }
.ef-post-card__link:hover { color: var(--ef-blue); border-color: var(--ef-blue); }

/* Pagination (shared) */
.ef-pagination { max-width: 1280px; margin: 0 auto 64px; padding: 0 24px; }
.ef-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.ef-pagination .page-numbers {
	min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--ef-black); color: var(--ef-black); text-decoration: none; font-weight: 700; padding: 0 12px;
}
.ef-pagination .page-numbers.current { background: var(--ef-black); color: #fff; }
.ef-pagination .page-numbers:hover { background: var(--ef-blue); border-color: var(--ef-blue); color: #fff; }

/* ===== SINGLE POST ===== */
.ef-single-post { max-width: 780px; margin: 0 auto; padding: 56px 24px 80px; }
.ef-single-post__cat { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ef-blue); }
.ef-single-post__title { font-size: clamp(26px, 4vw, 40px); letter-spacing: .02em; margin: 12px 0 16px; line-height: 1.15; }
.ef-single-post__meta { font-size: 13px; color: #999; letter-spacing: .05em; padding-bottom: 24px; border-bottom: 1px solid #eee; }
.ef-single-post__thumb { margin: 28px 0; }
.ef-single-post__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.ef-single-post__content { font-size: 16px; line-height: 1.8; color: #333; }
.ef-single-post__content p { margin: 0 0 24px; }
.ef-single-post__content h2, .ef-single-post__content h3 { margin: 32px 0 14px; letter-spacing: .02em; }
.ef-single-post__content a { color: var(--ef-blue); }
.ef-single-post__content img { max-width: 100%; height: auto; }
.ef-single-post__nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid #eee; font-size: 14px; }
.ef-single-post__nav a { color: var(--ef-black); font-weight: 700; text-decoration: none; }
.ef-single-post__nav a:hover { color: var(--ef-blue); }

/* ===== COMMENTS ===== */
.ef-comments { max-width: 780px; margin: 0 auto; padding: 0 24px 80px; }
.ef-comments__title { font-size: 20px; letter-spacing: .03em; margin-bottom: 24px; }
.ef-comments ol.comment-list { list-style: none; margin: 0 0 32px; padding: 0; }
.ef-comments .comment { border-bottom: 1px solid #eee; padding: 20px 0; }
.ef-comments .comment .comment-author { font-weight: 800; font-size: 14px; }
.ef-comments .comment .comment-metadata { font-size: 12px; color: #999; margin: 4px 0 8px; }
.ef-comments .comment .comment-metadata a { color: #999; text-decoration: none; }
.ef-comments .comment-content { font-size: 14px; line-height: 1.7; color: #444; }
.ef-comments .children { list-style: none; margin: 16px 0 0 24px; padding: 0; }
.ef-comments .comment-reply-link { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ef-blue); text-decoration: none; }
.ef-comments .comment-form label { display: block; font-size: 13px; font-weight: 700; margin: 14px 0 6px; }
.ef-comments .comment-form input[type="text"], .ef-comments .comment-form input[type="email"], .ef-comments .comment-form input[type="url"], .ef-comments .comment-form textarea {
	width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 0; font-family: inherit;
}
.ef-comments .comment-form .submit { background: var(--ef-black); color: #fff; border: none; border-radius: 0; padding: 14px 32px; font-weight: 800; letter-spacing: .08em; cursor: pointer; }
.ef-comments .comment-form .submit:hover { background: var(--ef-blue); }

/* Search results header */
.ef-search__count { max-width: 1280px; margin: 48px auto 0; padding: 0 24px; font-size: 14px; color: #666; }

/* Empty / no results */
.ef-empty { text-align: center; padding: 80px 24px; }
.ef-empty__title { font-size: 24px; letter-spacing: .03em; margin-bottom: 12px; }
.ef-empty__text { color: #666; margin-bottom: 24px; }
.ef-empty .ef-search-form { max-width: 480px; margin: 0 auto; }

/* ===== CART REDESIGN ===== */
body.woocommerce-cart .ef-page { max-width: 1280px; padding: 0; }
body.woocommerce-cart .ef-page .entry-header { display: none; }
body.woocommerce-cart .woocommerce { padding: 0; }

.ef-cart { max-width: 1280px; margin: 0 auto; padding: 48px 24px; }

.ef-cart__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 32px; }
.ef-cart__title { font-size: 28px; letter-spacing: 0.06em; text-transform: uppercase; }
.ef-cart__count { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; color: var(--ef-grey); }

.ef-cart__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }

/* Table */
.ef-cart .shop_table { border: 1px solid #eee; border-collapse: collapse; width: 100%; margin: 0; }
.ef-cart .shop_table th { background: #000; color: #fff; padding: 16px 14px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; text-align: left; }
.ef-cart .shop_table td { padding: 18px 14px; border-bottom: 1px solid #eee; vertical-align: middle; }
.ef-cart .shop_table tbody tr:last-child td { border-bottom: none; }
.ef-cart .shop_table .product-thumbnail img { width: 80px; height: auto; }
.ef-cart .shop_table .product-name { font-weight: 700; }
.ef-cart .shop_table .product-name a { color: var(--ef-black); font-weight: 700; }
.ef-cart .shop_table .product-name a:hover { color: var(--ef-blue); }
.ef-cart .shop_table .product-name .variation { margin: 6px 0 0; font-size: 12px; color: var(--ef-grey); font-weight: 400; }
.ef-cart .shop_table .product-name .variation dt { font-weight: 700; }
.ef-cart .shop_table .product-price, .ef-cart .shop_table .product-subtotal { font-weight: 700; }
.ef-cart .shop_table td.product-price, .ef-cart .shop_table td.product-subtotal { color: var(--ef-black); }

/* Remove */
.ef-cart a.remove { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; line-height: 1; color: var(--ef-black) !important; font-weight: 400; border-radius: 0; }
.ef-cart a.remove:hover { background: #000; color: #fff !important; }

/* Quantity */
.ef-cart .quantity .qty { width: 68px; padding: 10px 8px; border: 1px solid #ddd; border-radius: 0; font-family: inherit; text-align: center; }

/* Actions row */
.ef-cart .actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ef-cart .actions .coupon { display: flex; gap: 8px; flex-wrap: wrap; }
.ef-cart .actions .coupon input.input-text { width: 200px; padding: 12px 14px; border: 1px solid #ddd; border-radius: 0; font-family: inherit; }

/* Buttons */
.ef-cart button.button, .ef-cart input.button { border-radius: 0; background: #000; color: #fff; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 28px; }
.ef-cart button.button:hover, .ef-cart input.button:hover { background: var(--ef-blue); }

/* Collaterals card (overrides legacy max-width: 960px) */
body.woocommerce-cart .cart-collaterals { max-width: none; margin: 0; }
.ef-cart__grid .cart-collaterals { position: sticky; top: 24px; }
.ef-cart .cart_totals { background: #fff; border: 1px solid #eee; border-top: 4px solid #000; padding: 32px; }
.ef-cart .cart_totals h2 { font-size: 20px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.ef-cart .cart_totals table { border: none; border-collapse: collapse; width: 100%; margin: 0 0 24px; }
.ef-cart .cart_totals table th, .ef-cart .cart_totals table td { background: none; color: var(--ef-black); border: none; border-bottom: 1px solid #eee; padding: 12px 0; font-size: 14px; text-transform: none; letter-spacing: 0; text-align: left; }
.ef-cart .cart_totals table td { text-align: right; font-weight: 700; }
.ef-cart .cart_totals .order-total th, .ef-cart .cart_totals .order-total td { border-bottom: none; padding-top: 20px; }
.ef-cart .cart_totals .order-total .amount { font-size: 22px; font-weight: 800; color: var(--ef-black); }
.ef-cart .cart_totals .shipping-calculator-button { color: var(--ef-black); font-weight: 700; text-decoration: underline; }
.ef-cart .cart_totals .shipping-calculator-form { margin-top: 12px; }
.ef-cart .cart_totals .shipping-calculator-form input, .ef-cart .cart_totals .shipping-calculator-form select { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 0; font-family: inherit; margin-bottom: 8px; }

/* Checkout button */
.ef-cart .wc-proceed-to-checkout { padding: 0; }
.ef-cart .wc-proceed-to-checkout a.checkout-button { display: block; width: 100%; background: var(--ef-blue); color: #fff; padding: 18px 32px; border-radius: 0; font-size: 14px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }
.ef-cart .wc-proceed-to-checkout a.checkout-button:hover { background: var(--ef-blue-dark); }

/* Cross-sells hidden on cart page (kept functional) */
body.woocommerce-cart .cross-sells { display: none; }

/* Empty cart */
.ef-cart-empty { max-width: 1280px; margin: 0 auto; padding: 96px 24px; text-align: center; }
.ef-cart-empty .cart-empty { border: none; background: none; color: var(--ef-black); font-size: 22px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 0; margin-bottom: 16px; }
.ef-cart-empty .cart-empty::before { display: none; }
.ef-cart-empty .return-to-shop { margin: 0; }
.ef-cart-empty .return-to-shop .button { display: inline-block; background: #000; color: #fff; padding: 16px 48px; border-radius: 0; font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.ef-cart-empty .return-to-shop .button:hover { background: var(--ef-blue); }

/* Responsive */
@media (max-width: 899px) {
	.ef-cart__grid { grid-template-columns: 1fr; gap: 32px; }
	.ef-cart__grid .cart-collaterals { position: static; }
	.ef-cart .shop_table thead { display: none; }
	.ef-cart .shop_table tbody tr { display: block; position: relative; border: 1px solid #eee; margin-bottom: 16px; padding: 8px; }
	.ef-cart .shop_table td { display: block; border-bottom: 1px solid #eee; padding: 10px 8px; }
	.ef-cart .shop_table td[data-title] { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
	.ef-cart .shop_table td[data-title]::before { content: attr(data-title); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ef-grey); }
	.ef-cart .shop_table .product-remove { position: absolute; top: 6px; right: 6px; border: none; padding: 0; }
	.ef-cart .shop_table .product-thumbnail { display: flex; justify-content: center; border-bottom: 1px solid #eee; padding-top: 12px; }
	.ef-cart .shop_table td.actions { display: block; border-bottom: none; }
	.ef-cart .shop_table td.actions .coupon { width: 100%; }
	.ef-cart .shop_table td.actions .coupon input.input-text { flex: 1; width: auto; }
}

/* ===== CHECKOUT REDESIGN ===== */
body.woocommerce-checkout .ef-page { max-width: 1280px; padding: 0; }
body.woocommerce-checkout .ef-page .entry-header { display: none; }
body.woocommerce-checkout .woocommerce { padding: 0; }
body.woocommerce-checkout .col2-set, body.woocommerce-checkout form.checkout { max-width: none; margin: 0; }

.ef-checkout { max-width: 1280px; margin: 0 auto; padding: 48px 24px; }

.ef-checkout__head { margin-bottom: 32px; }
.ef-checkout__title { font-size: 28px; letter-spacing: 0.06em; text-transform: uppercase; margin: 0; }
.ef-checkout__sub { color: var(--ef-grey); font-size: 14px; margin-top: 8px; }

.ef-checkout form.checkout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }

/* Billing / shipping side by side */
.ef-checkout .col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ef-checkout .col2-set .col-1, .ef-checkout .col2-set .col-2 { float: none; width: auto; }

.ef-checkout .woocommerce-billing-fields h3, .ef-checkout .woocommerce-shipping-fields h3 { font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 20px; }

/* Order review card */
.ef-checkout__side { position: sticky; top: 24px; }
.ef-checkout #order_review_heading { font-size: 20px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 16px; }
.ef-checkout #order_review { background: #fff; border: 1px solid #eee; border-top: 4px solid #000; padding: 32px; }

/* Form controls */
.ef-checkout form .form-row input.input-text, .ef-checkout form .form-row textarea, .ef-checkout form .form-row select { padding: 12px; border: 1px solid #ddd; border-radius: 0; font-family: inherit; width: 100%; }
.ef-checkout form .form-row label { font-size: 13px; font-weight: 700; margin-bottom: 6px; }

/* Payment */
.ef-checkout #payment { background: #fafafa; border-radius: 0; }
.ef-checkout #payment ul.payment_methods { list-style: none; margin: 0; padding: 16px; border: 1px solid #eee; }
.ef-checkout #payment ul.payment_methods li { list-style: none; margin: 0 0 10px; padding: 0; }
.ef-checkout #payment ul.payment_methods li:last-child { margin-bottom: 0; }
.ef-checkout #payment div.payment_box { background: #eee; border-radius: 0; }

/* Place order button */
.ef-checkout #place_order { background: var(--ef-blue); color: #fff; width: 100%; padding: 18px; border: none; border-radius: 0; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.ef-checkout #place_order:hover { background: var(--ef-blue-dark); }

/* Legal / terms text */
.ef-checkout .woocommerce-privacy-policy-text, .ef-checkout .woocommerce-terms-and-conditions-wrapper { font-size: 12px; color: #666; }

/* Cart thumbnail fix: global img { max-width:100% } collapses the cell */
.ef-cart .shop_table th.product-thumbnail, .ef-cart .shop_table td.product-thumbnail { width: 90px; }
.ef-cart .shop_table .product-thumbnail img { width: 80px; height: auto; max-width: none !important; }

/* Responsive */
@media (max-width: 899px) {
	.ef-checkout form.checkout { grid-template-columns: 1fr; gap: 32px; }
	.ef-checkout .col2-set { grid-template-columns: 1fr; }
	.ef-checkout__side { position: static; }
}

/* ===== HERO SLIDER ===== */
.ef-hero-slider {
  position: relative;
  background: var(--ef-black);
  overflow: hidden;
}
.ef-hero-slider__viewport {
  position: relative;
  height: clamp(480px, 76vh, 860px);
}
.ef-hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s ease;
  z-index: 1;
}
.ef-hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.ef-hero-slider__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ef-hero-slider__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ef-hero-slider__slide.is-active .ef-hero-slider__media img {
  animation: ef-hero-kenburns 7s ease-out forwards;
}
@keyframes ef-hero-kenburns {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.ef-hero-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 8, 10, 0.85) 0%, rgba(8, 8, 10, 0.62) 45%, rgba(8, 8, 10, 0.2) 100%);
}
.ef-hero-slider__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  max-width: 600px;
  padding: 64px 72px 64px 96px;
  color: var(--ef-white);
}
.ef-hero-slider__title {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55), 0 0 32px rgba(0, 0, 0, 0.4);
}
.ef-hero-slider__text {
  margin: 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.ef-hero-slider__cta {
  display: inline-block;
  background: var(--ef-blue);
  color: var(--ef-white);
  padding: 16px 34px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 0;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, transform 0.25s ease;
}
.ef-hero-slider__cta:hover {
  background: var(--ef-blue-dark);
  transform: translateY(-2px);
}
.ef-hero-slider__slide.is-active .ef-hero-slider__title {
  animation: ef-hero-rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s both;
}
.ef-hero-slider__slide.is-active .ef-hero-slider__text {
  animation: ef-hero-rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s both;
}
.ef-hero-slider__slide.is-active .ef-hero-slider__cta {
  animation: ef-hero-rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s both;
}
@keyframes ef-hero-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.ef-hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.35);
  backdrop-filter: blur(6px);
  color: var(--ef-white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.ef-hero-slider__arrow:hover {
  background: var(--ef-blue);
  border-color: var(--ef-blue);
  transform: translateY(-50%) scale(1.08);
}
.ef-hero-slider__arrow:focus-visible {
  outline: 2px solid var(--ef-white);
  outline-offset: 3px;
}
.ef-hero-slider__arrow--prev { left: 28px; }
.ef-hero-slider__arrow--next { right: 28px; }
.ef-hero-slider__dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.ef-hero-slider__dot {
  width: 30px;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease, width 0.3s ease;
}
.ef-hero-slider__dot:hover { background: rgba(255, 255, 255, 0.7); }
.ef-hero-slider__dot.is-active {
  width: 52px;
  background: rgba(255, 255, 255, 0.25);
}
.ef-hero-slider__dot-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ef-white);
}
.ef-hero-slider__dot.is-active .ef-hero-slider__dot-fill {
  animation: ef-hero-dot-fill 6s linear forwards;
}
@keyframes ef-hero-dot-fill {
  from { width: 0; }
  to { width: 100%; }
}
.ef-hero-slider.is-paused .ef-hero-slider__dot-fill,
.ef-hero-slider.is-paused .ef-hero-slider__slide.is-active .ef-hero-slider__media img,
.ef-hero-slider.is-paused .ef-hero-slider__slide.is-active .ef-hero-slider__title,
.ef-hero-slider.is-paused .ef-hero-slider__slide.is-active .ef-hero-slider__text,
.ef-hero-slider.is-paused .ef-hero-slider__slide.is-active .ef-hero-slider__cta {
  animation-play-state: paused;
}
.ef-hero-slider__status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 768px) {
  .ef-hero-slider__viewport { height: clamp(420px, 92vw, 620px); }
  .ef-hero-slider__content {
    justify-content: flex-end;
    gap: 14px;
    padding: 56px 24px 48px;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.1) 0%, rgba(10, 10, 12, 0.72) 100%);
  }
  .ef-hero-slider__title { font-size: clamp(26px, 8vw, 40px); }
  .ef-hero-slider__text { font-size: 14px; }
  .ef-hero-slider__cta { padding: 14px 26px; font-size: 13px; }
  .ef-hero-slider__arrow { width: 40px; height: 40px; font-size: 20px; top: 12px; bottom: auto; transform: none; }
  .ef-hero-slider__arrow:hover { transform: none; }
  .ef-hero-slider__arrow--prev { left: 24px; }
  .ef-hero-slider__arrow--next { right: 24px; }
  .ef-hero-slider__dots { bottom: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .ef-hero-slider__slide,
  .ef-hero-slider__slide.is-active { transition: none; }
  .ef-hero-slider__slide.is-active .ef-hero-slider__media img,
  .ef-hero-slider__slide.is-active .ef-hero-slider__title,
  .ef-hero-slider__slide.is-active .ef-hero-slider__text,
  .ef-hero-slider__slide.is-active .ef-hero-slider__cta,
  .ef-hero-slider__dot.is-active .ef-hero-slider__dot-fill {
    animation: none !important;
  }
}


/* ===== 9. OUR CONCRETE PROCESS (MarConcrete) ===== */
.ef-specs { background: #F0F2F5; }
.ef-specs__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  margin-bottom: 16px;
}
.ef-lines {
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: #ccc;
}
.ef-specs__intro {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 48px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
}
.ef-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.ef-process__step {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 8px 12px 0;
}
.ef-process__step::after {
  content: "";
  position: absolute;
  top: 44px;
  left: calc(50% + 48px);
  width: calc(100% - 96px);
  height: 1px;
  background: #c9d4dc;
  z-index: 0;
}
.ef-process__step:last-child::after { display: none; }
.ef-process__icon {
  width: 88px;
  height: 88px;
  background: var(--ef-blue);
  color: var(--ef-white);
  border-radius: 50%;
  border: 3px solid var(--ef-white);
  box-shadow: 0 0 0 2px var(--ef-blue), 0 10px 24px rgba(30, 67, 106, 0.25);
  position: relative;
  z-index: 1;
}
.ef-process__icon svg { width: 40px; height: 40px; stroke-width: 1.8; }
.ef-process__num {
  position: absolute;
  top: 66px;
  right: calc(50% - 56px);
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ef-white);
  border: 1px solid var(--ef-blue);
  color: var(--ef-blue);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ef-process__step:hover .ef-process__icon {
  background: var(--ef-blue-dark);
  transform: translateY(-3px);
}
.ef-process__step:hover .ef-process__icon,
.ef-process__icon {
  transition: background 0.25s ease, transform 0.25s ease;
}
.ef-process .ef-specs__title {
  font-size: 13px;
  line-height: 1.4;
  max-width: 16ch;
}
.ef-specs__cta {
  display: block;
  width: fit-content;
  margin: 64px auto 0;
  background: var(--ef-blue);
  color: var(--ef-white);
  padding: 17px 46px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(30, 67, 106, 0.26);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.ef-specs__cta:hover {
  background: var(--ef-blue-dark);
  box-shadow: 0 14px 30px rgba(30, 67, 106, 0.34);
  transform: translateY(-2px);
}

/* ===== 10. WHY CHOOSE US (MarConcrete) ===== */
.ef-why { background: var(--ef-white); }
.ef-why__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  margin-bottom: 48px;
}
.ef-why__heading::before,
.ef-why__heading::after {
  content: "";
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: #ccc;
}
.ef-why__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.ef-why__bio p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: #444;
}
.ef-why__tagline {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid #e8edf0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--ef-black);
}
.ef-why__card {
  border: 1px solid #e4e9ec;
  border-top: 4px solid var(--ef-blue);
  background: #fafbfc;
  padding: 28px 28px 24px;
}
.ef-why__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ef-why__fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e8edf0;
}
.ef-why__fact:last-child { border-bottom: none; padding-bottom: 0; }
.ef-why__fact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ef-white);
  border: 1px solid #e4e9ec;
  color: var(--ef-blue);
}
.ef-why__fact-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ef-black);
  padding-top: 8px;
}
.ef-why__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #e8edf0;
}
.ef-why__cta {
  background: var(--ef-blue);
  color: var(--ef-white);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.25s ease;
}
.ef-why__cta:hover { background: var(--ef-blue-dark); }
.ef-why__more {
  font-size: 14px;
  font-weight: 700;
  color: var(--ef-black);
  text-decoration: none;
  border-bottom: 2px solid var(--ef-black);
  padding-bottom: 2px;
}
.ef-why__more:hover { color: var(--ef-blue); border-color: var(--ef-blue); }

@media (max-width: 899px) {
  .ef-process { grid-template-columns: repeat(3, 1fr); gap: 32px 0; }
  .ef-process__step:nth-child(3)::after { display: none; }
  .ef-why__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .ef-process { grid-template-columns: 1fr; gap: 28px; }
  .ef-process__step::after { display: none; }
}

/* ===== 9b. COMMERCIAL & INDUSTRIAL SOLUTIONS ===== */
.ef-commercial { background: var(--ef-white); }
.ef-commercial__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  margin-bottom: 48px;
}
.ef-commercial__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.ef-commercial__card {
  background: #F0F2F5;
  border: 1px solid #e4e9ec;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ef-commercial__card:hover {
  box-shadow: 0 16px 36px rgba(30, 67, 106, 0.14);
  transform: translateY(-4px);
}
.ef-commercial__media { display: block; overflow: hidden; }
.ef-commercial__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ef-commercial__card:hover .ef-commercial__media img { transform: scale(1.04); }
.ef-commercial__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.ef-commercial__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ef-black);
}
.ef-commercial__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}
@media (max-width: 899px) {
  .ef-commercial__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== 12. AREAS WE SERVE (MarConcrete) ===== */
.ef-areas { background: #F0F2F5; }
.ef-areas__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  margin-bottom: 16px;
}
.ef-areas__heading::before,
.ef-areas__heading::after {
  content: "";
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: #ccc;
}
.ef-areas__intro {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 48px;
  font-size: 15px;
  color: #555;
}
.ef-areas__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.ef-areas__tile {
  background: #f5f7f8;
  border: 1px solid transparent;
  padding: 32px 18px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.ef-areas__tile:hover {
  background: var(--ef-white);
  border-color: #e4e9ec;
  box-shadow: 0 14px 34px rgba(20, 40, 60, 0.08);
  transform: translateY(-4px);
}
.ef-areas__tile-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ef-white);
  border-radius: 50%;
  color: var(--ef-blue);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ef-areas__tile:hover .ef-areas__tile-icon {
  background: var(--ef-blue);
  color: var(--ef-white);
  transform: translateY(-3px);
}
.ef-areas__tile-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ef-black);
}
.ef-areas__tile-sub {
  margin: 0;
  font-size: 13px;
  color: #666;
}
.ef-areas__cta {
  display: block;
  width: fit-content;
  margin: 48px auto 0;
  background: var(--ef-blue);
  color: var(--ef-white);
  padding: 16px 44px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.25s ease;
}
.ef-areas__cta:hover { background: var(--ef-blue-dark); }

/* ===== 14. GET IN TOUCH (MarConcrete) ===== */
.ef-contact { background: var(--ef-white); border-top: 4px solid var(--ef-blue); }
.ef-contact__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  margin-bottom: 48px;
}
.ef-contact__heading::before,
.ef-contact__heading::after {
  content: "";
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: #ccc;
}
.ef-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
}
.ef-contact__info { display: flex; flex-direction: column; gap: 24px; }
.ef-contact__item { display: flex; flex-direction: column; gap: 4px; }
.ef-contact__item-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ef-blue);
}
.ef-contact__item-value { font-size: 16px; font-weight: 700; color: var(--ef-black); }
.ef-contact__form { display: flex; flex-direction: column; gap: 16px; }
.ef-contact__field { display: flex; flex-direction: column; gap: 6px; }
.ef-contact__field label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ef-black);
}
.ef-contact__field input,
.ef-contact__field select,
.ef-contact__field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ef-black);
  background: #f5f7f8;
  border: 1px solid #e4e9ec;
  border-radius: 0;
  padding: 12px 14px;
  width: 100%;
}
.ef-contact__field input:focus,
.ef-contact__field select:focus,
.ef-contact__field textarea:focus {
  outline: none;
  border-color: var(--ef-blue);
  background: var(--ef-white);
}
.ef-contact__field textarea { min-height: 120px; resize: vertical; }
.ef-contact__submit {
  align-self: flex-start;
  background: var(--ef-blue);
  color: var(--ef-white);
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s ease;
}
.ef-contact__submit:hover { background: var(--ef-blue-dark); }
.ef-contact__status { margin-top: 4px; font-size: 15px; font-weight: 700; color: #2e7d32; }
.ef-contact__status.is-error { color: #c62828; }

.ef-contact__whatsapp { margin-top: 4px; }
.ef-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.25s ease;
}
.ef-whatsapp-btn:hover { background: #1eb357; color: #fff; }

.ef-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.25s ease;
}
.ef-whatsapp-float:hover { background: #1eb357; color: #fff; transform: scale(1.08); }
.ef-whatsapp-float.is-hidden { display: none; }

@media (max-width: 899px) {
  .ef-areas__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ef-contact__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .ef-areas__grid { grid-template-columns: 1fr; }
}

/* ===== HEADER MINI-CART ===== */
.ef-header__icon { position: relative; }
.ef-header__icon--btn { background: none; border: 0; padding: 0; cursor: pointer; font-size: inherit; }
.ef-header__icon--cart .ef-cart__count {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--ef-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0;
}

.ef-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 35, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ef-overlay:not([hidden]) { opacity: 1; }

/* ===== SIDECART DRAWER v2 ===== */
.ef-cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 100vw; background: #fff; box-shadow: -8px 0 30px rgba(20,40,60,.15); transform: translateX(100%); transition: transform .35s ease; display: flex; flex-direction: column; z-index: 9999; }
.ef-cart-drawer:not([hidden]) { transform: translateX(0); }
.ef-cart-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid #eef1f3; }
.ef-cart-drawer__title { font-size: 18px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.ef-cart-drawer__close, .ef-modal__close { background: none; border: 0; padding: 6px; cursor: pointer; color: var(--ef-grey, #666); display: inline-flex; transition: color .2s ease; }
.ef-cart-drawer__close:hover, .ef-modal__close:hover { color: var(--ef-blue, #1E436A); }
.ef-cart-drawer__items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; }
.ef-cart-drawer__empty { color: var(--ef-grey, #666); font-size: 14px; text-align: center; padding: 48px 0; }
.ef-cart-drawer__item { position: relative; display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid #eef1f3; }
.ef-cart-drawer__item:first-child { padding-top: 0; }
.ef-cart-drawer__item:last-child { border-bottom: 0; }
.ef-cart-drawer__thumb { flex-shrink: 0; width: 72px; display: block; border: 1px solid #eef1f3; border-radius: 6px; overflow: hidden; background: #fafbfc; }
.ef-cart-drawer__thumb img { width: 72px; height: 72px; object-fit: cover; display: block; }
.ef-cart-drawer__info { flex: 1; display: flex; flex-direction: column; gap: 5px; padding-right: 22px; padding-top: 2px; }
.ef-cart-drawer__name { font-size: 14px; font-weight: 700; line-height: 1.35; color: var(--ef-black, #1a1a1a); text-decoration: none; }
.ef-cart-drawer__name:hover { color: var(--ef-blue, #1E436A); }
.ef-cart-drawer__meta { font-size: 12px; color: var(--ef-grey, #666); line-height: 1.4; }
.ef-cart-drawer__qty { font-size: 13px; font-weight: 600; color: var(--ef-grey, #666); }
.ef-cart-drawer__remove { position: absolute; top: 16px; right: 0; color: var(--ef-grey, #666); text-decoration: none; padding: 4px; line-height: 0; transition: color .2s ease; }
.ef-cart-drawer__item:first-child .ef-cart-drawer__remove { top: 0; }
.ef-cart-drawer__remove:hover { color: #c62828; }
.ef-cart-drawer__foot { padding: 20px 24px 24px; border-top: 1px solid #eef1f3; display: flex; flex-direction: column; gap: 10px; background: #fafbfc; }
.ef-cart-drawer__subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; font-size: 14px; font-weight: 600; color: var(--ef-black, #1a1a1a); }
.ef-cart-drawer__subtotal .ef-cart-drawer__total { font-weight: 800; }
.ef-overlay { position: fixed; inset: 0; background: rgba(10,20,30,.5); z-index: 9990; transition: opacity .3s ease; }
.ef-overlay[hidden], .ef-cart-drawer[hidden], .ef-modal[hidden] { display: none; }

/* ===== HEADER LOGIN MODAL ===== */
.ef-modal {
  position: fixed;
  inset: 0;
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ef-modal__box {
  position: relative;
  width: min(420px, 100%);
  background: var(--ef-white);
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(20, 40, 60, 0.18);
}
.ef-modal__close { position: absolute; top: 12px; right: 12px; }
.ef-modal__inner { display: flex; flex-direction: column; gap: 12px; }
.ef-modal__title { font-size: 22px; font-weight: 800; letter-spacing: 0.02em; }
.ef-modal__message { color: var(--ef-grey); font-size: 14px; }
.ef-login-form { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.ef-login-form__field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; }
.ef-login-form__field input {
  padding: 12px 14px;
  border: 1px solid #dde4e8;
  border-radius: 0;
  font-size: 14px;
  font-family: inherit;
}
.ef-login-form__field input:focus { outline: none; border-color: var(--ef-blue); }
.ef-login-form__error, .ef-login-form__status { font-size: 13px; font-weight: 700; }
.ef-login-form__error { color: #c62828; }
.ef-login-form__status.is-success { color: #2e7d32; }
.ef-modal__lost { font-size: 13px; color: var(--ef-grey); text-align: center; margin-top: 4px; }
.ef-modal__register { display: block; text-align: center; font-size: 13px; font-weight: 700; color: var(--ef-blue); margin-top: 2px; }

/* ===== SHARED BUTTONS ===== */
.ef-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ef-black);
  color: var(--ef-white);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.ef-btn:hover { background: var(--ef-blue); color: var(--ef-white); }
.ef-btn--accent { background: var(--ef-blue); }
.ef-btn--accent:hover { background: var(--ef-blue-dark); }
.ef-btn--block { width: 100%; }


.ef-overlay[hidden], .ef-cart-drawer[hidden], .ef-modal[hidden] { display: none; }


/* ===== AUTH TABS (login/register) ===== */
.ef-auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eef1f3;
}
.ef-auth-tab {
  flex: 1;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ef-grey);
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.ef-auth-tab:hover { color: var(--ef-blue); }
.ef-auth-tab.is-active { color: var(--ef-black); border-bottom-color: var(--ef-blue); }
.ef-auth-panel { display: flex; flex-direction: column; gap: 12px; }

.ef-auth-panel[hidden] { display: none; }


/* ===== MY ACCOUNT (2 col) ===== */
.ef-myaccount { width: 100vw; margin-left: calc(50% - 50vw); max-width: 100vw; padding: 48px 0 80px; box-sizing: border-box; }
.ef-myaccount .ef-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.ef-myaccount__wrap { display: grid; grid-template-columns: 290px 1fr; gap: 40px; align-items: start; }
.ef-myaccount__menu-btn { display: none; }
.ef-myaccount__nav { background: #EBF1F5; padding: 24px; position: sticky; top: 20px; }
.ef-myaccount__nav ul { list-style: none; margin: 0; padding: 0; }
.ef-myaccount__nav li { margin: 0 0 4px; }
.ef-myaccount__nav li a { display: block; padding: 12px 16px; color: #1a1a1a; text-decoration: none; font-weight: 700; font-size: 14px; border-left: 3px solid transparent; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.ef-myaccount__nav li a:hover { color: #1E436A; }
.ef-myaccount__nav li.is-active a { background: #fff; color: #1a1a1a; border-left-color: #1E436A; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.ef-myaccount__content { min-width: 0; }
.ef-myaccount__content h1, .ef-myaccount__content h2, .ef-myaccount__content h3 { color: #1a1a1a; }
.ef-myaccount__content a { color: #1E436A; }
.ef-myaccount__content table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; }
.ef-myaccount__content th, .ef-myaccount__content td { border: 1px solid #eee; padding: 12px 14px; text-align: left; font-size: 14px; }
.ef-myaccount__content thead th { background: #f6f8f9; color: #1a1a1a; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; }
.ef-myaccount__content .button, .ef-myaccount__content .woocommerce-button, .ef-myaccount__content button.woocommerce-Button { display: inline-block; padding: 11px 22px; background: #1a1a1a; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border: 0; border-radius: 0; cursor: pointer; transition: background .25s ease, color .25s ease; }
.ef-myaccount__content .button:hover, .ef-myaccount__content .woocommerce-button:hover, .ef-myaccount__content button.woocommerce-Button:hover { background: #1E436A; }
.ef-myaccount__content input[type=text], .ef-myaccount__content input[type=email], .ef-myaccount__content input[type=password], .ef-myaccount__content input[type=tel], .ef-myaccount__content select, .ef-myaccount__content textarea { width: 100%; max-width: 520px; padding: 12px 14px; border: 1px solid #ddd; background: #fff; color: #1a1a1a; font-size: 14px; border-radius: 0; }
.ef-myaccount__content input:focus, .ef-myaccount__content select:focus, .ef-myaccount__content textarea:focus { outline: none; border-color: #1E436A; box-shadow: 0 0 0 3px rgba(30,67,106,.15); }
.ef-myaccount__content label { display: block; margin: 14px 0 6px; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: #1a1a1a; }
.ef-myaccount__content .woocommerce-Address { max-width: 600px; }
.ef-myaccount__content .woocommerce-EditAccountForm, .ef-myaccount__content form.woocommerce-EditAccountForm { max-width: 600px; }
.ef-myaccount__content .woocommerce-message, .ef-myaccount__content .woocommerce-info, .ef-myaccount__content .woocommerce-error { border-top-color: #1E436A; background: #EBF1F5; color: #1a1a1a; padding: 14px 18px 14px 48px; }
@media (max-width: 768px) {
  .ef-myaccount { width: 100%; margin-left: 0; max-width: 100%; padding: 32px 0 56px; }
  .ef-myaccount__wrap { grid-template-columns: 1fr; gap: 0; }
  .ef-myaccount__menu-btn { display: flex; align-items: center; gap: 10px; width: 100%; padding: 14px 16px; background: #1a1a1a; color: #fff; border: 0; cursor: pointer; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
  .ef-myaccount__menu-icon { width: 16px; height: 12px; position: relative; }
  .ef-myaccount__menu-icon::before, .ef-myaccount__menu-icon::after, .ef-myaccount__menu-icon span { content: ""; position: absolute; left: 0; width: 16px; height: 2px; background: #fff; transition: transform .25s ease, top .25s ease, opacity .25s ease; }
  .ef-myaccount__menu-icon::before { top: 0; }
  .ef-myaccount__menu-icon span { top: 5px; }
  .ef-myaccount__menu-icon::after { top: 10px; }
  .ef-myaccount__menu-btn[aria-expanded="true"] .ef-myaccount__menu-icon::before { top: 5px; transform: rotate(45deg); }
  .ef-myaccount__menu-btn[aria-expanded="true"] .ef-myaccount__menu-icon span { opacity: 0; }
  .ef-myaccount__menu-btn[aria-expanded="true"] .ef-myaccount__menu-icon::after { top: 5px; transform: rotate(-45deg); }
  .ef-myaccount__nav { max-height: 0; overflow: hidden; padding: 0 24px; transition: max-height .3s ease, padding .3s ease; background: #EBF1F5; }
  .ef-myaccount__nav.is-active { max-height: 600px; padding: 24px; }
  .ef-myaccount__nav li a { border-left: 0; border-bottom: 1px solid #e2e8ec; }
  .ef-myaccount__nav li.is-active a { box-shadow: none; }
}
/* ===== SERVICE CARDS (quote-first, blue block) ===== */
.ef-product {
  background: var(--ef-white);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ef-product:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}
.ef-product__media img {
  transition: transform 0.4s ease;
}
.ef-product:hover .ef-product__media img,
.ef-product__media--link:hover img {
  transform: scale(1.05);
}
.ef-product__body {
  background: var(--ef-blue);
  border-top: 3px solid var(--ef-blue-dark);
}
.ef-product__icon {
  border-color: rgba(255, 255, 255, 0.45);
}
.ef-product__learn {
  color: var(--ef-white);
}
.ef-product__add--quote,
.ef-product__body .button {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  background: var(--ef-black);
  color: var(--ef-white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.ef-product__add--quote:hover,
.ef-product__body .button:hover {
  background: var(--ef-blue);
  color: var(--ef-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(30, 67, 106, 0.35);
}
/* Header quote CTA */
.ef-header__quote-btn {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  border-radius: 2px;
  white-space: nowrap;
}
/* Single product quote block */
.ef-single-product__quote {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eef1f3;
}
.ef-single-product__quote-note {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ef-grey);
  text-align: center;
}
@media (max-width: 768px) {
  .ef-header__quote-btn {
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .ef-product__add--quote,
  .ef-product__body .button {
    width: 100%;
  }
}

/* ===== EFFECTS 2026 ===== */

/* Scroll progress bar */
.ef-progress {
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 3px;
  z-index: 5;
  pointer-events: none;
}
.ef-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--ef-blue), var(--ef-teal));
  transform-origin: 0 50%;
  transform: scaleX(0);
}
@supports (animation-timeline: scroll()) {
  .ef-progress__bar {
    animation: ef-progress-grow linear both;
    animation-timeline: scroll(root);
  }
}
@keyframes ef-progress-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Scroll reveal */
html.ef-effects-js [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}
html.ef-effects-js [data-reveal="left"]:not(.is-visible) { transform: translateX(-32px); }
html.ef-effects-js [data-reveal="right"]:not(.is-visible) { transform: translateX(32px); }
html.ef-effects-js [data-reveal="fade"]:not(.is-visible) { transform: none; }

[data-reveal] {
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--ef-reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Stats band */
.ef-stats { background: var(--ef-blue-dark); padding: 64px 0; }
.ef-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.ef-stats__item { text-align: center; display: flex; flex-direction: column; gap: 12px; }
.ef-stats__item::before {
  content: "";
  width: 34px; height: 3px;
  background: var(--ef-teal);
  margin: 0 auto;
}
.ef-stats__num {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900; line-height: 1;
  letter-spacing: .02em;
  color: var(--ef-white);
  font-variant-numeric: tabular-nums;
}
.ef-stats__label {
  font-size: 12px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}
@media (max-width: 768px) { .ef-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

/* Services marquee */
.ef-marquee {
  overflow: hidden;
  background: var(--ef-white);
  border-bottom: 1px solid #e4e9ec;
  padding: 22px 0;
}
.ef-marquee__track {
  display: flex;
  width: max-content;
  animation: ef-marquee 30s linear infinite;
}
.ef-marquee:hover .ef-marquee__track { animation-play-state: paused; }
.ef-marquee__group { display: flex; align-items: center; }
.ef-marquee__item {
  padding: 0 28px;
  font-size: 14px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ef-blue); white-space: nowrap;
}
.ef-marquee__item::after {
  content: "\2022";
  margin-left: 56px;
  color: var(--ef-teal);
}

/* Hover: shine sweep + border */
.ef-tiles__media::after,
.ef-commercial__media::after,
.ef-product__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .38) 50%, transparent 60%);
  transform: translateX(-130%);
  transition: transform .8s ease;
}
.ef-tiles__tile:hover .ef-tiles__media::after,
.ef-commercial__card:hover .ef-commercial__media::after,
.ef-product:hover .ef-product__media::after,
.ef-tiles__tile:focus-visible .ef-tiles__media::after,
.ef-commercial__card:focus-within .ef-commercial__media::after { transform: translateX(130%); }

.ef-tiles__media img { transition: transform .6s cubic-bezier(.22, .61, .36, 1); }
.ef-tiles__tile:hover .ef-tiles__media img,
.ef-tiles__tile:focus-visible .ef-tiles__media img { transform: scale(1.08); }
.ef-tiles__media {
  box-shadow: inset 0 0 0 0 var(--ef-teal);
  transition: box-shadow .35s ease;
}
.ef-tiles__tile:hover .ef-tiles__media,
.ef-tiles__tile:focus-visible .ef-tiles__media { box-shadow: inset 0 0 0 3px var(--ef-teal); }

.ef-commercial__card { position: relative; }
.ef-commercial__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ef-blue), var(--ef-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
  z-index: 2;
}
.ef-commercial__card:hover::before,
.ef-commercial__card:focus-within::before { transform: scaleX(1); }

.ef-product__body { transition: border-color .3s ease; }
.ef-product:hover .ef-product__body,
.ef-product:focus-within .ef-product__body { border-top-color: var(--ef-teal); }

/* Hero text word reveal */
.ef-hero-slider.has-word-reveal .ef-hero-slider__slide.is-active .ef-hero-slider__title { animation: none; }
.ef-hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.6em);
  transition: opacity .45s ease, transform .45s cubic-bezier(.22, .61, .36, 1);
}
.ef-hero-word.is-in { opacity: 1; transform: translateY(0); }

/* Hero parallax */
.ef-hero-slider.has-parallax .ef-hero-slider__media { inset: -15% 0; will-change: transform; }

/* Scroll padding */
html { scroll-padding-top: 96px; }
html.admin-bar { scroll-padding-top: 128px; }
@media (max-width: 768px) {
  html { scroll-padding-top: 84px; }
  html.admin-bar { scroll-padding-top: 130px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html.ef-effects-js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ef-marquee__track { animation: none; }
  .ef-marquee__group[aria-hidden="true"] { display: none; }
  .ef-hero-word { opacity: 1; transform: none; transition: none; }
  .ef-tiles__media img, .ef-commercial__media img, .ef-product__media img { transition: none !important; transform: none !important; }
  .ef-tiles__media::after, .ef-commercial__media::after, .ef-product__media::after { display: none; }
  .ef-commercial__card::before { display: none; }
  html { scroll-behavior: auto; }
}

/* ===== REDESIGN 2026 (premium) ===== */

/* A. Parallax real en specs + newsletter */
.ef-specs,
.ef-newsletter {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.ef-specs::before,
.ef-newsletter::before {
  content: "";
  position: absolute;
  inset: -18% 0;
  z-index: 0;
  background-size: cover, cover;
  background-position: center, center;
  will-change: transform;
  transform: translate3d(0, var(--ef-px, 0), 0);
}
.ef-specs::before {
  background-image:
    radial-gradient(120% 130% at 50% 0%, rgba(30, 67, 106, 0.72) 0%, rgba(22, 51, 79, 0.94) 55%, rgba(8, 8, 10, 0.9) 100%),
    url("../img/products/entrada-estampada-1.jpg");
}
.ef-newsletter::before {
  background-image:
    radial-gradient(120% 130% at 50% 0%, rgba(30, 67, 106, 0.72) 0%, rgba(22, 51, 79, 0.94) 55%, rgba(8, 8, 10, 0.9) 100%),
    url("../img/products/vereda-1.jpg");
}
.ef-specs > .ef-container,
.ef-newsletter__inner { position: relative; z-index: 1; }
.ef-specs__heading { color: var(--ef-white); }
.ef-specs__heading .ef-lines { background: rgba(255, 255, 255, 0.4); }
.ef-specs__intro { color: rgba(255, 255, 255, 0.85); }
.ef-process .ef-specs__title { color: var(--ef-white); }
.ef-newsletter { color: var(--ef-white); }
.ef-newsletter__inner h2 { color: var(--ef-white); }
.ef-newsletter__inner p { color: rgba(255, 255, 255, 0.85); }
.ef-newsletter__privacy { color: rgba(255, 255, 255, 0.75); }
.ef-newsletter__privacy a { color: var(--ef-white); }
.ef-newsletter__input {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ef-white);
}
.ef-newsletter__input::placeholder { color: rgba(255, 255, 255, 0.6); }
.ef-newsletter__input:focus { background: rgba(255, 255, 255, 0.18); border-color: var(--ef-teal); }

/* B. Hero: cinematográfico sin caja (estilo mckp.live) */
.ef-hero-slider__viewport { height: clamp(560px, 86vh, 940px); }
.ef-hero-slider__arrow { display: none; }
.ef-hero-slider__slide::after {
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.42) 0%, rgba(8, 8, 10, 0.08) 40%, rgba(8, 8, 10, 0.5) 74%, rgba(8, 8, 10, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 8, 10, 0.6) 0%, rgba(8, 8, 10, 0.14) 48%, rgba(8, 8, 10, 0) 75%),
    radial-gradient(120% 100% at 70% 10%, rgba(8, 8, 10, 0) 0%, rgba(8, 8, 10, 0.45) 100%);
}
.ef-hero-slider__content {
  inset: auto;
  left: clamp(24px, 6vw, 96px);
  bottom: clamp(76px, 12vh, 128px);
  max-width: 800px;
  padding: 0;
  position: absolute;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.ef-hero-slider__content::before { display: none; }
.ef-hero-slider__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ef-teal);
}
.ef-hero-slider__kicker::before {
  content: "";
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--ef-teal), transparent);
  box-shadow: 0 0 12px rgba(var(--ef-teal-rgb), 0.6);
}
.ef-hero-slider__title {
  font-size: clamp(44px, 6.6vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--ef-white);
  text-shadow: 0 4px 40px rgba(8, 8, 10, 0.6);
  max-width: 13ch;
}
.ef-hero-slider__title .ef-hero-word:last-child {
  color: var(--ef-teal);
  text-shadow: 0 0 34px rgba(var(--ef-teal-rgb), 0.6), 0 4px 40px rgba(8, 8, 10, 0.6);
}
.ef-hero-slider__text {
  margin-top: 26px;
  max-width: 520px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.ef-hero-slider__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.ef-hero-slider__cta {
  background: var(--ef-white);
  color: var(--ef-blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(8, 8, 10, 0.35), 0 0 0 rgba(var(--ef-teal-rgb), 0);
  font-weight: 900;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.ef-hero-slider__cta:hover {
  background: var(--ef-white);
  color: var(--ef-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(8, 8, 10, 0.45), 0 0 30px rgba(var(--ef-teal-rgb), 0.45);
}
.ef-hero-slider__cta--ghost {
  background: rgba(8, 8, 10, 0.38);
  color: var(--ef-white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ef-hero-slider__cta--ghost:hover {
  background: rgba(8, 8, 10, 0.5);
  color: var(--ef-white);
  border-color: var(--ef-white);
  box-shadow: 0 14px 34px rgba(8, 8, 10, 0.35);
}
.ef-hero-slider__media img {
  filter: saturate(1.35) contrast(1.08) brightness(1.02);
}
@media (max-width: 768px) {
  .ef-hero-slider__content {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    padding: 96px 24px 56px;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0) 0%, rgba(10, 10, 12, 0.75) 100%);
  }
  .ef-hero-slider__kicker { margin-bottom: 16px; }
  .ef-hero-slider__title { font-size: clamp(34px, 10vw, 46px); }
  .ef-hero-slider__text { margin-top: 18px; font-size: 15px; }
  .ef-hero-slider__actions { margin-top: 24px; gap: 12px; }
  .ef-hero-slider__cta { padding: 13px 22px; font-size: 13px; }
}

/* C. Header glass */
.ef-header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(30, 67, 106, 0.12);
}
.ef-header--stuck {
  box-shadow: 0 8px 30px rgba(20, 40, 60, 0.1);
  background: rgba(255, 255, 255, 0.9);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .ef-header { background: var(--ef-white); }
}

/* D. CTAs con gradiente + glow */
.ef-specs__cta,
.ef-areas__cta,
.ef-why__cta,
.ef-contact__submit,
.ef-newsletter__btn {
  background: linear-gradient(135deg, var(--ef-blue) 0%, #2f9e99 120%);
  box-shadow: 0 10px 26px rgba(22, 51, 79, 0.45), 0 0 0 rgba(var(--ef-teal-rgb), 0), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
}
.ef-specs__cta:hover,
.ef-areas__cta:hover,
.ef-why__cta:hover,
.ef-contact__submit:hover,
.ef-newsletter__btn:hover {
  background: linear-gradient(135deg, var(--ef-blue-dark) 0%, var(--ef-teal) 130%);
  box-shadow: 0 12px 34px rgba(22, 51, 79, 0.5), 0 0 26px rgba(var(--ef-teal-rgb), 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* E. Ritmo de fondos */
.ef-mission {
  background-color: #F7F9FB;
  background-image:
    radial-gradient(600px 300px at 8% 0%, rgba(var(--ef-teal-rgb), 0.07), transparent 60%),
    radial-gradient(700px 380px at 92% 100%, rgba(30, 67, 106, 0.08), transparent 60%);
}
.ef-commercial {
  background: linear-gradient(165deg, var(--ef-blue-dark) 0%, var(--ef-blue) 130%);
  color: var(--ef-white);
}
.ef-commercial__heading { color: var(--ef-white); }
.ef-commercial__heading .ef-lines { background: rgba(255, 255, 255, 0.35); }
.ef-commercial__card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}
.ef-commercial__card:hover {
  box-shadow: 0 16px 40px rgba(8, 8, 10, 0.45), 0 0 0 1px rgba(var(--ef-teal-rgb), 0.25);
}
.ef-commercial__title { color: var(--ef-white); }
.ef-commercial__text { color: rgba(255, 255, 255, 0.82); }

/* F. Stats glow */
.ef-stats {
  background:
    radial-gradient(90% 140% at 50% -10%, rgba(var(--ef-teal-rgb), 0.14) 0%, rgba(var(--ef-teal-rgb), 0) 55%),
    linear-gradient(180deg, var(--ef-blue) 0%, var(--ef-blue-dark) 100%);
  box-shadow: inset 0 0 80px rgba(8, 8, 10, 0.35);
}
.ef-stats__num {
  text-shadow: 0 0 26px rgba(var(--ef-teal-rgb), 0.5), 0 2px 8px rgba(8, 8, 10, 0.5);
}
.ef-stats__item::before {
  box-shadow: 0 0 12px rgba(var(--ef-teal-rgb), 0.8);
}
.ef-stats__item {
  padding: 30px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(10px) saturate(1.3);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  box-shadow: 0 14px 38px rgba(8, 8, 10, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -20px 40px rgba(var(--ef-teal-rgb), 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.ef-stats__item:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--ef-teal-rgb), 0.55);
  box-shadow: 0 20px 48px rgba(8, 8, 10, 0.5), 0 0 32px rgba(var(--ef-teal-rgb), 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
@media (max-width: 768px) { .ef-stats__item { padding: 22px 16px; } }

/* G1. Mission icons pulso */
.ef-mission__icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #EBF1F7, #F7F9FB);
  border: 1px solid #e4e9ec;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(30, 67, 106, 0.08);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease;
}
.ef-mission__item:hover .ef-mission__icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 30px rgba(var(--ef-teal-rgb), 0.22), 0 0 0 6px rgba(var(--ef-teal-rgb), 0.12);
  animation: ef-pulse 1.6s ease-in-out 1;
}
@keyframes ef-pulse {
  0%, 100% { transform: translateY(-4px) scale(1.06); }
  50%      { transform: translateY(-4px) scale(1.02); }
}

/* G2. Process línea que crece */
.ef-process__step::after {
  background: linear-gradient(90deg, rgba(var(--ef-teal-rgb), 0.05) 0%, rgba(var(--ef-teal-rgb), 0.85) 50%, rgba(var(--ef-teal-rgb), 0.05) 100%);
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) var(--ef-step-delay, 0ms);
}
.ef-process__step.is-in::after { transform: scaleX(1); }
.ef-process__icon {
  background: linear-gradient(145deg, var(--ef-blue) 0%, var(--ef-blue-dark) 100%);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 28px rgba(8, 8, 10, 0.4), 0 0 0 2px rgba(var(--ef-teal-rgb), 0.35);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
}
.ef-process__step:hover .ef-process__icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px rgba(8, 8, 10, 0.45), 0 0 0 2px rgba(var(--ef-teal-rgb), 0.7), 0 0 24px rgba(var(--ef-teal-rgb), 0.35);
}

/* G3. Slider dots mejoradas */
.ef-hero-slider__dot { height: 5px; }
.ef-hero-slider__dot.is-active {
  box-shadow: 0 0 14px rgba(var(--ef-teal-rgb), 0.6);
}
.ef-hero-slider__dot-fill {
  background: linear-gradient(90deg, var(--ef-teal), var(--ef-white));
}

/* H. Preloader */
.ef-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 120% at 50% 30%, var(--ef-blue) 0%, var(--ef-blue-dark) 60%, rgba(8, 8, 10, 0.85) 100%);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.ef-preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ef-preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.ef-preloader__logo {
  max-height: 64px;
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(8, 8, 10, 0.5));
}
.ef-preloader__word {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--ef-white);
  text-transform: uppercase;
}
.ef-preloader__bar {
  width: 220px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.ef-preloader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--ef-teal), var(--ef-white));
  animation: ef-preloader-fill 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes ef-preloader-fill {
  from { width: 0; }
  to   { width: 100%; }
}

/* Reduced motion + touch (rediseño) */
@media (prefers-reduced-motion: reduce) {
  .ef-specs::before,
  .ef-newsletter::before { transform: none !important; }
  .ef-process__step::after { transform: scaleX(1); transition: none; }
  .ef-mission__item:hover .ef-mission__icon { animation: none; transform: none; }
  .ef-hero-slider__dot-fill { background: var(--ef-white); }
  .ef-preloader { display: none; }
}
@media (pointer: coarse) {
  .ef-specs::before,
  .ef-newsletter::before { transform: none; }
}
@media (max-width: 768px) {
  .ef-hero-slider__arrow { display: none; }
  .ef-contact { padding-bottom: 90px; }
}

/* ===== HERO CHIPS (estilo mckp.live) ===== */
.ef-hero-slider__chips {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: clamp(132px, 20vh, 180px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
}
.ef-hero-slider__chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 18px 44px rgba(8, 8, 10, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: ef-chip-float 5s ease-in-out infinite;
}
.ef-hero-slider__chip--2 { animation-delay: 0.9s; }
.ef-hero-slider__chip--3 { animation-delay: 1.8s; }
.ef-hero-slider__chip-num {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  color: var(--ef-white);
  text-shadow: 0 0 20px rgba(var(--ef-teal-rgb), 0.55);
}
.ef-hero-slider__chip-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
@keyframes ef-chip-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
@media (max-width: 768px) {
  .ef-hero-slider__chips { display: none; }
}

/* Sub-bar redundante: se oculta (mantiene markup y customizer) */
.ef-subbar { display: none; }

/* Progress bar refinada */
.ef-progress__bar {
  background: linear-gradient(90deg, var(--ef-teal), #7fe3dc);
  box-shadow: 0 0 10px rgba(var(--ef-teal-rgb), 0.6);
}

/* ===== REDESIGN 2026 v2 — mckp.live (dark cinematic) ===== */

/* 1. HEADER oscuro transparente sobre el hero */
:root {
  --ef-header-h: 86px;
}
.ef-header {
  background: rgba(8, 10, 14, 0.25);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.ef-header--stuck,
.ef-header--scrolled {
  background: rgba(8, 10, 14, 0.82);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .ef-header { background: var(--ef-dark); }
}
.ef-header__nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s ease;
}
.ef-header__nav-link:hover,
.ef-header__nav-link.is-active { color: #fff; }
.ef-header__icon { color: rgba(255, 255, 255, 0.85); }
.ef-header__icon:hover { color: #fff; }
.ef-lang__toggle { color: rgba(255, 255, 255, 0.85); }
.ef-lang__toggle:hover { color: #fff; }
.ef-header__burger { color: #fff; }
.ef-header__logo img { filter: brightness(0) invert(1); }
.ef-header__quote-btn {
  background: #fff;
  color: #0A1B2E;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ef-header__quote-btn:hover {
  background: #fff;
  color: #0A1B2E;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.ef-header__mobile-nav {
  background: rgba(8, 10, 14, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ef-header__mobile-link {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.ef-header__mobile-link:hover,
.ef-header__mobile-link.is-active { color: #fff; }
.ef-lang__menu {
  background: var(--ef-dark);
  border-color: rgba(255, 255, 255, 0.12);
}
.ef-lang__menu a { color: rgba(255, 255, 255, 0.85); }
.ef-lang__menu a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.ef-lang__menu a.is-active { color: var(--ef-teal); }

/* Hero sube bajo el header transparente */
.ef-hero-slider {
  margin-top: calc(-1 * var(--ef-header-h, 84px));
  background: var(--ef-dark);
}
@media (max-width: 768px) {
  :root { --ef-header-h: 68px; }
}

/* 2. HERO cinematográfico centrado (mckp.live) */
.ef-hero-slider__viewport { height: clamp(620px, 92vh, 1000px); }
.ef-hero-slider__content {
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  max-width: 980px;
  width: 100%;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.ef-hero-slider__kicker { justify-content: center; }
.ef-hero-slider__kicker::before { display: none; }
.ef-hero-slider__title {
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(48px, 8vw, 110px);
  max-width: 16ch;
  text-transform: none;
}
.ef-hero-slider__title .ef-hero-word:last-child { color: var(--ef-teal); }
.ef-hero-slider__text {
  margin-top: 24px;
  max-width: 560px;
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.72);
}
.ef-hero-slider__actions { justify-content: center; margin-top: 40px; }
.ef-hero-slider__cta {
  border-radius: 999px;
  padding: 16px 36px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: #fff;
  color: #0A1B2E;
  border: 1px solid transparent;
}
.ef-hero-slider__cta:hover {
  background: #fff;
  color: #0A1B2E;
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}
.ef-hero-slider__cta--ghost {
  border-radius: 999px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.ef-hero-slider__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}

/* Overlay cinematográfico: luz cenital + vignette */
.ef-hero-slider__slide::after {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 255, 255, 0.14) 0%, rgba(8, 8, 10, 0) 38%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.55) 0%, rgba(8, 8, 10, 0.05) 42%, rgba(8, 8, 10, 0.35) 72%, rgba(8, 8, 10, 0.9) 100%),
    radial-gradient(130% 120% at 50% 50%, rgba(8, 8, 10, 0) 55%, rgba(8, 8, 10, 0.55) 100%);
}
.ef-hero-slider__media img {
  filter: saturate(1.4) contrast(1.12) brightness(0.96);
}

/* 3. GALERÍA AUTO-ROTATORIA full-bleed (estilo mckp.live "Just Dropped") */
.ef-gallery {
  position: relative;
  background: #000;
  color: #fff;
  padding: clamp(72px, 10vw, 140px) 0 clamp(56px, 8vw, 110px);
  overflow: hidden;
}
.ef-gallery__head {
  max-width: 1200px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  padding: 0 24px;
  text-align: center;
}
.ef-gallery__kicker {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ef-teal);
}
.ef-gallery__title {
  margin: 0;
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #fff;
}
.ef-gallery__sub {
  margin: 20px auto 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.ef-gallery__stage {
  position: relative;
  width: 100%;
  height: clamp(420px, 62vw, 760px);
  max-height: 78vh;
  overflow: hidden;
}
.ef-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s ease;
  z-index: 1;
}
.ef-gallery__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.ef-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.35) contrast(1.1) brightness(0.95);
}
.ef-gallery__slide.is-active img { animation: ef-gallery-kenburns 9s ease-out forwards; }
@keyframes ef-gallery-kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.ef-gallery__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.35) 0%, rgba(8, 8, 10, 0) 45%, rgba(8, 8, 10, 0.85) 100%),
    radial-gradient(130% 120% at 50% 50%, rgba(8, 8, 10, 0) 55%, rgba(8, 8, 10, 0.5) 100%);
}
.ef-gallery__caption {
  position: absolute;
  left: clamp(24px, 6vw, 96px);
  bottom: clamp(28px, 5vw, 64px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.ef-gallery__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ef-teal);
}
.ef-gallery__name {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
}
.ef-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.ef-gallery__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.ef-gallery__dot.is-active {
  background: var(--ef-teal);
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(var(--ef-teal-rgb), 0.6);
}
.ef-gallery__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 36px auto 0;
  padding: 15px 34px;
  border-radius: 999px;
  background: #fff;
  color: #0A1B2E;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ef-gallery__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .ef-hero-slider__content {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    padding: 0 20px;
    background: none;
  }
  .ef-hero-slider__title { font-size: clamp(36px, 11vw, 52px); }
  .ef-hero-slider__text { font-size: 15px; }
  .ef-hero-slider__actions { margin-top: 26px; gap: 12px; }
  .ef-hero-slider__cta { padding: 13px 24px; font-size: 12px; }
  .ef-gallery__stage { height: clamp(340px, 110vw, 480px); }
  .ef-gallery__caption { left: 20px; bottom: 20px; }
  .ef-gallery__name { font-size: 22px; }
  .ef-gallery__title { font-size: clamp(34px, 10vw, 48px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ef-gallery__slide { transition: none; }
  .ef-gallery__slide.is-active img { animation: none; }
  .ef-gallery__slide:not(.is-active) { display: none; }
  .ef-hero-slider__slide.is-active .ef-hero-slider__media img { animation: none; }
  .ef-header { transition: none; }
}

/* ===== REFINAMIENTO 2026 v3 — fade cinematográfico + sombras hero + carruseles premium ===== */

/* 1. FADE CINEMÁTICO del hero: crossfade más lento + zoom de asentamiento */
.ef-hero-slider__slide {
  transition: opacity 1.5s ease, visibility 1.5s ease;
}
.ef-hero-slider__media img {
  transition: transform 2.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ef-hero-slider__slide:not(.is-active) .ef-hero-slider__media img {
  transform: scale(1.14);
}
.ef-hero-slider__slide.is-active .ef-hero-slider__media img {
  transform: scale(1);
  animation: none;
}

/* 2. SOMBRAS de texto para que el contenido resalte sobre la foto */
.ef-hero-slider__kicker {
  font-weight: 700;
  color: var(--ef-teal-light);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 4px 16px rgba(0, 0, 0, 0.7), 0 0 24px rgba(var(--ef-teal-rgb), 0.35);
}
.ef-hero-slider__title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 12px 32px rgba(0, 0, 0, 0.7), 0 36px 90px rgba(0, 0, 0, 0.6);
}
.ef-hero-slider__text {
  color: #fff;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 8px 26px rgba(0, 0, 0, 0.7);
}
.ef-hero-slider__title .ef-hero-word:last-child {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85), 0 12px 32px rgba(0, 0, 0, 0.7), 0 0 52px rgba(var(--ef-teal-rgb), 0.55);
}
.ef-hero-slider__content::before {
  content: "";
  position: absolute;
  inset: -60%;
  z-index: -1;
  background: radial-gradient(58% 58% at 50% 46%, rgba(8, 8, 10, 0.68), rgba(8, 8, 10, 0) 74%);
}

/* 3. CARRUSELES PREMIUM (Servicios + Proyectos Destacados): secciones dark cinematic */
.ef-carousel {
  background: var(--ef-dark-2);
  color: #fff;
  padding: clamp(80px, 9vw, 140px) 0;
}
.ef-carousel + .ef-carousel {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ef-carousel::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  width: 900px;
  height: 440px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--ef-teal-rgb), 0.12), rgba(var(--ef-teal-rgb), 0) 70%);
  z-index: 0;
}
.ef-carousel .ef-container { position: relative; z-index: 1; }

.ef-carousel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}
.ef-carousel__heading { display: flex; flex-direction: column; gap: 10px; }
.ef-carousel__kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ef-teal);
}
.ef-carousel__head h2 {
  display: block;
  margin: 0;
}
.ef-carousel__head h2::before { display: none; }
.ef-carousel__head-link {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: none;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ef-carousel__head-link:hover { color: var(--ef-teal); }

.ef-carousel__controls { display: flex; gap: 10px; }
.ef-carousel__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.ef-carousel__arrow:hover {
  background: #fff;
  color: var(--ef-dark);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Cards glass premium */
.ef-product {
  flex: 0 0 calc(20% - 16px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.ef-product:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--ef-teal-rgb), 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(var(--ef-teal-rgb), 0.08);
}
.ef-product__media {
  background: #0B0E14;
  overflow: hidden;
}
.ef-product__media::after {
  background: linear-gradient(180deg, rgba(5, 7, 11, 0) 45%, rgba(5, 7, 11, 0.26) 100%);
}
.ef-product:hover .ef-product__media::after,
.ef-product:focus-within .ef-product__media::after { transform: none; }
.ef-product__media img {
  aspect-ratio: 16 / 10;
  filter: saturate(1.3) contrast(1.07) brightness(1.07);
}
.ef-product__body {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 20px 20px;
  min-height: 140px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.ef-product__icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(var(--ef-teal-rgb), 0.4);
  border-radius: 12px;
  color: var(--ef-teal);
  background: rgba(var(--ef-teal-rgb), 0.12);
}
.ef-product__title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #fff;
  line-height: 1.35;
  min-height: 2.7em;
}
.ef-product__title a { color: #fff; }
.ef-product__title a:hover { color: var(--ef-teal); text-decoration: none; }
.ef-product__learn {
  margin-top: 8px;
  color: var(--ef-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}
.ef-product__learn:hover { gap: 12px; text-decoration: none; color: #fff; }
.ef-product:hover .ef-product__body,
.ef-product:focus-within .ef-product__body { border-top-color: rgba(var(--ef-teal-rgb), 0.4); }

.ef-carousel__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  padding: 16px 36px;
  border-radius: 999px;
  background: #fff;
  color: #0A1B2E;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.ef-carousel__cta:hover {
  background: var(--ef-teal);
  color: #0A1B2E;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(var(--ef-teal-rgb), 0.35);
}

/* Responsive carruseles */
@media (max-width: 768px) {
  .ef-carousel__head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ef-carousel__head-link { font-size: clamp(30px, 9vw, 44px); }
  .ef-product { flex: 0 0 86%; }
  .ef-carousel__arrow { width: 46px; height: 46px; }
}

/* Reduced motion extra */
@media (prefers-reduced-motion: reduce) {
  .ef-hero-slider__slide { transition: none; }
  .ef-hero-slider__media img { transition: none; transform: none; }
  .ef-product, .ef-carousel__cta, .ef-carousel__arrow { transition: none; }
}

/* ===== REFINAMIENTO 2026 v4 — logo centrado + glow, hero más alto y espaciado ===== */

/* Header: una sola fila flex con logo absolutamente centrado */
.ef-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
}
.ef-header__nav { flex-shrink: 0; }
.ef-header__icons { flex-shrink: 0; }
.ef-header__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  z-index: 1;
}

/* Logo original del cliente: nítido, centrado, glow teal estático */
.ef-header__logo img {
  height: 64px;
  width: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(var(--ef-teal-rgb), 0.35));
}

/* Rangos medios: nav compacto para no solapar el logo centrado */
@media (min-width: 769px) and (max-width: 1100px) {
  .ef-header__nav { gap: 16px; }
  .ef-header__nav-link { font-size: 12.5px; }
}

/* Mobile: misma fila flex, logo centrado, burger/iconos en extremos */
@media (max-width: 768px) {
  .ef-header__bar {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
  }
  .ef-header__burger { position: relative; z-index: 2; }
  .ef-header__icons { position: relative; z-index: 2; }
  .ef-header__logo img { height: 50px; }
}

/* Hero más alto y textos con aire profesional */
.ef-hero-slider__viewport {
  height: clamp(680px, 96vh, 1080px);
}
.ef-hero-slider__title {
  line-height: 1.1;
}
.ef-hero-slider__text {
  margin-top: 30px;
}
.ef-hero-slider__actions {
  margin-top: 48px;
}

/* ===== REFINAMIENTO 2026 v5 — header transparente sobre el hero (frontpage) ===== */

/* Header 100% transparente sobre el hero: un solo fondo continuo */
.home .ef-header,
.front-page .ef-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}
.home .ef-header--scrolled,
.front-page .ef-header--scrolled {
  background: rgba(8, 10, 14, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradiente superior del hero para legibilidad de la nav sobre la imagen */
.ef-hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.55), rgba(8, 8, 10, 0) 180px);
}

/* ===== REFINAMIENTO 2026 v6 — kicker del hero como badge glass ===== */
.ef-hero-slider__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 26px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ef-teal-light);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Contenido del hero por encima del gradiente superior (el badge no se oscurece) */
.ef-hero-slider__content {
  z-index: 6;
}



/* =========================================================
   PROJECTS CPT (ef_project) — dark cinematic styles
   ========================================================= */
:root {
  --ef-panel: #10151D;
  --ef-panel-2: #0B0F15;
  --ef-border: rgba(255, 255, 255, 0.08);
  --ef-text-dim: rgba(236, 240, 244, 0.64);
  --ef-text: rgba(236, 240, 244, 0.92);
}

body.ef-projects-dark {
  background: var(--ef-dark);
  color: var(--ef-text);
}

/* --- Single project: hero --- */
.ef-project-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  background-color: var(--ef-dark-2);
  background-size: cover;
  background-position: center;
  padding: 90px 0 48px;
}
.ef-project-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.55) 0%, rgba(5, 7, 11, 0.35) 45%, var(--ef-dark-2) 100%);
}
.ef-project-hero--no-thumb::before { background: linear-gradient(180deg, rgba(5,7,11,0) 0%, var(--ef-dark-2) 100%); }
.ef-project-hero__inner { position: relative; z-index: 2; }
.ef-project-hero__kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ef-teal-light);
  margin: 0 0 12px;
}
.ef-project-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 14px;
}
.ef-project-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ef-text-dim);
}
.ef-project-hero__dot { color: var(--ef-teal); }

/* --- Single project: body + aside --- */
.ef-project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.ef-project-main { min-width: 0; }
.ef-project-content { font-size: 16.5px; line-height: 1.75; color: var(--ef-text); }
.ef-project-content > *:first-child { margin-top: 0; }
.ef-project-content h2, .ef-project-content h3 {
  color: var(--ef-white);
  margin-top: 1.6em;
}
.ef-project-content a { color: var(--ef-teal-light); text-decoration: underline; text-underline-offset: 3px; }

.ef-project-aside { min-width: 0; }
.ef-project-details {
  position: sticky;
  top: 100px;
  background: var(--ef-panel);
  border: 1px solid var(--ef-border);
  border-radius: 14px;
  padding: 28px;
}
.ef-project-details__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ef-teal-light);
  margin: 0 0 6px;
}
.ef-project-details__sub {
  font-size: 15px;
  color: var(--ef-text-dim);
  margin: 0 0 20px;
}
.ef-project-details__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.ef-project-details__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 0;
  border-top: 1px solid var(--ef-border);
}
.ef-project-details__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ef-text-dim);
}
.ef-project-details__value { font-size: 14.5px; font-weight: 600; color: var(--ef-white); }
.ef-project-details__value a { color: var(--ef-teal-light); }
.ef-project-aside__cta {
  display: block;
  text-align: center;
  margin-top: 18px;
  padding: 14px 22px;
  background: var(--ef-teal);
  color: #06110F;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12.5px;
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.ef-project-aside__cta:hover { background: var(--ef-teal-light); transform: translateY(-2px); }
.ef-project-aside__back {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ef-text-dim);
}
.ef-project-aside__back:hover { color: var(--ef-teal-light); }

/* --- Single project: gallery + lightbox --- */
.ef-project-gallery { padding: 56px 0; border-top: 1px solid var(--ef-border); }
.ef-project-gallery__kicker, .ef-related__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ef-teal-light);
  margin: 0 0 8px;
}
.ef-project-gallery__head h2, .ef-related__head h2 { font-size: 1.6rem; margin: 0 0 26px; }
.ef-project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ef-project-gallery__item {
  position: relative;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.ef-project-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ef-project-gallery__item:hover img { transform: scale(1.05); }

.ef-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 7, 11, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px;
}
.ef-lightbox.is-open { opacity: 1; visibility: visible; }
.ef-lightbox__frame {
  max-width: min(1000px, 100%);
  margin: 0;
  text-align: center;
}
.ef-lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.ef-lightbox__cap { margin-top: 14px; color: var(--ef-text-dim); font-size: 14px; }
.ef-lightbox__btn {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ef-white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.ef-lightbox__btn:hover { background: var(--ef-teal); color: #06110F; }
.ef-lightbox__close { top: 22px; right: 22px; }
.ef-lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }
.ef-lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }

/* --- Single project: related --- */
.ef-related { padding: 40px 0 64px; }
.ef-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* --- Project cards (shared: grid + carousel) --- */
.ef-project-card { min-width: 0; }
.ef-project-card__media {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ef-panel-2);
}
.ef-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.ef-project-card:hover .ef-project-card__media img { transform: scale(1.06); }
.ef-project-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0) 45%, rgba(5, 7, 11, 0.72) 100%);
  transition: opacity 0.3s ease;
}
.ef-project-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--ef-teal);
  color: #06110F;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.ef-project-card__body { padding: 14px 4px 0; }
.ef-project-card__title {
  font-size: 16.5px;
  margin: 0 0 5px;
}
.ef-project-card__title a { color: var(--ef-white); }
.ef-project-card__title a:hover { color: var(--ef-teal-light); }
.ef-project-card__loc {
  margin: 0;
  font-size: 13px;
  color: var(--ef-text-dim);
}

/* --- Homepage carousel card sizing --- */
.ef-carousel__viewport .ef-project-card {
  flex: 0 0 auto;
  width: 360px;
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .ef-carousel__viewport .ef-project-card { width: 78vw; }
}

/* --- Archive: header band, chips, grid, pagination --- */
.ef-projects-band {
  padding: 96px 0 48px;
  background: var(--ef-dark-2);
  border-bottom: 1px solid var(--ef-border);
}
.ef-projects-band__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ef-teal-light);
  margin: 0 0 10px;
}
.ef-projects-band h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 0 0 12px; }
.ef-projects-band p:not(.ef-projects-band__kicker) { max-width: 640px; color: var(--ef-text-dim); margin: 0; }
.ef-projects-filters { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 28px; padding-bottom: 8px; }
.ef-chip {
  padding: 8px 18px;
  border: 1px solid var(--ef-border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ef-text-dim);
  background: var(--ef-panel);
  transition: all 0.25s ease;
}
.ef-chip:hover { border-color: var(--ef-teal); color: var(--ef-white); }
.ef-chip.is-active { background: var(--ef-teal); border-color: var(--ef-teal); color: #06110F; }
.ef-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 28px 0 8px;
}
.ef-projects-pagination { padding: 24px 0 64px; }
.ef-projects-pagination .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.ef-projects-pagination .page-numbers {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ef-border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ef-text-dim);
  background: var(--ef-panel);
  transition: all 0.25s ease;
}
.ef-projects-pagination .page-numbers:hover { border-color: var(--ef-teal); color: var(--ef-white); }
.ef-projects-pagination .page-numbers.current { background: var(--ef-teal); border-color: var(--ef-teal); color: #06110F; font-weight: 700; }
.ef-projects-empty { padding: 60px 0; text-align: center; color: var(--ef-text-dim); }

/* --- Gallery slides: clickable link + hover arrow --- */
.ef-gallery__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.ef-gallery__link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ef-gallery__slide:hover .ef-gallery__link img { transform: scale(1.04); }
.ef-gallery__arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ef-teal);
  color: #06110F;
  font-size: 18px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ef-gallery__slide:hover .ef-gallery__arrow { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .ef-project-layout { grid-template-columns: 1fr; gap: 32px; }
  .ef-project-details { position: static; }
  .ef-project-gallery__grid, .ef-related__grid, .ef-projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ef-project-gallery__grid, .ef-related__grid, .ef-projects-grid { grid-template-columns: 1fr; }
}
/* Align card footers across different title lengths */
.ef-project-card {
  display: flex;
  flex-direction: column;
}
.ef-project-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ef-project-card__loc {
  margin-top: auto;
}
/* Force light headings on dark project templates (theme h1-h3 default to dark) */
body.ef-projects-dark .ef-project-hero__title,
body.ef-projects-dark .ef-projects-band h1,
body.ef-projects-dark .ef-project-gallery__head h2,
body.ef-projects-dark .ef-related__head h2 {
  color: var(--ef-white);
}
/* Override theme's global light-theme typography inside dark project content */
body.ef-projects-dark .ef-project-content p { color: var(--ef-text); }
body.ef-projects-dark .ef-project-content ul,
body.ef-projects-dark .ef-project-content ol {
  list-style: revert;
  margin: 0 0 1em 24px;
  padding-left: 0;
  color: var(--ef-text);
}
body.ef-projects-dark .ef-project-content li { margin-bottom: 6px; }

/* ===== OUR SERVICES — BENTO GRID ===== */
.ef-services {
  position: relative;
  background: var(--ef-dark-2);
  color: #fff;
  padding: clamp(80px, 9vw, 140px) 0;
}
.ef-services::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  width: 900px;
  height: 440px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--ef-teal-rgb), 0.12), rgba(var(--ef-teal-rgb), 0) 70%);
  z-index: 0;
}
.ef-services .ef-container { position: relative; z-index: 1; }
.ef-services + .ef-carousel {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ef-services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}
.ef-services__heading { display: flex; flex-direction: column; gap: 10px; }
.ef-services__kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ef-teal);
}
.ef-services__title {
  margin: 0;
}
.ef-services__title::before { display: none; }
.ef-services__title a {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: none;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ef-services__title a:hover { color: var(--ef-teal); }
.ef-services__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 16px 36px;
  border-radius: 999px;
  background: #fff;
  color: #0A1B2E;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.ef-services__cta:hover {
  background: var(--ef-teal);
  color: #0A1B2E;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(var(--ef-teal-rgb), 0.35);
}
.ef-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}
.ef-service {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.ef-service--featured {
  grid-column: span 2;
  grid-row: span 2;
}
.ef-service:hover,
.ef-service:focus-within {
  transform: translateY(-6px);
  border-color: rgba(var(--ef-teal-rgb), 0.45);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(var(--ef-teal-rgb), 0.08);
}
.ef-service__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}
.ef-service__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0B0E14;
}
.ef-service:not(.ef-service--featured) .ef-service__media { aspect-ratio: 4 / 3; }
.ef-service--featured .ef-service__media { aspect-ratio: auto; flex: 1 1 0; min-height: 0; }
.ef-service--featured .ef-service__body { flex: 0 1 auto; }
.ef-service__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.3) contrast(1.07) brightness(1.07);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.4s ease;
}
.ef-service__img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.ef-service__link:hover .ef-service__img-main,
.ef-service__link:focus-visible .ef-service__img-main { transform: scale(1.07); }
.ef-service__link:hover .ef-service__img-hover,
.ef-service__link:focus-visible .ef-service__img-hover { opacity: 1; }
.ef-service__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.6) 0%, rgba(5, 7, 11, 0) 30%, rgba(5, 7, 11, 0) 60%, rgba(5, 7, 11, 0.62) 100%);
  pointer-events: none;
}
.ef-service__index {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.95);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 10px rgba(5, 7, 11, 0.7), 0 1px 2px rgba(5, 7, 11, 0.85);
}
.ef-service__icon {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(var(--ef-teal-rgb), 0.5);
  border-radius: 14px;
  color: var(--ef-teal);
  background: rgba(5, 7, 11, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.ef-service__link:hover .ef-service__icon,
.ef-service__link:focus-visible .ef-service__icon {
  background: var(--ef-teal);
  color: #0A1B2E;
  transform: translateY(-3px) rotate(-6deg);
}
.ef-service__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 22px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.ef-service__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}
.ef-service:not(.ef-service--featured) .ef-service__title {
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ef-service--featured .ef-service__title {
  font-size: 26px;
  line-height: 1.15;
  max-width: 14ch;
}
.ef-service__excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ef-service--featured .ef-service__excerpt {
  -webkit-line-clamp: 3;
  font-size: 15px;
}
.ef-service__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  color: var(--ef-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.25s ease, color 0.25s ease;
}
.ef-service__more svg { transition: transform 0.25s ease; }
.ef-service__link:hover .ef-service__more,
.ef-service__link:focus-visible .ef-service__more { gap: 12px; color: #fff; }
.ef-service__link:hover .ef-service__more svg,
.ef-service__link:focus-visible .ef-service__more svg { transform: translateX(3px); }

@media (max-width: 1024px) {
  .ef-services__grid { grid-template-columns: repeat(2, 1fr); }
  .ef-service--featured { grid-column: span 2; grid-row: span 1; }
  .ef-service--featured .ef-service__title { max-width: none; }
}
@media (max-width: 640px) {
  .ef-services__head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 32px; }
  .ef-services__grid { grid-template-columns: 1fr; }
  .ef-service--featured { grid-column: span 1; }
  .ef-service--featured .ef-service__media { flex: none; aspect-ratio: 4 / 3; }
  .ef-service--featured .ef-service__title { font-size: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  .ef-service,
  .ef-service__media img,
  .ef-service__icon,
  .ef-service__more,
  .ef-service__more svg { transition: none; }
  .ef-service__img-hover { display: none; }
}

/* ===== 8. FEATURED PROJECTS — KALIUM FADE-SLIDE GRID (clon de demo.kaliumtheme.com/construction) ===== */
.ef-projects-home {
  position: relative;
  background: var(--ef-dark-2);
  padding: clamp(80px, 9vw, 140px) 0;
}
.ef-projects-home::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  width: 900px;
  height: 440px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--ef-teal-rgb), 0.12), rgba(var(--ef-teal-rgb), 0) 70%);
  z-index: 0;
}
.ef-projects-home .ef-container { position: relative; z-index: 1; }
.ef-projects-home + .ef-section { border-top: 1px solid rgba(255, 255, 255, 0.06); }

/* Heading centrado estilo Kalium: h2 uppercase + sub */
.ef-projects-home__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.ef-projects-home__title { margin: 0; }
.ef-projects-home__title::before { display: none; }
.ef-projects-home__title a {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ef-projects-home__title a:hover { color: var(--ef-teal); }
.ef-projects-home__sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ef-text-dim);
}

/* Grid full-bleed (fuera del container): tiles adosados borde a borde */
.ef-projects-home__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}

/* Tile Kalium: imagen full-bleed sin texto en reposo */
.ef-project-card--kalium {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0B0E14;
  aspect-ratio: 655 / 545;
  text-decoration: none;
}
.ef-project-card--kalium .ef-project-card__thumb {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}
.ef-project-card--kalium img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}
.ef-project-card--kalium:focus-visible { outline: 2px solid var(--ef-teal); outline-offset: -2px; }

/* Hover fade-slide de Kalium: overlay acento fades in, info centrada sube */
.ef-project-card--kalium .ef-project-card__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ef-teal);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.ef-project-card--kalium:hover .ef-project-card__hover,
.ef-project-card--kalium:focus-within .ef-project-card__hover { opacity: 0.9; }
.ef-project-card--kalium .ef-project-card__info {
  text-align: center;
  padding: 0 24px;
}
.ef-project-card--kalium .ef-project-card__title {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(26px);
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.1s;
}
.ef-project-card--kalium .ef-project-card__sub {
  margin: 0;
  padding-top: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  opacity: 0;
  transform: translateY(26px);
  transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.2s;
}
.ef-project-card--kalium:hover .ef-project-card__title,
.ef-project-card--kalium:hover .ef-project-card__sub,
.ef-project-card--kalium:focus-within .ef-project-card__title,
.ef-project-card--kalium:focus-within .ef-project-card__sub { opacity: 1; transform: translateY(0); }

/* Stagger reveal */
@keyframes ef-project-rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ef-projects-home__grid.is-visible .ef-project-card--kalium {
  animation: ef-project-rise 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
}
.ef-projects-home__grid.is-visible .ef-project-card--kalium:nth-child(2) { animation-delay: 0.08s; }
.ef-projects-home__grid.is-visible .ef-project-card--kalium:nth-child(3) { animation-delay: 0.16s; }
.ef-projects-home__grid.is-visible .ef-project-card--kalium:nth-child(4) { animation-delay: 0.24s; }
.ef-projects-home__grid.is-visible .ef-project-card--kalium:nth-child(5) { animation-delay: 0.32s; }
.ef-projects-home__grid.is-visible .ef-project-card--kalium:nth-child(n+6) { animation-delay: 0.4s; }

@media (max-width: 1024px) {
  .ef-projects-home__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ef-projects-home__grid { grid-template-columns: repeat(2, 1fr); }
  .ef-project-card--kalium .ef-project-card__title { font-size: 18px; }
  .ef-project-card--kalium .ef-project-card__sub { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .ef-project-card--kalium .ef-project-card__hover,
  .ef-project-card--kalium .ef-project-card__title,
  .ef-project-card--kalium .ef-project-card__sub { transition: none; }
  .ef-project-card--kalium:hover .ef-project-card__hover,
  .ef-project-card--kalium:focus-within .ef-project-card__hover { opacity: 1; }
  .ef-projects-home__grid.is-visible .ef-project-card--kalium { animation: none; }
}

/* ===== 9. PROCESS — zigzag checkerboard (inspirado en Wilmer "Our Process") ===== */
.ef-specs__bgtext {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-weight: 900;
  font-size: clamp(96px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--ef-teal-rgb), 0.28);
  opacity: 0.5;
}
.ef-specs__heading,
.ef-specs__intro,
.ef-process-grid { position: relative; z-index: 1; }

.ef-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 1200px;
  margin: 56px auto 0;
}
.ef-process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 34px 28px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid var(--ef-teal);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.ef-process-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 26px rgba(var(--ef-teal-rgb), 0.28);
  border-bottom-color: var(--ef-teal);
}
.ef-process-card__num {
  font-weight: 900;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--ef-teal);
  opacity: 0.85;
}
.ef-process-card__icon { display: inline-flex; width: 44px; height: 44px; color: var(--ef-teal); }
.ef-process-card__icon svg { width: 100%; height: 100%; display: block; }
.ef-process-card__kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ef-teal);
}
.ef-process-card__title { margin: 0; font-size: 19px; font-weight: 700; line-height: 1.3; color: var(--ef-white); }
.ef-process-card__text { margin: 0; font-size: 14px; line-height: 1.7; color: var(--ef-text-dim); }

.ef-process-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: grayscale(0.35) contrast(1.05);
  transition: filter 0.35s ease, transform 0.35s ease;
}
.ef-process-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1); }
.ef-process-img:hover { filter: none; }
.ef-process-img:hover img { transform: scale(1.05); }

@media (max-width: 1100px) {
  .ef-process-grid { gap: 20px; }
  .ef-process-card { padding: 28px 22px; }
}
@media (max-width: 900px) {
  .ef-process-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
  .ef-process-img { display: none; }
  .ef-specs__bgtext { font-size: clamp(64px, 26vw, 120px); opacity: 0.32; }
}
@media (prefers-reduced-motion: reduce) {
  .ef-process-card,
  .ef-process-img,
  .ef-process-img img { transition: none !important; transform: none !important; }
}

/* ===== 14. FOOTER — REDESIGN PREMIUM (inspirado en Wilmer/Qode, generado con chatin-mcp) ===== */
.ef-footer{background:var(--ef-blue-dark);color:#fff}
.ef-footer__grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1.2fr 1.3fr;gap:48px;padding:72px 40px 56px;max-width:1440px;margin:0 auto;box-sizing:border-box}
.ef-footer__col h3,.ef-footer__col h4{margin:0;color:#fff;font-weight:700}
.ef-footer__col-title{display:inline-block;text-transform:uppercase;letter-spacing:.14em;font-size:13px;color:#fff;margin-bottom:18px;position:relative}
.ef-footer__col-title::after{content:"";position:absolute;right:auto;left:0;bottom:-6px;width:28px;height:2px;background:var(--ef-teal);opacity:.95}
.ef-footer__blurb{font-size:13px;line-height:1.7;color:var(--ef-text-dim);margin:12px 0 18px}
.ef-footer__hours{display:flex;gap:10px;align-items:center;font-size:13px;color:var(--ef-text-dim)}
.ef-footer__hours-icon{color:var(--ef-teal);display:inline-flex}
.ef-footer__trust{list-style:none;margin:20px 0 0;padding:0;display:flex;flex-direction:column;gap:10px}
.ef-footer__trust li{display:flex;gap:10px;align-items:flex-start;font-size:13px;color:#bbb}
.ef-footer__trust li::before{content:none}
.ef-footer__trust-icon{color:var(--ef-teal);display:inline-flex;margin-top:1px}
.ef-footer__menu{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.ef-footer__menu a{position:relative;font-size:13px;color:#bbb;text-decoration:none;transition:color .3s}
.ef-footer__menu a:hover{color:#fff}
.ef-footer__menu a::after{content:"";position:absolute;left:0;bottom:-3px;height:1px;width:100%;background:var(--ef-teal);transform:scaleX(0);transform-origin:left;transition:transform .3s}
.ef-footer__menu a:hover::after{transform:scaleX(1)}
.ef-footer__contact{display:flex;flex-direction:column;gap:12px;margin-bottom:18px}
.ef-footer__contact-line{display:flex;gap:12px;align-items:flex-start;font-size:13px;color:var(--ef-text-dim)}
.ef-footer__contact-line-icon{color:var(--ef-teal);display:inline-flex;margin-top:2px;flex-shrink:0}
.ef-footer__contact-line a,.ef-footer__contact-line-text{color:var(--ef-text-dim);text-decoration:none;transition:color .3s}
.ef-footer__contact-line a:hover,.ef-footer__contact-line-text:hover{color:var(--ef-teal)}
.ef-footer__col-title--help{margin-top:18px;font-size:11px}
.ef-footer__form{display:flex;flex-direction:column;gap:10px;margin:0 0 14px}
.ef-footer__input{padding:13px 14px;border:1px solid #3a5573;border-radius:0;background:transparent;color:#fff;font-family:inherit;font-size:13px;width:100%;box-sizing:border-box;transition:border-color .15s}
.ef-footer__input::placeholder{color:#999}
.ef-footer__input:focus{outline:none;border-color:var(--ef-teal)}
.ef-footer__submit{background:#fff;color:#000;padding:13px 18px;font-size:12px;font-weight:800;letter-spacing:.1em;border:0;border-radius:0;cursor:pointer;text-transform:uppercase;transition:background .3s,color .3s}
.ef-footer__submit:hover{background:var(--ef-teal);color:#05070B}
.ef-footer__sms{border:1px solid #3a5573;padding:14px;font-size:13px;color:#ddd;line-height:1.5;margin:0 0 12px}
.ef-footer__legal{font-size:11px;color:#888;line-height:1.5;margin:0}
.ef-footer__bottom{border-top:1px solid rgba(255,255,255,.08);display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;padding:20px 40px;max-width:1440px;margin:0 auto;box-sizing:border-box}
.ef-footer__brand{font-weight:900;letter-spacing:.04em;color:var(--ef-teal)}
.ef-footer__copy{font-size:12px;color:#aaa}
.ef-footer__links{display:flex;gap:20px}
.ef-footer__links a{font-size:12px;color:#aaa;text-decoration:none;transition:color .3s}
.ef-footer__links a:hover{color:#fff}
.ef-footer__social-list{list-style:none;display:flex;gap:12px;margin:0;padding:0}
.ef-footer__social-list a,.ef-footer__social{width:40px;height:40px;border:1px solid rgba(255,255,255,.15);display:inline-flex;align-items:center;justify-content:center;color:#bbb;text-decoration:none;transition:background .3s,color .3s,border-color .3s;box-sizing:border-box}
.ef-footer__social-list a:hover,.ef-footer__social:hover{background:var(--ef-teal);border-color:var(--ef-teal);color:#05070B}

@media (max-width:1100px){
  .ef-footer__grid{grid-template-columns:repeat(2,1fr);gap:36px;padding:48px 28px 40px}
  .ef-footer__bottom{padding:18px 28px}
}
@media (max-width:640px){
  .ef-footer__grid{grid-template-columns:1fr;gap:32px;padding:36px 20px 28px}
  .ef-footer__bottom{flex-direction:column;text-align:center;justify-content:center;padding:20px 20px}
  .ef-footer__links{flex-wrap:wrap;justify-content:center}
}

.ef-mission__text{font-size:13px;color:var(--ef-text-dim);line-height:1.6;margin:10px 0 0;text-align:center;max-width:260px}
.ef-mission__item{flex-direction:column;align-items:center}
