/*
Theme Name: Grupo Colec
Theme URI: https://grupocolec.com/
Author: Grupo Colec
Description: Custom WordPress theme scaffold for Grupo Colec.
Version: 0.2.0
Requires at least: 6.5
Tested up to: 6.5
Requires PHP: 8.2
Text Domain: grupocolec
*/

:root {
  --gc-primary: #0f3d3e;
  --gc-secondary: #f6b73c;
  --gc-ink: #152323;
  --gc-muted: #5c6f70;
  --gc-surface: #f7faf8;
  --gc-white: #ffffff;
  --gc-transition-fast: 160ms ease;
  --gc-transition-base: 220ms ease;
  --gc-focus-ring: 0 0 0 3px rgba(47, 154, 112, .28);
  --gc-header-accent: #2f9a70;
  --gc-header-ink: #26302d;
  --gc-header-muted: #66736f;

  /* Brand fonts (bridged to Elementor Global Fonts on body below). */
  --gc-font-heading: Poppins, Arial, sans-serif;
  --gc-font-body: Roboto, Arial, sans-serif;

  /* Structural design tokens (CSS-only — not exposed to Elementor). */
  --gc-radius-card: 14px;
  --gc-shadow-card: 0 10px 30px rgba(10, 61, 42, .06);
  --gc-shadow-card-hover: 0 22px 48px rgba(10, 61, 42, .14);
}

/*
 * Brand bridge: Elementor Global Colors/Fonts -> gc tokens.
 * Elementor emits --e-global-* on body.elementor-kit-N, so the mapping lives on
 * body (custom properties inherit downward; :root sits above and would only see
 * the fallback). Editing Global Colors/Fonts in Elementor now cascades through
 * the whole hand-written system. Hardcoded fallbacks keep the brand intact if
 * the kit is ever reset or the DB is lost — style.css stays the source of truth.
 * Values mirror scripts/gc-elementor-kit-brand.sh.
 */
body[class*="elementor-kit-"] {
  --gc-primary: var(--e-global-color-primary, #0f3d3e);
  --gc-secondary: var(--e-global-color-secondary, #f6b73c);
  --gc-ink: var(--e-global-color-text, #152323);
  --gc-header-accent: var(--e-global-color-accent, #2f9a70);
  --gc-muted: var(--e-global-color-gcmuted, #5c6f70);
  --gc-surface: var(--e-global-color-gcsurface, #f7faf8);
  --gc-font-heading: var(--e-global-typography-primary-font-family, Poppins), Arial, sans-serif;
  --gc-font-body: var(--e-global-typography-text-font-family, Roboto), Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--gc-ink);
  font-family: var(--gc-font-body);
  font-size: 15px;
  line-height: normal;
  background: var(--gc-white);
}

a { color: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gc-header-accent);
  outline-offset: 3px;
  box-shadow: var(--gc-focus-ring);
}

h1, h2, h3, h4, h5, h6,
.gc-home-section h2,
.gc-ecosystem__intro h2,
.gc-home-service-copy h3,
.gc-company-card__name {
  font-family: var(--gc-font-heading);
}

.gc-header {
  background: var(--gc-primary);
  color: var(--gc-white);
}

.gc-footer {
  margin-top: auto;
  scroll-margin-top: 128px;
  color: var(--gc-white);
  background: var(--gc-primary, #123f34);
}

.gc-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.gc-header__inner,
.gc-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.gc-brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
}

.gc-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
}

.gc-nav .gc-social {
  margin-left: auto;
}

/* GC-92: submenu chevron button is mobile-only. */
.gc-submenu-toggle {
  display: none;
}

.gc-nav a { text-decoration: none; }

.gc-hero {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--gc-primary), #176166);
  color: var(--gc-white);
}

.gc-hero__content { max-width: 760px; }

.gc-kicker {
  color: var(--gc-secondary);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gc-hero h1 {
  margin: 16px 0;
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  line-height: 1.02;
}

.gc-hero p {
  max-width: 640px;
  color: rgba(255,255,255,.84);
  font-size: 1.15rem;
}

.gc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gc-secondary);
  color: #172020;
  font-weight: 800;
  text-decoration: none;
  transition: background-color var(--gc-transition-base), color var(--gc-transition-base), transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

.gc-button:hover,
.gc-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(246, 183, 60, .22);
}

.gc-section { padding: 72px 0; }
.gc-section--soft { background: var(--gc-surface); }

.gc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gc-card {
  padding: 28px;
  border: 1px solid rgba(15, 61, 62, .12);
  border-radius: 22px;
  background: var(--gc-white);
  box-shadow: 0 20px 50px rgba(21, 35, 35, .06);
  transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base), border-color var(--gc-transition-base);
}

.gc-card:hover,
.gc-card:focus-within {
  border-color: rgba(47, 154, 112, .28);
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(21, 35, 35, .1);
}

.gc-card h3 { margin-top: 0; }
.gc-card p { color: var(--gc-muted); }

.gc-page { padding: 56px 0; }

@media (max-width: 760px) {
  .gc-header__inner,
  .gc-footer__inner { align-items: flex-start; flex-direction: column; }
  .gc-grid { grid-template-columns: 1fr; }
  .gc-hero { padding: 72px 0; }
  .gc-footer { scroll-margin-top: 101px; }
}


.gc-page--content {
  padding: 0;
}

.gc-page__article > .elementor {
  width: 100%;
}

.gc-elementor-section-heading {
  margin: 0 0 32px;
}

.gc-elementor-section-heading--center {
  text-align: center;
}

.gc-elementor-section-heading__eyebrow {
  margin: 0 0 12px;
  color: #2f8f5b;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gc-elementor-section-heading__title {
  margin: 0;
  color: #333336;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
}

/* FAQ accordion — Recopack/Reconecta typography; native details/summary */
.gc-faq-accordion {
  padding: 60px 0;
  background: #f5f5f5;
}

.gc-faq-accordion .gc-container {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  margin: 0 auto;
}

.gc-faq-accordion__heading {
  margin: 0 0 16px;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.25;
}

.gc-faq-accordion__intro {
  margin: 0 0 28px;
  max-width: 52rem;
  color: #555;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.gc-faq-accordion__list {
  display: grid;
  gap: 12px;
}

.gc-faq-accordion__item {
  margin: 0;
  border: 1px solid rgba(53, 53, 53, .12);
  border-radius: 3px;
  background: #fff;
}

.gc-faq-accordion__question {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.gc-faq-accordion__question::-webkit-details-marker {
  display: none;
}

.gc-faq-accordion__question::after {
  content: "+";
  float: right;
  color: #91c03a;
  font-weight: 700;
}

.gc-faq-accordion__item[open] .gc-faq-accordion__question::after {
  content: "–";
}

.gc-faq-accordion__answer {
  padding: 0 22px 20px;
}

.gc-faq-accordion__answer p {
  margin: 0;
  color: #555;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  color: #111;
  border-bottom: 1px solid rgba(15, 61, 62, .08);
  box-shadow: 0 1px 0 rgba(17, 17, 17, .06);
  transform: translateZ(0);
}

.gc-header.is-scrolled {
  background: #fff;
  border-color: rgba(15, 61, 62, .08);
  box-shadow: 0 8px 20px rgba(18, 32, 27, .06);
}

.gc-header__inner {
  min-height: 126px;
  padding: 8px 0;
  gap: 18px;
  transition: min-height var(--gc-transition-base), padding var(--gc-transition-base);
}

.gc-header .gc-container {
  width: min(1120px, calc(100% - 32px));
}

.gc-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  color: #111;
  line-height: 1;
  transition: transform var(--gc-transition-base), opacity var(--gc-transition-base);
}

.gc-brand:hover,
.gc-brand:focus-visible {
  transform: translateY(-1px);
}

.gc-brand__image {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: max-width var(--gc-transition-base), max-height var(--gc-transition-base);
}

body.page-id-9 .gc-header__inner {
  min-height: 106px;
  justify-content: flex-start;
  gap: 72px;
  padding: 0;
}

body.page-id-9 .gc-header .gc-container {
  width: min(1036px, calc(100% - 32px));
}

body.page-id-9 .gc-nav {
  flex: 1 1 auto;
  justify-content: flex-start;
}

body.page-id-9 .gc-social {
  margin-left: auto;
}

body.page-id-9 .gc-brand {
  min-width: 197px;
}

body.page-id-9 .gc-nav a {
  color: #7a7a7a;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

body.page-id-9 .gc-nav .current-menu-item > a,
body.page-id-9 .gc-nav .current_page_item > a {
  color: #7a7a7a;
}

body.page-id-9 .gc-nav__list > .menu-item > a::before,
body.page-id-9 .gc-nav .menu > .menu-item > a::before {
  opacity: 0;
}

body.page-id-9 .gc-nav a:hover,
body.page-id-9 .gc-nav a:focus-visible {
  color: #7a7a7a;
  transform: none;
}

.gc-brand .custom-logo {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 58px;
  transition: max-width var(--gc-transition-base), max-height var(--gc-transition-base);
}

.gc-brand__mark {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -.08em;
}

.gc-brand__submark {
  margin-top: 2px;
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gc-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a6f4d, var(--gc-header-accent));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(10, 111, 77, .22);
  transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

.gc-menu-toggle__caption {
  display: none;
}

.gc-menu-toggle__bars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gc-menu-toggle:hover,
.gc-menu-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(10, 111, 77, .28);
}

.gc-menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.gc-nav__list,
.gc-nav .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.gc-nav {
  flex: 1 1 auto;
  justify-content: flex-end;
}

.gc-nav li {
  position: relative;
}

.gc-nav .menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -14px;
  right: -14px;
  height: 12px;
}

.gc-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border-radius: 0;
  color: var(--gc-header-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--gc-transition-base), transform var(--gc-transition-base);
}

.gc-nav a:hover,
.gc-nav a:focus-visible {
  color: #0a6f4d;
  transform: translateY(-1px);
}

.gc-nav__list > .menu-item > a::before,
.gc-nav .menu > .menu-item > a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--gc-header-accent);
  opacity: 0;
  transform: scaleX(.72);
  transform-origin: center;
  transition: opacity var(--gc-transition-fast), transform var(--gc-transition-fast);
}

.gc-nav__list > .menu-item > a:hover::before,
.gc-nav__list > .menu-item > a:focus-visible::before,
.gc-nav .menu > .menu-item > a:hover::before,
.gc-nav .menu > .menu-item > a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

body.home .gc-nav__list > .menu-item:first-child > a,
body.page-id-6 .gc-nav a[href*="/recopack/"],
body.page-id-381 .gc-nav a[href*="/ley-del-arbol/"],
.gc-nav .current-menu-item > a,
.gc-nav .current_page_item > a {
  color: var(--gc-header-accent);
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
}

body.home .gc-nav__list > .menu-item:first-child > a::before,
body.page-id-6 .gc-nav__list > .menu-item > a[href*="/recopack/"]::before,
body.page-id-381 .gc-nav__list > .menu-item > a[href*="/ley-del-arbol/"]::before,
.gc-nav .current-menu-item > a::before,
.gc-nav .current_page_item > a::before {
  opacity: 1;
  transform: scaleX(1);
}

.gc-nav .menu-item-has-children > a::after {
  content: "⌄";
  width: auto;
  height: auto;
  margin-left: .55em;
  border: 0;
  font-size: .86em;
  line-height: 1;
  transform: translateY(-.05em);
}

.gc-nav .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 278px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  border: 0;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 32, 27, .14);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity var(--gc-transition-fast), transform var(--gc-transition-fast), visibility var(--gc-transition-fast);
}

.gc-nav li:hover > .sub-menu,
.gc-nav li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
}

.gc-nav .sub-menu a {
  display: flex;
  min-height: 38px;
  padding: 8px 18px;
  border: 0;
  border-radius: 0;
  color: var(--gc-header-ink);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.25;
}

.gc-nav .sub-menu a:hover,
.gc-nav .sub-menu a:focus-visible {
  color: #0a6f4d;
  background: rgba(47, 154, 112, .06);
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .gc-header__inner {
    min-height: 101px;
    flex-direction: row;
    align-items: center;
    padding: 8px 0;
  }

  .gc-brand {
    align-items: flex-start;
    min-width: 0;
  }

  .gc-brand .custom-logo {
    max-width: 170px;
    max-height: 56px;
  }

  .gc-brand__mark {
    font-size: 2.8rem;
  }

  .gc-brand__submark {
    max-width: 160px;
    font-size: .42rem;
  }

  .gc-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .gc-header.is-menu-open .gc-menu-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .gc-header.is-menu-open .gc-menu-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .gc-header.is-menu-open .gc-menu-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .gc-nav {
    --gc-mobile-nav: #449372;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: min(520px, calc(100vw - 32px));
    max-height: calc(100vh - 116px);
    padding: 0;
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(15, 61, 62, .10);
    border-radius: 4px;
    box-shadow: 0 18px 48px rgba(18, 32, 27, .16);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate(-50%, -8px);
    transition: opacity var(--gc-transition-base), transform var(--gc-transition-base), visibility var(--gc-transition-base);
  }

  .gc-header.is-menu-open .gc-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate(-50%, 0);
  }

  .gc-nav__list,
  .gc-nav .menu {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .gc-nav li {
    width: 100%;
    max-width: 100%;
    display: block;
  }

  .gc-nav .menu-item-has-children::after {
    display: none;
  }

  .gc-nav a {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 12px 18px;
    color: var(--gc-mobile-nav);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: none;
    transform: none;
  }

  .gc-nav a:hover,
  .gc-nav a:focus-visible {
    color: var(--gc-mobile-nav);
    transform: none;
  }

  .gc-nav__list > .menu-item > a::before,
  .gc-nav .menu > .menu-item > a::before {
    display: none;
  }

  /* Home / brand row: always green bar */
  .gc-nav__list > .menu-item:first-child > a,
  .gc-nav .menu > .menu-item:first-child > a,
  body.home .gc-nav__list > .menu-item:first-child > a {
    background: var(--gc-mobile-nav);
    color: #fff;
  }

  .gc-nav__list > .menu-item:first-child > a:hover,
  .gc-nav__list > .menu-item:first-child > a:focus-visible,
  body.home .gc-nav__list > .menu-item:first-child > a:hover,
  body.home .gc-nav__list > .menu-item:first-child > a:focus-visible {
    background: var(--gc-mobile-nav);
    color: #fff;
  }

  /* GC-92: chevron is a separate button so the parent <a> can navigate.
     GC-95: absolute toggle (out of flow) so parent labels center on full width
     like leaf items — the GC-92 1fr|52px grid centered text only in col1. */
  .gc-nav .menu-item-has-children > a::after {
    display: none;
  }

  .gc-nav .menu-item-has-children {
    position: relative;
    display: block;
  }

  .gc-nav .menu-item-has-children > a {
    width: 100%;
  }

  .gc-nav .gc-submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-height: 52px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gc-mobile-nav);
    cursor: pointer;
  }

  .gc-nav .gc-submenu-toggle::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0 5px;
    border-color: currentColor transparent transparent transparent;
  }

  .gc-nav .menu-item-has-children > .sub-menu {
    width: 100%;
  }

  .gc-nav .menu-item-has-children.is-submenu-open > a,
  .gc-nav .menu-item-has-children.is-submenu-open > .gc-submenu-toggle {
    background: var(--gc-mobile-nav);
    color: #fff;
  }

  .gc-nav .menu-item-has-children.is-submenu-open > a:hover,
  .gc-nav .menu-item-has-children.is-submenu-open > a:focus-visible,
  .gc-nav .menu-item-has-children.is-submenu-open > .gc-submenu-toggle:hover,
  .gc-nav .menu-item-has-children.is-submenu-open > .gc-submenu-toggle:focus-visible {
    background: var(--gc-mobile-nav);
    color: #fff;
  }

  body.home .gc-nav .menu-item-has-children.is-submenu-open > a,
  body.page-id-6 .gc-nav .menu-item-has-children.is-submenu-open > a,
  body.page-id-9 .gc-nav .menu-item-has-children.is-submenu-open > a,
  .gc-nav .menu-item-has-children.is-submenu-open.current-menu-item > a,
  .gc-nav .menu-item-has-children.is-submenu-open.current_page_item > a,
  .gc-nav .menu-item-has-children.is-submenu-open.current-menu-ancestor > a {
    background: var(--gc-mobile-nav);
    color: #fff;
  }

  .gc-nav .current-menu-item > a,
  .gc-nav .current_page_item > a {
    color: var(--gc-mobile-nav);
    background: transparent;
  }

  .gc-nav__list > .menu-item:first-child.current-menu-item > a,
  .gc-nav__list > .menu-item:first-child.current_page_item > a,
  .gc-nav .menu-item-has-children.is-submenu-open.current-menu-item > a,
  .gc-nav .menu-item-has-children.is-submenu-open.current_page_item > a {
    background: var(--gc-mobile-nav);
    color: #fff;
  }

  /* Parents start collapsed.
     Neutralize desktop dropdown positioning (left:50% + translate(-50%)) which
     otherwise wins via li:hover / li:focus-within on the first tap. */
  .gc-nav .sub-menu,
  .gc-nav li:hover > .sub-menu,
  .gc-nav li:focus-within > .sub-menu,
  .gc-nav .menu-item-has-children.is-submenu-open > .sub-menu,
  .gc-nav .menu-item-has-children.is-submenu-open:hover > .sub-menu,
  .gc-nav .menu-item-has-children.is-submenu-open:focus-within > .sub-menu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 4px 0 10px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .gc-nav .sub-menu {
    display: none;
    list-style: none;
  }

  .gc-nav .menu-item-has-children.is-submenu-open > .sub-menu,
  .gc-nav .menu-item-has-children.is-submenu-open:hover > .sub-menu,
  .gc-nav .menu-item-has-children.is-submenu-open:focus-within > .sub-menu {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .gc-nav .sub-menu > .menu-item {
    width: 100%;
    max-width: 100%;
  }

  .gc-nav .sub-menu a,
  .gc-nav .sub-menu a:hover,
  .gc-nav .sub-menu a:focus-visible {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    text-align: left;
    min-height: 40px;
    padding: 8px 18px;
    color: var(--gc-mobile-nav);
    font-size: .98rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    transform: none;
  }

  .gc-nav .sub-menu a:hover,
  .gc-nav .sub-menu a:focus-visible {
    background: rgba(68, 147, 114, .08);
  }

  /* Override per-page desktop header skins on mobile accordion */
  body.page-id-9 .gc-nav a,
  body.page-id-6 .gc-nav a {
    color: var(--gc-mobile-nav);
    font-size: 1.05rem;
    font-weight: 700;
  }

  body.page-id-9 .gc-nav__list > .menu-item:first-child > a,
  body.page-id-6 .gc-nav__list > .menu-item:first-child > a,
  body.page-id-9 .gc-nav .menu-item-has-children.is-submenu-open > a,
  body.page-id-6 .gc-nav .menu-item-has-children.is-submenu-open > a {
    background: var(--gc-mobile-nav);
    color: #fff;
  }

  body.page-id-9 .gc-nav .sub-menu a,
  body.page-id-6 .gc-nav .sub-menu a {
    color: var(--gc-mobile-nav);
    font-weight: 500;
    font-size: .98rem;
  }
}

@media (max-width: 900px) {
  .gc-header .gc-menu-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: auto;
  }
}

.gc-social {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  margin-left: 8px;
}

.gc-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  color: #313131;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  opacity: 1;
  transition: color var(--gc-transition-base), background var(--gc-transition-base), border-color var(--gc-transition-base);
}

.gc-social a .gc-social__icon {
  pointer-events: none;
}

.gc-social a:hover,
.gc-social a:focus-visible {
  color: #fff;
  background: var(--gc-header-accent, #2f9a70);
  border-color: var(--gc-header-accent, #2f9a70);
  opacity: 1;
}

.gc-whatsapp-button {
  --gc-whatsapp-bg: #2db742;
  --gc-whatsapp-color: #fff;
  --gc-whatsapp-label-width: 156px;
  --gc-whatsapp-right: 30px;
  --gc-whatsapp-bottom: 30px;
}

.gc-floating-whatsapp {
  position: fixed;
  right: var(--gc-whatsapp-right);
  bottom: var(--gc-whatsapp-bottom);
  z-index: 999999999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}


.gc-whatsapp-button--inline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}

.gc-floating-whatsapp__label {
  display: inline-flex;
  align-items: center;
  min-width: var(--gc-whatsapp-label-width);
  min-height: 34px;
  justify-content: center;
  padding: 0 16px;
  border-radius: 4px;
  background: #f5f7f9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.gc-floating-whatsapp__button {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gc-whatsapp-bg);
  box-shadow: 0 12px 28px rgba(45, 183, 66, .32);
  transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

.gc-floating-whatsapp__button svg {
  width: 34px;
  height: 34px;
  fill: var(--gc-whatsapp-color);
}

.gc-floating-whatsapp:hover .gc-floating-whatsapp__button,
.gc-floating-whatsapp:focus-visible .gc-floating-whatsapp__button {
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  /* GC-90: social icons live inside .gc-nav and show in the open mobile panel. */
  .gc-nav {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .gc-nav .gc-social {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 14px 16px 16px;
    border-top: 1px solid rgba(15, 61, 62, .10);
    gap: 10px;
  }

  body.home .gc-header__inner {
    justify-content: space-between;
  }

  body.home .gc-brand {
    align-items: flex-start;
    margin: 0;
  }

  .gc-floating-whatsapp {
    right: var(--gc-whatsapp-right);
    bottom: var(--gc-whatsapp-bottom);
  }

  .gc-floating-whatsapp__button {
    width: 56px;
    height: 56px;
  }
}


/* Header toggle final specificity guard. */
.gc-header .gc-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a6f4d, var(--gc-header-accent));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(10, 111, 77, .22);
}

@media (max-width: 900px) {
  .gc-header .gc-menu-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: auto;
  }
}


@media (max-width: 900px) {
  /* GC-103: transform is owned by gc103-header-nav.css (translateX drawer).
     Keep opacity/visibility so the panel can open if the dedicated sheet lags. */
  body.gc-menu-is-open .gc-header .gc-nav,
  .gc-header.is-menu-open .gc-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }
}

.gc-home-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: var(--gc-white);
  background:
    linear-gradient(90deg, rgba(0, 22, 18, .84), rgba(0, 64, 50, .68)),
    url('assets/home-hero.jpg') center/cover;
}

.gc-home-hero__content {
  position: relative;
  max-width: 1185px;
  padding: 78px 0 48px 42px;
  background: linear-gradient(90deg, rgba(0, 0, 0, .46), rgba(0, 0, 0, .22), transparent 72%);
}

.gc-home-hero .gc-container {
  width: min(1169px, calc(100% - 32px));
}

.gc-home-hero__content::before {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #3eb6b2;
}

.gc-home-hero__eyebrow {
  margin: 0 0 16px;
  color: #fff;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.gc-home-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
}

.gc-home-hero__br-mobile {
  display: none;
}

.gc-home-hero p:not(.gc-home-hero__eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.18rem;
}

.gc-home-hero .gc-button,
.gc-home-hero p:not(.gc-home-hero__eyebrow) {
  display: none;
}

.gc-ecosystem {
  background: var(--gc-white);
  border-bottom: 1px solid rgba(17, 17, 17, .06);
}

.gc-ecosystem .gc-container {
  width: min(1090px, calc(100% - 32px));
}

.gc-ecosystem__grid {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(0, 2.4fr);
  min-height: 382px;
  align-items: stretch;
}

.gc-ecosystem__intro {
  display: flex;
  align-items: center;
  padding: 54px 42px 54px 0;
}

.gc-ecosystem__intro h2 {
  margin: 0;
  color: #333336;
  font-size: clamp(36px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.14;
}

.gc-ecosystem__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(17, 17, 17, .18);
}

.gc-company-card {
  min-height: 320px;
  border-right: 1px solid rgba(17, 17, 17, .18);
}

.gc-company-card a {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 24px;
  color: #111;
  text-align: center;
  text-decoration: none;
  transition: background var(--gc-transition-base), transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

.gc-company-card a:hover,
.gc-company-card a:focus-visible {
  background: rgba(12, 112, 78, .06);
  transform: translateY(-2px);
}

.gc-company-card__logo {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: rgba(86, 180, 114, .34);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
}

.gc-company-card__logo img {
  display: block;
  width: auto;
  max-width: 185px;
  max-height: 86px;
  object-fit: contain;
  opacity: .34;
}

.gc-company-card:first-child .gc-company-card__logo img {
  max-width: 100px;
  max-height: 100px;
}

.gc-company-card--recopack .gc-company-card__logo {
  width: 84px;
  height: 84px;
  border: 2px solid rgba(158, 200, 72, .32);
  border-radius: 999px;
  font-size: 1.8rem;
}

.gc-company-card--placeholder .gc-company-card__logo {
  width: 76px;
  height: 76px;
  border: 2px dashed rgba(12, 112, 78, .28);
  border-radius: 999px;
  color: rgba(12, 112, 78, .34);
}

.gc-company-card__name {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.gc-company-card__description {
  display: block;
  max-width: 230px;
  font-size: 1rem;
  line-height: 1.45;
}

.gc-home-section {
  background: #fff;
}

.gc-home-section h2 {
  margin: 0 0 34px;
  color: #333336;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
}

.gc-home-services {
  padding: 60px 0 64px;
  background: #f5f5f5;
}

.gc-home-services .gc-container {
  width: min(1170px, calc(100vw - 180px));
  max-width: 1170px;
}

.gc-home-section {
  scroll-margin-top: 150px;
}

.gc-home-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-bottom: 48px;
  background: #fff;
}

.gc-home-service-row--alt {
  margin-bottom: 0;
}

.gc-home-service-media {
  position: relative;
  min-height: 330px;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #143f35;
}

.gc-home-service-media video,
.gc-home-service-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gc-home-service-media:hover video,
.gc-home-service-media:focus-visible video,
.gc-home-service-media:hover img,
.gc-home-service-media:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.04);
}

.gc-home-service-copy {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: center;
  padding: 48px 50px 64px;
  background: #fff;
}

.gc-home-service-copy__body {
  max-width: 520px;
}

.gc-home-service-copy h3 {
  margin: 0 0 22px;
  color: #2f3034;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
  overflow-wrap: anywhere;
}

.gc-home-service-copy p {
  margin: 0;
  color: #4f5054;
  font-size: 15px;
  line-height: 1.45;
}

.gc-home-link-button {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  background: #163f35;
  font-weight: 800;
  text-decoration: none;
  transition: background-color var(--gc-transition-base), color var(--gc-transition-base), letter-spacing var(--gc-transition-base);
}

.gc-home-link-button:hover,
.gc-home-link-button:focus-visible {
  background: var(--gc-header-accent);
  color: #fff;
  letter-spacing: .01em;
}


.gc-home-news {
  padding: 62px 0 72px;
  background: #fff;
}

.gc-home-news .gc-container {
  width: min(1070px, calc(100vw - 180px));
  max-width: 1070px;
}

.gc-home-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  overflow: hidden;
}

.gc-home-news article {
  overflow: hidden;
  min-height: 199px;
  background: #f5f5f5;
}

.gc-home-news a {
  display: block;
  min-height: 199px;
  color: inherit;
  text-decoration: none;
}

.gc-home-news img {
  display: block;
  width: 100%;
  height: 199px;
  object-fit: cover;
  transition: transform var(--gc-transition-base);
}

.gc-home-news a:hover img,
.gc-home-news a:focus-visible img {
  transform: scale(1.04);
}

.gc-home-value {
  padding: 70px 0;
  background: #f5f5f5;
}

.gc-home-value__grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.gc-home-value__image img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.gc-home-value__content > p {
  margin: -14px 0 24px;
  color: #5d5d5d;
  font-size: 1.05rem;
  line-height: 1.7;
}

.gc-home-value__items {
  display: grid;
  gap: 20px;
}

.gc-home-value__items article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: flex-start;
}

.gc-home-value__items span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--gc-header-accent);
  font-weight: 900;
}

.gc-home-value__items h3 {
  margin: 0 0 6px;
  color: #333336;
  font-size: 1.25rem;
}

.gc-home-value__items p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.gc-site-contact {
  padding: 56px 0 68px;
  color: var(--gc-white);
  background: var(--gc-primary, #123f34);
}

.gc-site-footer-bar {
  padding: 20px 0;
  background: #0a2a23;
  border-top: 1px solid rgba(160, 204, 180, .12);
}

.gc-site-footer-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
}

.gc-site-footer-bar__copy {
  margin: 0;
  color: rgba(160, 204, 180, .6);
  font-size: .82rem;
  font-family: Roboto, Arial, sans-serif;
}

.gc-site-footer-bar__links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.gc-site-footer-bar__legal {
  color: rgba(160, 204, 180, .75);
  font-size: .82rem;
  font-family: Roboto, Arial, sans-serif;
  text-decoration: none;
  transition: color var(--gc-transition-base);
}

.gc-site-footer-bar__legal:hover,
.gc-site-footer-bar__legal:focus-visible {
  color: #6fd39e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gc-site-footer-bar__social {
  display: flex;
  gap: 6px;
  align-items: center;
}

.gc-site-footer-bar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(160, 204, 180, .1);
  color: rgba(160, 204, 180, .75);
  font-size: 0;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  transition: background var(--gc-transition-base), color var(--gc-transition-base), transform var(--gc-transition-base);
}

.gc-site-footer-bar__social a .gc-social__icon {
  font-size: 13px;
}

.gc-site-footer-bar__social a:hover,
.gc-site-footer-bar__social a:focus-visible {
  background: var(--gc-header-accent);
  color: #fff;
  transform: translateY(-1px);
}

.gc-site-contact__grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 0;
  align-items: flex-start;
  width: min(1100px, calc(100% - 40px));
}

.gc-site-contact__brand {
  padding-right: 36px;
}

.gc-site-contact__details {
  padding: 0 36px;
  border-left: 1px solid rgba(160, 204, 180, .15);
}

.gc-site-contact__form-wrap {
  padding-left: 36px;
  border-left: 1px solid rgba(160, 204, 180, .15);
}

.gc-site-contact__brand img {
  width: min(100%, 200px);
  height: auto;
  margin: 0 0 16px;
}

.gc-site-contact__nit {
  margin: 0;
  color: rgba(160, 204, 180, .7);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .02em;
}

.gc-site-contact__details article {
  margin: 0 0 22px;
}

.gc-site-contact__details article:last-child {
  margin-bottom: 0;
}

.gc-site-contact__details h3,
.gc-site-contact__form-wrap h2 {
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(160, 204, 180, .2);
  color: rgba(160, 204, 180, .9);
  font-family: Poppins, Arial, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.gc-site-contact__details h3::after,
.gc-site-contact__form-wrap h2::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 36px;
  height: 2px;
  content: "";
  background: var(--gc-header-accent);
  border-radius: 1px;
}

.gc-site-contact__details p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .94rem;
  line-height: 1.65;
}

.gc-site-contact__details a,
.gc-contact__consent a {
  color: var(--gc-header-accent);
  text-decoration: none;
  transition: color var(--gc-transition-base);
}

.gc-site-contact__details a:hover,
.gc-site-contact__details a:focus-visible {
  color: #6fd39e;
}

.gc-contact__form {
  display: grid;
  gap: 13px;
}

.gc-contact__form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  font-weight: 400;
}

.gc-contact__form input:not([type="checkbox"]),
.gc-contact__form select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 0;
  color: #333336;
  background: #fff;
  font: inherit;
  transition: box-shadow var(--gc-transition-base), transform var(--gc-transition-base);
}

.gc-contact__consent {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  color: rgba(255, 255, 255, .8) !important;
  font-size: .95rem;
}

.gc-contact__consent input {
  margin-top: 4px;
}

.gc-contact__form button {
  min-height: 44px;
  border: 0;
  color: #fff;
  background: var(--gc-header-accent);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--gc-transition-base), transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

.gc-contact__form button:hover,
.gc-contact__form button:focus-visible {
  background: #37a875;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(47, 154, 112, .22);
}

.gc-contact__hp {
  position: absolute;
  left: -9999px;
}

.gc-contact__notice {
  margin: 0;
  padding: 12px 14px;
  border-left: 4px solid var(--gc-header-accent);
  background: #f2f8f5;
  color: #333336;
}

.gc-contact__notice--error {
  border-left-color: #b42318;
  background: #fff4f2;
}

@media (max-width: 900px) {
  .gc-home-hero {
    min-height: 459px;
    align-items: flex-start;
  }

  .gc-home-hero__content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 148px 16px 58px 54px;
  }

  .gc-home-hero .gc-container.gc-home-hero__content {
    width: 100%;
  }

  .gc-home-hero__content::before {
    top: 110px;
    bottom: 58px;
    left: 10px;
  }

  .gc-home-hero h1 {
    max-width: 335px;
    font-size: 33px;
    line-height: 1.3;
  }

  .gc-home-hero__br-mobile {
    display: initial;
  }

  .gc-ecosystem__grid {
    display: block;
  }

  .gc-ecosystem__intro {
    padding: 58px 54px 36px;
  }

  .gc-ecosystem__intro h2 {
    font-size: clamp(33px, 8vw, 40px);
  }

  .gc-recopack-partners {
    display: none;
  }

  .gc-ecosystem__cards {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .gc-company-card {
    min-height: 220px;
    border-right: 0;
    border-top: 1px solid rgba(17, 17, 17, .14);
  }

  .gc-home-services__grid {
    grid-template-columns: 1fr;
  }

  .gc-home-section h2 {
    font-size: clamp(33px, 7.2vw, 36px);
    overflow-wrap: anywhere;
  }

  .gc-home-services,
  .gc-home-news,
  .gc-home-value,
  .gc-site-contact {
    padding: 52px 0;
  }

  .gc-home-services .gc-container {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .gc-home-services h2 {
    padding-left: 40px;
  }

  .gc-home-service-row,
  .gc-home-service-row--alt {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .gc-home-service-media,
  .gc-home-service-media video,
  .gc-home-service-media img {
    min-height: 210px;
  }

  .gc-home-service-copy {
    min-height: auto;
    padding: 50px 50px 74px;
  }

  .gc-home-service-copy__body {
    max-width: 100%;
  }

  .gc-home-service-copy h3 {
    font-size: 24px;
  }

  .gc-home-news .gc-container {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .gc-home-news h2 {
    padding-left: 40px;
  }

  .gc-home-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .gc-home-value__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gc-site-contact__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gc-site-contact__brand {
    padding: 0;
    text-align: center;
  }

  .gc-site-contact__details {
    padding: 24px 0 0;
    border-left: none;
    border-top: 1px solid rgba(160, 204, 180, .15);
  }

  .gc-site-contact__form-wrap {
    padding: 24px 0 0;
    border-left: none;
    border-top: 1px solid rgba(160, 204, 180, .15);
  }

  .gc-home-news a,
  .gc-home-news article {
    min-height: 273px;
  }

  .gc-home-news img {
    height: 273px;
  }

  .gc-home-value__image img {
    min-height: 260px;
  }

  .gc-home-value__items article {
    grid-template-columns: 42px 1fr;
  }

  .gc-site-contact__brand img {
    max-width: 260px;
  }
}

/* Four-card ecosystem refinement. */
.gc-ecosystem__grid {
  grid-template-columns: minmax(355px, 355px) minmax(0, 1fr);
}

.gc-company-card__logo {
  max-width: 100%;
  min-height: 58px;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  overflow-wrap: anywhere;
}

.gc-company-card--signify .gc-company-card__logo,
.gc-company-card--reconecta .gc-company-card__logo {
  letter-spacing: -.04em;
}

.gc-company-card__description {
  font-size: .95rem;
}

.gc-recopack-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 49, 38, .82), rgba(4, 49, 38, .62)),
    url('assets/production-media/2024/08/BANNERS-PRINCIPALES-RECOPACK_Mesa-de-trabajo-1-scaled.jpg') center/cover;
}

.gc-recopack-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 900;
  line-height: 1;
}

.gc-recopack-hero p:not(.gc-home-hero__eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .92);
  font-size: 1.18rem;
}

.gc-recopack-partners {
  position: relative;
  overflow-x: hidden;
  padding: 16px 0 0;
  background: #fff;
}

.gc-recopack-partners h1 {
  display: inline-block;
  margin: 0 0 36px;
  padding: 9px 26px;
  color: #fff;
  background: #86bd1e;
  font-size: clamp(1rem, 1.7vw, 1.55rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.gc-recopack-partners h1.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gc-recopack-partners img {
  display: block;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  height: auto;
}

.gc-slider-arrow {
  position: absolute;
  top: 45%;
  z-index: 2;
  color: #000;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.gc-slider-arrow--prev {
  left: 16px;
}

.gc-slider-arrow--next {
  right: 16px;
}

.gc-slider-dots {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 32px;
}

.gc-slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #000;
}

.gc-slider-dots .is-active {
  background: #83bd1d;
}

.gc-recopack-tutorial,
.gc-recopack-clients {
  padding: 70px 0;
  background: #fff;
}

.gc-recopack-about {
  padding: 0 0 70px;
  background: #fff;
}

.gc-recopack-about__grid {
  display: grid;
  grid-template-columns: 225px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.gc-recopack-about h2,
.gc-recopack-tutorial h2,
.gc-recopack-clients h2 {
  margin: 0 0 24px;
  color: #343436;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  font-weight: 900;
  line-height: 1;
}

.gc-recopack-about__card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 42px 48px;
  color: #696a6d;
  background: #f2f2f2;
  font-size: 1.02rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.gc-video-grid,
.gc-docs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gc-video-grid a,
.gc-docs-grid a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

.gc-video-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #202020;
  border-radius: 18px;
  background: #fff;
}

.gc-video-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gc-video-grid__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid #1d1d1d;
  border-radius: 999px;
  color: #1d1d1d;
  background: rgba(255, 255, 255, .84);
  font-size: .85rem;
  transform: translate(-50%, -50%);
}

.gc-docs-grid a {
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a6f52, #8bc222);
  box-shadow: 0 16px 35px rgba(10, 111, 82, .14);
}

.gc-video-grid a:hover,
.gc-docs-grid a:hover,
.gc-video-grid a:focus-visible,
.gc-docs-grid a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(10, 111, 82, .2);
}

.gc-recopack-results {
  padding: 82px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 34, 29, .92), rgba(0, 74, 58, .82)),
    url('assets/production-media/2023/09/IMG-RECURSOS-COLEC-01-scaled.jpg') center/cover;
}

.gc-recopack-results h2,
.gc-team h2 {
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.gc-recopack-results > .gc-container > p {
  max-width: 980px;
  color: rgba(255, 255, 255, .95);
  font-size: 1.1rem;
}

.gc-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.gc-results-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  background: rgba(0, 0, 0, .22);
  backdrop-filter: blur(4px);
}

.gc-results-grid h3 {
  margin: 0 0 10px;
  color: #8ee7ff;
  font-size: 1rem;
}

.gc-results-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
}

.gc-team {
  padding: 82px 0;
  background: #f7f7f7;
}

.gc-team__members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(15, 61, 62, .08);
  border: 1px solid rgba(15, 61, 62, .10);
  border-radius: 12px;
  overflow: hidden;
}

.gc-team-member {
  display: flex;
  flex-direction: column;
  background: var(--gc-white);
  transition: background var(--gc-transition-base);
}

.gc-team-member:hover,
.gc-team-member:focus-within {
  background: rgba(15, 61, 62, .035);
}

.gc-team-member__media {
  aspect-ratio: 4 / 3;
  width: 100%;
  display: grid;
  place-items: center;
  background: var(--gc-primary);
  overflow: hidden;
}

.gc-team-member__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-team-member__avatar {
  color: rgba(255, 255, 255, .38);
  font-family: Poppins, Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}

.gc-team-member__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 20px;
}

.gc-team-member h3 {
  margin: 0 0 3px;
  color: var(--gc-ink);
  font-family: Poppins, Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.3;
}

.gc-team-member__role {
  margin: 0 0 12px;
  color: var(--gc-muted);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gc-team-member__contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
}

.gc-team-member__note {
  margin: 8px 0 0;
  color: var(--gc-muted);
  font-size: .78rem;
  line-height: 1.45;
}

.gc-team-member a {
  display: block;
  color: var(--gc-header-accent);
  font-size: .8rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.gc-team-member a:hover {
  text-decoration: underline;
}

.gc-team-member a.gc-team-member__phone {
  color: var(--gc-ink);
  font-weight: 600;
}

.gc-recopack-services {
  padding: 70px 0;
}

.gc-recopack-clients {
  background: #fff;
}

.gc-recopack-clients__grid {
  display: grid;
  grid-template-columns: minmax(275px, .85fr) minmax(0, 1.8fr);
  gap: 64px;
  align-items: flex-start;
}

.gc-recopack-clients__intro p {
  margin: 24px 0 0;
  color: #111;
  font-size: 15px;
}

.gc-progress-list {
  display: grid;
  gap: 22px;
}

.gc-progress {
  display: grid;
  gap: 6px;
  color: #111;
  font-weight: 500;
}

.gc-progress span {
  display: block;
  color: #111;
  font-size: 16px;
  line-height: 1.25;
}

.gc-progress__track {
  height: 30px;
  overflow: hidden;
  background: #ededed;
}

.gc-progress strong {
  width: var(--gc-progress);
  min-width: 42px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  color: #fff;
  background: #8cc63a;
  font-size: 12px;
  font-weight: 400;
}

.gc-recopack-services h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.gc-reconecta-choice {
  padding: 64px 16px 56px;
  color: var(--gc-ink);
  background: linear-gradient(180deg, #f4faf7 0%, #fff 100%);
  text-align: center;
}

.gc-reconecta-choice .gc-container {
  width: min(1040px, calc(100% - 32px));
}

.gc-reconecta-choice__eyebrow {
  margin: 0 0 10px;
  color: #0a6544;
  font-family: Rubik, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gc-reconecta-choice h2 {
  margin: 0 0 12px;
  color: #0a3d2a;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
}

.gc-reconecta-choice__lead {
  max-width: 620px;
  margin: 0 auto 40px;
  color: #50635b;
  font-size: 1.05rem;
  line-height: 1.5;
}

.gc-reconecta-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  text-align: left;
}

.gc-reconecta-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 36px 32px;
  border: 1px solid rgba(10, 101, 68, .14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 61, 42, .06);
  transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base), border-color var(--gc-transition-base);
}

.gc-reconecta-option:hover,
.gc-reconecta-option:focus-within {
  transform: translateY(-4px);
  border-color: rgba(10, 101, 68, .32);
  box-shadow: 0 22px 48px rgba(10, 61, 42, .14);
}

.gc-reconecta-option--producer {
  color: #fff;
  background: linear-gradient(150deg, #0a6544 0%, #0c7d52 100%);
  border-color: transparent;
}

.gc-reconecta-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  color: #0a6544;
  background: rgba(10, 101, 68, .10);
}

.gc-reconecta-option--producer .gc-reconecta-option__icon {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.gc-reconecta-option__icon svg {
  width: 28px;
  height: 28px;
}

.gc-reconecta-option h3 {
  margin: 0;
  color: #0a3d2a;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.gc-reconecta-option--producer h3 {
  color: #fff;
}

.gc-reconecta-option p {
  margin: 0;
  color: #50635b;
  font-size: 1rem;
  line-height: 1.5;
}

.gc-reconecta-option--producer p {
  color: rgba(255, 255, 255, .88);
}

.gc-reconecta-option .gc-button {
  margin-top: 6px;
  min-width: 0;
  padding: 13px 26px;
  border-radius: 8px;
  color: #fff;
  background: #0a6544;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}

.gc-reconecta-option .gc-button--light {
  color: #0a6544;
  background: #fff;
}

/* GC-69: /reconecta/ hub — two boxes under the header (no modal).
   GC-74: taller panels + vertically centered in the viewport under the header.
   GC-77: short intro above the cards.
   GC-108: two cards — forest footer #1d3f35 + gris Recopack #f5f5f5.
   Welcome badge is a RAEE pill above the heading (not a photo overlay). */
body.page-id-8 .gc-page--content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 110px);
  box-sizing: border-box;
  background-color: #f7faf8;
  background-image:
    radial-gradient(ellipse 52% 42% at 0% 100%, rgba(145, 192, 58, .16), transparent 70%),
    radial-gradient(ellipse 44% 38% at 100% 100%, rgba(29, 63, 53, .08), transparent 68%);
}

body.page-id-8.admin-bar .gc-page--content {
  min-height: calc(100vh - 142px);
}

body.page-id-8 .gc-page__article {
  width: 100%;
}

body.page-id-8 .gc-cta-selector {
  width: 100%;
  padding: 40px 16px 56px;
  background: transparent;
}

body.page-id-8 .gc-cta-selector > .gc-container {
  max-width: 960px;
  margin: 0 auto;
}

body.page-id-8 .gc-cta-selector__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 40rem;
  margin: 0 auto 36px;
  padding: 0;
  text-align: center;
}

body.page-id-8 .gc-cta-selector__intro::before {
  content: "Gestión responsable de RAEE";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 8px 18px 8px 40px;
  border: 1px solid #1d3f35;
  border-radius: 999px;
  color: #1d3f35;
  background-color: #eaf4d8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d3f35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 16px 16px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
}

body.page-id-8 .gc-cta-selector h2 {
  margin: 0 0 12px;
  color: #1d3f35;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
}

body.page-id-8 .gc-cta-selector__lead {
  margin: 0;
  max-width: 36rem;
  color: var(--gc-muted);
  font-family: Poppins, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

body.page-id-8 .gc-cta-selector__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border: 0;
  overflow: visible;
}

body.page-id-8 .gc-cta-selector__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 380px;
  padding: 48px 36px;
  text-align: center;
  text-decoration: none;
  color: #353535;
  background: #f5f5f5;
  border: 0;
  outline: none;
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
  transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base), background-color var(--gc-transition-base);
}

body.page-id-8 .gc-cta-selector__option:first-child {
  background: #1d3f35;
  color: #fff;
  border: 0;
}

body.page-id-8 .gc-cta-selector__option:last-child {
  background: #f5f5f5;
  color: #353535;
  border: 0;
  box-shadow: 0 18px 40px rgba(10, 61, 42, .18);
}

body.page-id-8 .gc-cta-selector__option::before {
  content: "";
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 34px;
}

body.page-id-8 .gc-cta-selector__option:first-child::before {
  background-color: rgba(255, 255, 255, .14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21V10l6 3V8l6 3V4h4v17H3z'/%3E%3Cpath d='M7 21v-4h4v4'/%3E%3C/svg%3E");
}

body.page-id-8 .gc-cta-selector__option:last-child::before {
  background-color: #eaf4d8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231d3f35' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h12v11H3z'/%3E%3Cpath d='M15 11h4l3 3v4h-7V11z'/%3E%3Ccircle cx='7' cy='19' r='2'/%3E%3Ccircle cx='18' cy='19' r='2'/%3E%3C/svg%3E");
}

body.page-id-8 .gc-cta-selector__option strong {
  flex: 1 1 auto;
  display: grid;
  align-content: center;
  max-width: 18ch;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
}

body.page-id-8 .gc-cta-selector__option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #3f8f3a;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: background-color var(--gc-transition-base), color var(--gc-transition-base);
}

body.page-id-8 .gc-cta-selector__option:first-child span {
  color: #1d3f35;
  background: #fff;
}

body.page-id-8 .gc-cta-selector__option:last-child span {
  color: #fff;
  background: #3f8f3a;
}

body.page-id-8 .gc-cta-selector__option:hover,
body.page-id-8 .gc-cta-selector__option:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--gc-shadow-card-hover);
}

body.page-id-8 .gc-cta-selector__option:last-child:hover,
body.page-id-8 .gc-cta-selector__option:last-child:focus-within {
  box-shadow: 0 26px 56px rgba(10, 61, 42, .22);
}

body.page-id-8 .gc-cta-selector__option:first-child:hover span,
body.page-id-8 .gc-cta-selector__option:first-child:focus-within span {
  color: #fff;
  background: #3f8f3a;
}

body.page-id-8 .gc-cta-selector__option:last-child:hover span,
body.page-id-8 .gc-cta-selector__option:last-child:focus-within span {
  color: #fff;
  background: #1d3f35;
}

@media (max-width: 720px) {
  body.page-id-8 .gc-page--content {
    min-height: 0;
    align-items: stretch;
    padding: 24px 0 40px;
  }

  body.page-id-8 .gc-cta-selector {
    padding: 16px 16px 40px;
  }

  body.page-id-8 .gc-cta-selector__intro {
    margin-bottom: 24px;
  }

  body.page-id-8 .gc-cta-selector__intro::before {
    margin-bottom: 14px;
    font-size: 12px;
  }

  body.page-id-8 .gc-cta-selector h2 {
    font-size: 1.45rem;
  }

  body.page-id-8 .gc-cta-selector__lead {
    font-size: .95rem;
  }

  body.page-id-8 .gc-cta-selector__options {
    grid-template-columns: 1fr;
  }

  body.page-id-8 .gc-cta-selector__option {
    min-height: 260px;
    padding: 40px 28px;
    gap: 24px;
  }

  body.page-id-8 .gc-cta-selector__option strong {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .gc-reconecta-choice__grid {
    grid-template-columns: 1fr;
  }
}

.gc-reconecta-brand {
  padding: 10px 0 25px;
  background: #fff;
}

.gc-banner-carousel {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.gc-banner-carousel__viewport {
  width: 100%;
  aspect-ratio: 1200 / 300;
  overflow: hidden;
  border-radius: 14px;
}

.gc-banner-carousel__track {
  display: flex;
  height: 100%;
  transition: transform var(--gc-transition-base);
}

.gc-banner-slide {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gc-banner-arrow {
  position: absolute;
  top: calc((100% - 40px) / 2);
  z-index: 2;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 45px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.gc-banner-arrow--prev {
  left: 10px;
}

.gc-banner-arrow--next {
  right: 10px;
}

.gc-banner-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.gc-banner-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #000;
  cursor: pointer;
  opacity: .2;
  transition: opacity var(--gc-transition-fast), transform var(--gc-transition-fast);
}

.gc-banner-dot:hover,
.gc-banner-dot.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .gc-banner-carousel__track {
    transition: none;
  }
}

.gc-reconecta-about {
  padding: 79px 0 71px;
}

.gc-reconecta-about .gc-recopack-about__grid {
  grid-template-columns: 225px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.gc-reconecta-about h2 {
  width: max-content;
  max-width: 270px;
  margin: 0;
  color: #353535;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 47px;
}

.gc-reconecta-about .gc-recopack-about__card {
  padding: 45px 30px 37px;
  background: #f5f5f5;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.gc-reconecta-about .gc-recopack-about__card p {
  margin: 0;
}

.gc-reconecta-tutorial {
  padding: 70px 0 76px;
}

.gc-reconecta-tutorial .gc-container {
  width: min(1200px, calc(100% - 32px));
}

.gc-reconecta-tutorial h2 {
  margin: 0 0 56px;
  color: #353535;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 40px;
}

.gc-reconecta-tutorial .gc-video-grid {
  grid-template-columns: repeat(4, 266px);
  gap: 34px;
  justify-content: center;
}

.gc-reconecta-tutorial .gc-video-card {
  position: relative;
  border-radius: 15px;
}

.gc-reconecta-tutorial .gc-video-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: -16px;
  right: -18px;
  bottom: -16px;
  width: 1px;
  background: #bcbcbc;
  pointer-events: none;
}

.gc-reconecta-results {
  background:
    linear-gradient(90deg, rgba(0, 34, 29, .93), rgba(0, 74, 58, .84)),
    url('assets/production-media/2023/10/IMG-RECURSOS-COLEC-02-scaled.jpg') center/cover;
}

.gc-reconecta-request {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: #f7f7f7;
}

.gc-reconecta-request h1 {
  max-width: 1120px;
  margin: 0 0 22px;
  color: #343436;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
}

.gc-reconecta-request p:not(.gc-home-hero__eyebrow) {
  max-width: 760px;
  color: #5b6662;
  font-size: 1.08rem;
}

body.page-id-10 .gc-reconecta-request {
  min-height: 0;
  padding: 0;
  display: block;
  background: #fff;
}

/* GC-84: short full-bleed banner; CSS bg+overlay only (hide raw widget img). */
body.page-id-10 .gc-reconecta-collection-hero,
body.page-id-10 .gc-hero-media {
  min-height: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
    url('assets/production-media/2024/06/Signify-1.png') center/cover;
  overflow: hidden;
}

body.page-id-10 .gc-hero-media__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  background: transparent;
  background-color: transparent;
}

/* Prevent mustard band: un-overlaid img sat above darkened section bg. */
body.page-id-10 .gc-hero-media__media {
  display: none;
}

body.page-id-10 .gc-hero-media__copy,
body.page-id-10 .gc-reconecta-collection-hero h1,
body.page-id-10 .gc-hero-media h1 {
  background: none;
  background-color: transparent;
}

body.page-id-10 .gc-reconecta-collection-hero h1,
body.page-id-10 .gc-hero-media h1 {
  max-width: 1120px;
  margin: 0;
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 33px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}


body.page-id-10 .gc-reconecta-form-section,
body.page-id-10 .gc-content-split--text-card {
  padding: 50px 0 22px;
  background: #fff;
}

body.page-id-10 .gc-reconecta-form-shortcode-section {
  padding: 0 0 72px;
  background: #fff;
}

body.page-id-10 .gc-reconecta-form-section h2,
body.page-id-10 .gc-reconecta-how h2,
body.page-id-10 .gc-reconecta-collection-news h2,
body.page-id-10 .gc-content-split--text-card .gc-content-split__title,
body.page-id-10 .gc-content-split--text-card .gc-content-split__copy h2 {
  margin: 0 auto 28px;
  color: #272626;
  font-family: Poppins, Arial, sans-serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 46px;
  letter-spacing: -1.1px;
  text-align: center;
}

body.page-id-10 .gc-reconecta-form-section h2,
body.page-id-10 .gc-content-split--text-card .gc-content-split__copy h2 {
  /* GC-80: match wider form under hero (was 545px). */
  max-width: min(1000px, calc(100% - 40px));
}

body.page-id-10 .gc-raee-info,
body.page-id-10 .gc-card-list {
  width: min(1000px, calc(100% - 40px));
  /* GC-78: top margin separates the block from the form above. */
  margin: 90px auto 130px;
  padding: 22px;
  border: none;
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
  color: #2c6345;
  font-family: Poppins, Arial, sans-serif;
  text-align: center;
}

body.page-id-10 .gc-raee-info h2,
body.page-id-10 .gc-card-list h2 {
  margin: 0 0 8px;
  color: #2c6345;
  font-size: 22px;
  line-height: 1.25;
}

body.page-id-10 .gc-raee-info p,
body.page-id-10 .gc-card-list__intro {
  margin: 0 auto 18px;
  max-width: 780px;
  color: #2d2d2d;
  font-size: 11px;
  line-height: 1.35;
}

body.page-id-10 .gc-raee-info__grid,
body.page-id-10 .gc-card-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

body.page-id-10 .gc-raee-info__card,
body.page-id-10 .gc-card-list__card {
  min-height: 130px;
  padding: 18px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(10, 61, 42, .08);
  text-align: left;
}

body.page-id-10 .gc-raee-info__card h3,
body.page-id-10 .gc-card-list__card h3 {
  margin: 0 0 8px;
  color: #a77719;
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

body.page-id-10 .gc-raee-info__card ol,
body.page-id-10 .gc-card-list__items {
  margin: 0;
  padding-left: 18px;
  color: #2d2d2d;
  font-size: 10px;
  line-height: 1.45;
}

/* GC-78: items carry their own subcategory codes (1.1, 2.4, 3.11);
   the ol marker would double the numbering. */
body.page-id-10 .gc-card-list__items {
  list-style: none;
  padding-left: 0;
}

/* GC-79 / GC-82 / GC-96: collection points — city filter + groups.
   Compact address list styles live in gc96-collection-points-list.css. */
body.page-id-10 .gc-collection-points {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto 80px;
  font-family: Poppins, Arial, sans-serif;
}

body.page-id-10 .gc-collection-points__intro {
  max-width: 40rem;
  margin: 0 auto 24px;
  text-align: center;
}

body.page-id-10 .gc-collection-points h2 {
  margin: 0 0 10px;
  color: #2c6345;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}

body.page-id-10 .gc-collection-points__lead {
  margin: 0;
  color: #4a5c56;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

body.page-id-10 .gc-collection-points__filters {
  margin: 0 0 28px;
  text-align: center;
}

body.page-id-10 .gc-collection-points__filters-label {
  margin: 0 0 10px;
  color: #4a5c56;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

body.page-id-10 .gc-collection-points__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

body.page-id-10 .gc-collection-points__chip {
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(44, 99, 69, .35);
  border-radius: 999px;
  background: #fff;
  color: #2c6345;
  font-family: Poppins, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

body.page-id-10 .gc-collection-points__chip:hover,
body.page-id-10 .gc-collection-points__chip:focus-visible {
  border-color: #2c6345;
  outline: none;
}

body.page-id-10 .gc-collection-points__chip.is-active {
  background: #2c6345;
  border-color: #2c6345;
  color: #fff;
}

body.page-id-10 .gc-collection-points__groups {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

body.page-id-10 .gc-collection-points__group-title {
  margin: 0 0 14px;
  color: #2c6345;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

/* GC-82: home pickup / línea gratuita promo (separate from #puntos). */
body.page-id-10 .gc-home-pickup {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto 110px;
  font-family: Poppins, Arial, sans-serif;
}

body.page-id-10 .gc-home-pickup__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 36px 48px;
  align-items: center;
}

body.page-id-10 .gc-home-pickup__media {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 11;
  background: #e8f1ec;
}

body.page-id-10 .gc-home-pickup__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-id-10 .gc-home-pickup__copy h2 {
  margin: 0 0 14px;
  color: #2c6345;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

body.page-id-10 .gc-home-pickup__lead {
  margin: 0 0 18px;
  color: #4a5c56;
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body.page-id-10 .gc-home-pickup__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

body.page-id-10 .gc-home-pickup__cities li {
  padding: 7px 14px;
  border-radius: 999px;
  background: #e3efe8;
  color: #2c6345;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

body.page-id-10 .gc-home-pickup__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 8px;
  background: #2c6345;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background .15s ease;
}

body.page-id-10 .gc-home-pickup__cta:hover,
body.page-id-10 .gc-home-pickup__cta:focus-visible {
  background: #234f37;
  color: #fff;
  outline: none;
}


body.page-id-10 .gc-reconecta-how,
body.page-id-10 .gc-video-gallery,
body.page-id-10 .gc-data-table {
  padding: 0 0 90px;
}

body.page-id-10 .gc-reconecta-how__divider {
  width: min(500px, calc(100% - 80px));
  height: 2px;
  margin: 0 auto 50px;
  background: #fbbc2d;
}

body.page-id-10 .gc-reconecta-how__row,
body.page-id-10 .gc-video-gallery__grid {
  width: min(1110px, calc(100% - 40px));
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 30px;
  align-items: start;
}

body.page-id-10 .gc-reconecta-how video,
body.page-id-10 .gc-video-gallery__card button,
body.page-id-10 .gc-video-gallery__card img {
  width: 100%;
  height: auto;
  min-height: 280px;
  display: block;
  background: #000;
}

body.page-id-10 .gc-reconecta-how h3,
body.page-id-10 .gc-video-gallery h3,
body.page-id-10 .gc-data-table h3,
body.page-id-10 .gc-cta-selector h2 {
  margin: 0 0 20px;
  color: #000;
  font-family: Poppins, Arial, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.15;
}

body.page-id-10 .gc-collection-table,
body.page-id-10 .gc-data-table table {
  width: 100%;
  border-collapse: collapse;
  color: #111;
  font-family: Poppins, Arial, sans-serif;
  font-size: 12px;
}

body.page-id-10 .gc-collection-table th {
  padding: 16px;
  color: #fff;
  background: #4a4893;
  text-align: left;
}

body.page-id-10 .gc-collection-table td {
  padding: 16px;
  background: #fff;
  vertical-align: top;
}

body.page-id-10 .gc-collection-table tr:nth-child(even) td {
  background: #f2f2f2;
}

body.page-id-10 .gc-reconecta-collection-news,
body.page-id-10 .gc-posts-grid--overlay {
  padding: 20px 0 70px;
  background: #fff;
}

body.page-id-10 .gc-reconecta-collection-news-grid,
body.page-id-10 .gc-posts-grid--overlay .gc-posts-grid__items {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

body.page-id-10 .gc-reconecta-collection-news-grid a,
body.page-id-10 .gc-posts-grid--overlay .gc-posts-grid__overlay {
  min-height: 238px;
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  background: #f4f4f4;
  text-decoration: none;
}

body.page-id-10 .gc-reconecta-collection-news-grid img,
body.page-id-10 .gc-posts-grid--overlay .gc-posts-grid__overlay img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

body.page-id-10 .gc-reconecta-collection-news-grid a::after,
body.page-id-10 .gc-posts-grid--overlay .gc-posts-grid__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 55%, #000 100%);
  transition: opacity var(--gc-transition-base);
}

body.page-id-10 .gc-reconecta-collection-news-grid a:hover img,
body.page-id-10 .gc-reconecta-collection-news-grid a:focus-visible img,
body.page-id-10 .gc-posts-grid--overlay .gc-posts-grid__overlay:hover img,
body.page-id-10 .gc-posts-grid--overlay .gc-posts-grid__overlay:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.04);
}

body.page-id-10 .gc-reconecta-collection-news-grid a:hover::after,
body.page-id-10 .gc-reconecta-collection-news-grid a:focus-visible::after,
body.page-id-10 .gc-posts-grid--overlay .gc-posts-grid__overlay:hover::after,
body.page-id-10 .gc-posts-grid--overlay .gc-posts-grid__overlay:focus-visible::after {
  opacity: .92;
}

body.page-id-10 .gc-reconecta-collection-news-grid span,
body.page-id-10 .gc-posts-grid--overlay .gc-posts-grid__date {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .gc-container {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .gc-page,
  .gc-page__article,
  .elementor,
  .elementor-section,
  .elementor-column {
    max-width: 100%;
    overflow-x: hidden;
  }

  .gc-results-grid,
  .gc-reconecta-choice__grid,
  .gc-recopack-about__grid,
  .gc-recopack-clients__grid,
  .gc-video-grid,
  .gc-docs-grid {
    grid-template-columns: 1fr;
  }

  .gc-recopack-hero,
  .gc-recopack-results,
  .gc-recopack-about,
  .gc-recopack-tutorial,
  .gc-recopack-clients,
  .gc-reconecta-choice,
  .gc-reconecta-request,
  .gc-team {
    padding: 64px 0;
  }

  .gc-recopack-about {
    padding: 20px 0 64px;
  }

  .gc-recopack-about__grid {
    gap: 28px;
  }

  .gc-reconecta-choice__grid {
    width: min(640px, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .gc-reconecta-about > .gc-container,
  .gc-reconecta-request > .gc-container {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    overflow: hidden;
  }

  .gc-reconecta-option {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    min-height: 218px;
    box-sizing: border-box;
    padding: 40px;
    overflow: hidden;
  }

  .gc-reconecta-option h2 {
    max-width: 100%;
    max-inline-size: 13ch;
    font-size: clamp(1.35rem, 7vw, 1.75rem);
    overflow-wrap: break-word;
  }

  .gc-reconecta-brand .gc-container {
    overflow: hidden;
  }

  .gc-banner-carousel {
    max-width: 100%;
  }

  .gc-reconecta-about .gc-recopack-about__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* GC-84: short mobile banner; readable wrap without tall-hero feel. */
    body.page-id-10 .gc-reconecta-collection-hero,
    body.page-id-10 .gc-hero-media {
      min-height: 160px;
      height: auto;
      padding: 28px 16px;
      background-position: center;
    }

    body.page-id-10 .gc-reconecta-collection-hero h1,
    body.page-id-10 .gc-hero-media h1 {
      max-width: 370px;
      font-size: 22px;
      font-weight: 600;
      line-height: 1.25;
      background: none;
      background-color: transparent;
    }


  body.page-id-10 .gc-reconecta-form-section,
  body.page-id-10 .gc-content-split--text-card {
    padding: 50px 0 70px;
  }

  body.page-id-10 .gc-reconecta-how h2,
  body.page-id-10 .gc-reconecta-collection-news h2,
  body.page-id-10 .gc-content-split--text-card .gc-content-split__title {
    max-width: 306px;
    font-size: 31px;
    line-height: 1.1;
  }

  /* GC-80: form heading + form fluid on mobile (was 306px). */
  body.page-id-10 .gc-reconecta-form-section h2,
  body.page-id-10 .gc-content-split--text-card .gc-content-split__copy h2 {
    max-width: min(100%, calc(100% - 32px));
    font-size: 31px;
    line-height: 1.1;
  }

  body.page-id-10 .gc-reconecta-form {
    width: min(100%, calc(100% - 32px));
  }

  body.page-id-10 .gc-raee-info,
  body.page-id-10 .gc-card-list {
    margin-top: 56px;
    margin-bottom: 80px;
  }

  /* GC-85: harden RAEE bordered block so global mobile
     .gc-container { width: calc(100vw - 32px) } cannot overflow it.
     Desktop width min(1000px, calc(100% - 40px)) and 3-col grid stay above. */
  body.page-id-10 .gc-card-list {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* GC-79/GC-85: keep inner containers fluid inside narrower bordered blocks. */
  body.page-id-10 .gc-card-list .gc-container,
  body.page-id-10 .gc-collection-points .gc-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  body.page-id-10 .gc-card-list__grid,
  body.page-id-10 .gc-card-list__card {
    min-width: 0;
    max-width: 100%;
  }

  body.page-id-10 .gc-card-list__intro {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  body.page-id-10 .gc-collection-points {
    margin-bottom: 70px;
  }

  body.page-id-10 .gc-raee-info__grid,
  body.page-id-10 .gc-reconecta-how__row,
  body.page-id-10 .gc-reconecta-collection-news-grid,
  body.page-id-10 .gc-card-list__grid,
  body.page-id-10 .gc-video-gallery__grid {
    grid-template-columns: 1fr;
  }

  body.page-id-10 .gc-reconecta-how__row,
  body.page-id-10 .gc-video-gallery__grid {
    gap: 24px;
  }

  body.page-id-10 .gc-reconecta-how video,
  body.page-id-10 .gc-video-gallery__card video,
  body.page-id-10 .gc-video-gallery__card img {
    min-height: 180px;
  }

  body.page-id-10 .gc-collection-table,
  body.page-id-10 .gc-data-table table {
    font-size: 11px;
  }

  body.page-id-10 .gc-collection-table th,
  body.page-id-10 .gc-collection-table td,
  body.page-id-10 .gc-data-table th,
  body.page-id-10 .gc-data-table td {
    padding: 10px;
  }

  .gc-recopack-about__card {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 28px;
  }

  .gc-recopack-about__card p {
    max-width: calc(100vw - 88px);
    max-inline-size: 28ch;
  }

  .gc-recopack-about h2,
  .gc-recopack-tutorial h2,
  .gc-recopack-clients h2,
  .gc-team h2,
  .gc-recopack-services h2 {
    font-size: clamp(2.4rem, 11vw, 3rem);
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .gc-progress__track {
    height: 30px;
  }
}

/* Recopack strict public-page alignment overrides. */
body.page-id-6 .gc-recopack-about h2,
body.page-id-6 .gc-recopack-tutorial h2,
body.page-id-6 .gc-recopack-clients h2,
body.page-id-6 .gc-team h2,
body.page-id-6 .gc-recopack-services h2,
body.page-id-6 .gc-recopack-news h2 {
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.05;
}

body.page-id-6 .gc-recopack-about {
  padding: 0;
}

body.page-id-6 .gc-recopack-about h2 {
  line-height: 47px;
}

body.page-id-6 .gc-recopack-about__grid {
  grid-template-columns: 25.351% 74.649%;
  gap: 0;
  max-width: 1200px;
}

body.page-id-6 .gc-recopack-about__card {
  margin-top: 10px;
  padding: 20px 30px 37px;
  color: #666;
  background: #f5f5f5;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.page-id-6 .gc-recopack-about__card p {
  margin: 0 0 17px;
}

body.page-id-6 .gc-recopack-about__card p:last-child {
  margin-bottom: 0;
}

body.page-id-6 .gc-recopack-tutorial h2 {
  margin-bottom: 56px;
  line-height: 40px;
}

body.page-id-6 .gc-recopack-tutorial {
  padding: 30px 0 60px;
}

body.page-id-6 .gc-video-grid {
  max-width: 1200px;
  margin: 0 auto;
}

body.page-id-6 .gc-video-grid a {
  border-radius: 15px;
}

body.page-id-6 .gc-recopack-results {
  padding: 60px 0;
  color: #fff;
  background:
    linear-gradient(rgba(0, 52, 43, .85), rgba(0, 52, 43, .85)),
    url('assets/production-media/2023/09/IMG-RECURSOS-COLEC-01-scaled.jpg') center/cover;
}

body.page-id-6 .gc-results-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

body.page-id-6 .gc-results-heading h2 {
  margin: 0 0 15px;
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
}

body.page-id-6 .gc-results-heading p {
  margin: 0;
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.4;
}

body.page-id-6 .gc-results-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 22px;
}

body.page-id-6 .gc-results-tabs button {
  position: relative;
  min-height: 46px;
  padding: 12px 16px;
  border: 0;
  border-bottom: 1px solid transparent;
  color: #fff;
  background: transparent;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  transition: color var(--gc-transition-base), border-color var(--gc-transition-base), background-color var(--gc-transition-base);
}

body.page-id-6 .gc-results-tabs button span {
  color: #fff;
  font-size: 16px;
}

body.page-id-6 .gc-results-tabs button.is-active {
  border-bottom-color: #91c03a;
}

body.page-id-6 .gc-results-tabs button:hover,
body.page-id-6 .gc-results-tabs button:focus-visible {
  color: #91c03a;
  background: rgba(145, 192, 58, .08);
}

body.page-id-6 .gc-results-tabs button.is-active span {
  color: #91c03a;
}

body.page-id-6 .gc-results-tabs button.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #91c03a;
  transform: translateX(-50%);
}

body.page-id-6 .gc-results-panel {
  display: grid;
  grid-template-columns: 29.742% 70.258%;
  gap: 0;
  align-items: center;
  padding: 26px 35px;
  color: #fff;
  background: #000;
}

body.page-id-6 .gc-results-panel h3 {
  margin: 0;
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}

body.page-id-6 .gc-results-panel p {
  margin: 0;
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.page-id-6 .gc-recopack-clients {
  padding: 40px 0;
}

body.page-id-6 .gc-recopack-clients__grid {
  grid-template-columns: 30% 70%;
  gap: 0;
  max-width: 1170px;
}

body.page-id-6 .gc-recopack-clients__intro {
  padding: 50px 0;
}

body.page-id-6 .gc-recopack-clients__intro p {
  color: #000;
  font-family: Poppins, Arial, sans-serif;
}

body.page-id-6 .gc-progress-list {
  gap: 24px;
  padding: 50px 0;
}

body.page-id-6 .gc-progress span {
  color: #000;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 500;
}

body.page-id-6 .gc-progress__track {
  background: #eee;
}

body.page-id-6 .gc-progress strong {
  background: #91c03a;
  font-family: Poppins, Arial, sans-serif;
}

body.page-id-6 .gc-team {
  padding: 80px 0;
  background: #f5f5f5;
}

body.page-id-6 .gc-team .gc-container {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
}

body.page-id-6 .gc-team h2 {
  line-height: 52px;
}

body.page-id-6 .gc-team-member h3 {
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

body.page-id-6 .gc-recopack-services {
  padding: 0;
  background: #fff;
}

body.page-id-6 .gc-docs-layout {
  display: grid;
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: 34.164% 65.283%;
  gap: 0;
  align-items: center;
  padding: 60px 0;
}

body.page-id-6 .gc-docs-layout h2 {
  margin: 0;
  max-width: none;
  padding: 40px 40px 40px 55px;
  line-height: 52px;
}

body.page-id-6 .gc-docs-list {
  display: grid;
  gap: 18px;
}

body.page-id-6 .gc-doc-row {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: center;
}

body.page-id-6 .gc-doc-row strong {
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

body.page-id-6 .gc-doc-row a {
  width: max-content;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 3px;
  color: #fff;
  background: #91c03a;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 600;
  line-height: 15px;
  text-decoration: none;
  transition: background-color var(--gc-transition-base), transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

body.page-id-6 .gc-doc-row a:hover,
body.page-id-6 .gc-doc-row a:focus-visible {
  background: #7fae2f;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(145, 192, 58, .24);
}

body.page-id-6 .gc-recopack-news {
  padding: 0 0 60px;
  background: #f5f5f5;
}

body.page-id-6 .gc-recopack-news h2 {
  width: calc(100% + 30px);
  max-width: 1150px;
  margin: 0 -15px 34px;
  padding: 10px 0;
  line-height: 52px;
}

body.page-id-6 .gc-recopack-news-grid {
  display: grid;
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

body.page-id-6 .gc-recopack-news-grid a {
  position: relative;
  display: block;
  aspect-ratio: 100 / 66;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

body.page-id-6 .gc-recopack-news-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform var(--gc-transition-base), filter var(--gc-transition-base);
}

body.page-id-6 .gc-recopack-news-grid a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #000 100%);
  transition: opacity var(--gc-transition-base);
}

body.page-id-6 .gc-recopack-news-grid a:hover img,
body.page-id-6 .gc-recopack-news-grid a:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

body.page-id-6 .gc-recopack-news-grid a:hover::after,
body.page-id-6 .gc-recopack-news-grid a:focus-visible::after {
  opacity: .92;
}

body.page-id-6 .gc-recopack-news-grid span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
}

@media (max-width: 900px) {
  body.page-id-6 .gc-recopack-about__grid,
  body.page-id-6 .gc-results-panel,
  body.page-id-6 .gc-recopack-clients__grid,
  body.page-id-6 .gc-docs-layout,
  body.page-id-6 .gc-doc-row,
  body.page-id-6 .gc-recopack-news-grid {
    grid-template-columns: 1fr;
  }

  body.page-id-6 .gc-recopack-about h2,
  body.page-id-6 .gc-recopack-tutorial h2,
  body.page-id-6 .gc-recopack-clients h2,
  body.page-id-6 .gc-team h2,
  body.page-id-6 .gc-recopack-services h2,
  body.page-id-6 .gc-recopack-news h2,
  body.page-id-6 .gc-results-heading h2,
  body.page-id-6 .gc-results-panel h3 {
    font-size: 33px;
    line-height: 1.15;
  }

  body.page-id-6 .gc-results-tabs {
    grid-template-columns: 1fr;
  }

  body.page-id-6 .gc-recopack-clients__intro,
  body.page-id-6 .gc-progress-list {
    padding: 18px 0;
  }

  body.page-id-6 .gc-docs-layout,
  body.page-id-6 .gc-team {
    padding: 60px 20px;
  }

  body.page-id-6 .gc-team h2 {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  body.page-id-6 .gc-recopack-news h2 {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  body.page-id-6 .gc-doc-row {
    gap: 10px;
  }

  body.page-id-6 .gc-doc-row a {
    width: max-content;
    max-width: 100%;
  }
}

body.page-id-6 .gc-partner-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

body.page-id-6 .gc-partner-track {
  position: relative;
}

body.page-id-6 .gc-partner-slide {
  margin: 0;
  animation: gcCarouselFade .28s ease;
}

body.page-id-6 .gc-partner-slide[hidden],
body.page-id-6 .gc-results-panel[hidden] {
  display: none !important;
}

body.page-id-6 .gc-recopack-partners img {
  max-width: 1180px;
}

body.page-id-6 .gc-slider-arrow {
  border: 0;
  background: transparent;
  cursor: pointer;
}

body.page-id-6 .gc-slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #000;
  cursor: pointer;
}

body.page-id-6 .gc-slider-dots button.is-active {
  background: #83bd1d;
}

body.page-id-6 .gc-results-panels {
  position: relative;
}

body.page-id-6 .gc-results-panel {
  animation: gcTabFade .2s ease;
}

@keyframes gcCarouselFade {
  from { opacity: .35; }
  to { opacity: 1; }
}

@keyframes gcTabFade {
  from { opacity: .55; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(0); }
}

body.page-id-6 .gc-recopack-about__card,
body.page-id-6 .gc-recopack-about__card p,
body.page-id-6 .gc-results-heading p,
body.page-id-6 .gc-results-panel p,
body.page-id-6 .gc-recopack-clients__intro p {
  font-weight: 400;
}

/* Recopack video lightbox and animated progress parity. */
body.page-id-6 .gc-video-grid__play {
  width: auto;
  height: auto;
  border: 0;
  color: #000;
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 39px;
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 255, 255, .45);
}

body.page-id-6 .gc-video-modal[hidden] {
  display: none !important;
}

body.page-id-6 .gc-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
}

body.page-id-6 .gc-video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .86);
  cursor: pointer;
}

body.page-id-6 .gc-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
}

body.page-id-6 .gc-video-modal__iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

body.page-id-6 .gc-video-modal__close {
  position: absolute;
  top: -42px;
  right: -4px;
  width: 36px;
  height: 36px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

body.gc-video-modal-open {
  overflow: hidden;
}

html.gc-recopack-js body.page-id-6 .gc-progress strong {
  width: 0;
  transition: width 1.15s ease;
}

html.gc-recopack-js body.page-id-6 .gc-progress.is-animated strong {
  width: var(--gc-progress);
}

@media (prefers-reduced-motion: reduce) {
  html.gc-recopack-js body.page-id-6 .gc-progress strong {
    transition: none;
  }
}

@media (max-width: 767px) {
  body.page-id-6 .gc-video-modal {
    padding: 18px;
  }

  body.page-id-6 .gc-video-modal__close {
    top: -38px;
    right: 0;
  }
}

/* GC carousel: explicit variants and accessible controls shared by all pages. */
.gc-media-carousel {
  --gc-carousel-accent: var(--gc-primary);
  position: relative;
}

.gc-media-carousel--banner-full-bleed,
.gc-media-carousel--banner-full-bleed .gc-media-carousel__track,
.gc-media-carousel--banner-full-bleed .gc-media-carousel__slide,
.gc-media-carousel--banner-full-bleed .gc-media-carousel__slide img {
  width: 100%;
  max-width: none;
}

.gc-media-carousel--banner-full-bleed .gc-media-carousel__slide {
  margin: 0;
}

.gc-media-carousel--banner-full-bleed .gc-media-carousel__slide img,
.gc-media-carousel--banner-contained .gc-media-carousel__slide img {
  display: block;
  height: auto;
}

.gc-media-carousel--banner-contained {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.gc-media-carousel--banner-contained .gc-media-carousel__track {
  aspect-ratio: 4 / 1;
  overflow: hidden;
  border-radius: 14px;
}

.gc-media-carousel--banner-contained .gc-media-carousel__slide,
.gc-media-carousel--banner-contained .gc-media-carousel__slide img {
  width: 100%;
  height: 100%;
}

.gc-media-carousel--banner-contained .gc-media-carousel__slide img {
  object-fit: contain;
}

.gc-media-carousel.is-enhanced .gc-media-carousel__track {
  display: grid;
}

.gc-media-carousel.is-enhanced .gc-media-carousel__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 450ms ease, visibility 0s linear 450ms;
}

.gc-media-carousel.is-enhanced .gc-media-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.gc-media-carousel__previous,
.gc-media-carousel__next {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
  color: #202020;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.gc-media-carousel__previous { left: 12px; }
.gc-media-carousel__next { right: 12px; }

.gc-media-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 32px;
  margin-top: 3px;
}

.gc-media-carousel .gc-media-carousel__dots {
  display: flex;
  gap: 0;
  margin: 0;
}

.gc-media-carousel .gc-media-carousel__dot {
  position: relative;
  display: grid;
  width: 28px;
  height: 32px;
  min-width: 28px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: #242424;
  cursor: pointer;
}

.gc-media-carousel .gc-media-carousel__dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #242424;
  opacity: .28;
  transition: opacity var(--gc-transition-fast), transform var(--gc-transition-fast), background-color var(--gc-transition-fast);
}

.gc-media-carousel .gc-media-carousel__dot > span {
  display: none;
}

.gc-media-carousel .gc-media-carousel__dot.is-active::before {
  background: var(--gc-carousel-accent);
  opacity: 1;
  transform: scale(1.3);
}

.gc-media-carousel {
  --gc-carousel-accent: #81bc00;
}

.gc-media-carousel__slide[hidden] {
  display: none !important;
}

@media (max-width: 599px) {
  .gc-media-carousel__previous { left: 6px; }
  .gc-media-carousel__next { right: 6px; }

  .gc-media-carousel--banner-contained {
    width: calc(100% - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gc-media-carousel *,
  .gc-media-carousel *::before {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Recopack strict refinements from site-old Elementor post-331.css. */
body.page-id-6 .gc-recopack-results {
  background-color: #f5f5f5;
  background-image: url('assets/production-media/2023/09/IMG-RECURSOS-COLEC-01-scaled.jpg');
  background-position: center center;
  background-size: cover;
}

body.page-id-6 .gc-results-heading {
  max-width: none;
  padding-top: 10px;
  margin-bottom: 20px;
}

body.page-id-6 .gc-results-heading h2 {
  margin-bottom: 15px;
  line-height: 1.3;
}

body.page-id-6 .gc-results-heading p {
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
}

body.page-id-6 .gc-results-tabs {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

body.page-id-6 .gc-results-tabs button {
  min-height: 49px;
  flex: 1 1 auto;
  justify-content: center;
  padding: 15px 22.5px;
  font-family: Roboto, Arial, sans-serif;
}

body.page-id-6 .gc-results-tabs button span {
  margin-right: 10px;
}

body.page-id-6 .gc-results-panel {
  position: relative;
  grid-template-columns: 30% 70%;
  min-height: 206px;
  padding: 25px;
  background: transparent;
}

body.page-id-6 .gc-results-panel::before {
  content: '';
  position: absolute;
  inset: 15px;
  background: #000;
}

body.page-id-6 .gc-results-panel > * {
  position: relative;
  z-index: 1;
}

body.page-id-6 .gc-results-panel h3 {
  line-height: 1.3;
}

body.page-id-6 .gc-results-panel p {
  font-size: 15px;
  line-height: normal;
}

body.page-id-6 .gc-recopack-clients__grid {
  width: min(1170px, calc(100% - 40px));
  max-width: 1170px;
  align-items: center;
}

body.page-id-6 .gc-progress__track,
body.page-id-6 .gc-progress strong {
  border-radius: 2px;
}

body.page-id-6 .gc-progress strong {
  padding-right: 15px;
  font-size: 11px;
  line-height: 30px;
}

@media (max-width: 767px) {
  body.page-id-6 .gc-results-tabs {
    flex-wrap: wrap;
  }

  body.page-id-6 .gc-results-tabs button {
    flex: 1 1 auto;
  }

  body.page-id-6 .gc-results-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 25px;
  }

  body.page-id-6 .gc-results-panel h3,
  body.page-id-6 .gc-results-panel p {
    width: 100%;
  }

  body.page-id-6 .gc-results-panel p {
    font-size: 16px;
    line-height: 1.45;
  }
}

@media (min-width: 768px) {
  body.page-id-6 .gc-results-tabs button {
    line-height: 19px;
  }

  body.page-id-6 .gc-results-panel h3 {
    max-width: 304px;
  }

  body.page-id-6 .gc-results-panel p {
    margin-left: 3px;
  }
}

@media (min-width: 768px) {
  body.page-id-6 .gc-results-tabs button {
    height: 49px;
    min-height: 49px;
    line-height: normal;
  }
}

/* Blog / SEO content templates */
.gc-blog {
  color: #353535;
  background: #f7f7f7;
  font-family: Poppins, Arial, sans-serif;
}

.gc-blog-hero {
  padding: 92px 0 72px;
  background: linear-gradient(135deg, #0f4a3c 0%, #0d3d33 58%, #123f37 100%);
  color: #fff;
}

.gc-blog-hero__eyebrow,
.gc-article-hero__meta {
  margin: 0 0 16px;
  color: #8bc53f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gc-blog-hero h1,
.gc-article-hero h1 {
  max-width: 980px;
  margin: 0;
  color: inherit;
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 900;
  line-height: .98;
}

.gc-blog-hero p:last-child,
.gc-article-hero__excerpt {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.65;
}

.gc-blog-list,
.gc-blog-related {
  padding: 72px 0;
}

.gc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.gc-blog-card {
  overflow: hidden;
  border-radius: var(--gc-radius-card);
  background: #fff;
  box-shadow: var(--gc-shadow-card);
  transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

.gc-blog-card:hover,
.gc-blog-card:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--gc-shadow-card-hover);
}

.gc-blog-card__media {
  display: block;
  overflow: hidden;
  background: #e7efe5;
}

.gc-blog-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 585 / 410;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gc-blog-card:hover .gc-blog-card__media img,
.gc-blog-card:focus-within .gc-blog-card__media img {
  transform: scale(1.08);
}

.gc-blog-card__body {
  padding: 24px 26px 28px;
}

.gc-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 14px;
  color: #6e6e6e;
  font-size: 12px;
  font-weight: 600;
}

.gc-blog-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.gc-blog-card h2 a {
  color: #353535;
  text-decoration: none;
}

.gc-blog-card p {
  margin: 0 0 20px;
  color: #696a6d;
  font-size: 15px;
  line-height: 1.55;
}

.gc-blog-card__link,
.gc-article-hero__back,
.gc-article-aside a {
  color: #16975d;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--gc-transition-base), text-decoration-color var(--gc-transition-base);
}

.gc-blog-card h2 a,
.gc-blog-card__link,
.gc-article-hero__back,
.gc-article-aside a {
  text-decoration-color: transparent;
}

.gc-blog-card h2 a:hover,
.gc-blog-card h2 a:focus-visible,
.gc-blog-card__link:hover,
.gc-blog-card__link:focus-visible,
.gc-article-hero__back:hover,
.gc-article-hero__back:focus-visible,
.gc-article-aside a:hover,
.gc-article-aside a:focus-visible {
  color: #0a6f4d;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.gc-blog-pagination {
  margin-top: 42px;
  text-align: center;
}

.gc-blog-empty {
  padding: 48px;
  background: #fff;
}

/* Article header replicates the public design: featured image as a
   full-width cover banner, with category + title + meta below it. */
.gc-article-cover {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1140px;
}

.gc-article-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.gc-article-hero {
  padding: 34px 0 8px;
  background: var(--gc-white);
  color: var(--gc-ink);
}

.gc-article-hero__back {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gc-header-accent);
}

.gc-article-hero__cats {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gc-article-hero__cats a {
  color: var(--gc-header-accent);
  text-decoration: none;
}

.gc-article-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--gc-primary);
  font-family: Poppins, sans-serif;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.gc-article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 18px 0 0;
  color: var(--gc-muted);
  text-transform: none;
}

.gc-article-hero__excerpt {
  max-width: 800px;
  margin: 16px 0 0;
  color: var(--gc-ink);
  font-size: 17px;
  line-height: 1.6;
}

.gc-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 72px;
  align-items: start;
  padding-bottom: 72px;
}

.gc-article-content {
  padding: 0;
  color: #555;
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.78;
}

.gc-article-content > *:first-child {
  margin-top: 0;
}

.gc-article-content h2,
.gc-article-content h3 {
  margin: 42px 0 16px;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.18;
}

.gc-article-content h2 {
  font-size: 32px;
}

.gc-article-content h3 {
  font-size: 24px;
}

.gc-article-content a {
  color: #16975d;
}

.gc-article-content .wp-block-rank-math-toc-block {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 5px solid #8bc53f;
  background: #fff;
}

.gc-article-content .wp-block-rank-math-toc-block ul {
  margin: 0;
  padding-left: 20px;
}

.gc-article-aside {
  position: sticky;
  top: 120px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 74, 60, .08);
}

.gc-article-aside h2 {
  margin: 0 0 14px;
  color: #353535;
  font-size: 18px;
  font-weight: 800;
}

.gc-article-aside h2:not(:first-child) {
  margin-top: 28px;
}

.gc-article-aside a {
  display: block;
  margin: 0 0 10px;
}

.gc-blog-related {
  padding: 36px 0;
  background: #fff;
}

.gc-blog-related .gc-container {
  width: min(1120px, calc(100% - 40px));
}

.gc-blog-related__inner {
  max-width: 780px;
}

.gc-related-title-box {
  margin: 0 0 34px;
  text-align: center;
}

.gc-blog-related h2 {
  display: inline-block;
  margin: 0;
  padding: 0 10px;
  background: #fff;
  color: #313131;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.gc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gc-related-card {
  min-width: 0;
  text-align: center;
}

.gc-related-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 585 / 390;
  background: #f5f5f5;
}

.gc-related-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--gc-transition-base);
}

.gc-related-card:hover .gc-related-card__media img,
.gc-related-card:focus-within .gc-related-card__media img {
  transform: scale(1.035);
}

.gc-related-card__content {
  padding: 20px 0 0;
}

.gc-related-card h3 {
  margin: 0;
  color: #313131;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.gc-related-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.gc-related-card h3 a:hover,
.gc-related-card h3 a:focus-visible {
  color: #0a6f4d;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.gc-related-card__date {
  display: block;
  margin-top: 8px;
  color: #888;
  font-size: 13px;
  font-weight: 400;
}

.gc-related-dots {
  display: none;
}

@media (max-width: 900px) {
  .gc-blog-hero,
  .gc-article-hero {
    padding: 54px 0 44px;
  }

  .gc-blog-grid,
  .gc-article-layout {
    grid-template-columns: 1fr;
  }

  .gc-blog-list {
    padding: 42px 0;
  }

  .gc-blog-related {
    padding: 36px 0;
  }

  .gc-blog-related h2 {
    font-size: 16px;
  }

  .gc-related-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gc-related-grid::-webkit-scrollbar {
    display: none;
  }

  .gc-related-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .gc-related-card h3 a {
    -webkit-line-clamp: 3;
  }

  .gc-related-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .gc-related-dots span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #dcdcdc;
  }

  .gc-related-dots .is-active {
    background: #6ec656;
  }

  .gc-blog-card__body {
    padding: 20px;
  }

  .gc-blog-card h2 {
    font-size: 20px;
  }

  .gc-article-cover {
    padding: 0;
  }

  .gc-article-hero {
    padding: 22px 0 4px;
  }

  .gc-article-layout {
    gap: 32px;
    padding-bottom: 42px;
  }

  .gc-article-content {
    font-size: 16px;
  }

  .gc-article-content h2 {
    font-size: 26px;
  }

  .gc-article-aside {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .gc-home-service-media:hover video,
  .gc-home-service-media:focus-visible video,
  .gc-home-service-media:hover img,
  .gc-home-service-media:focus-visible img,
  .gc-home-news a:hover img,
  .gc-home-news a:focus-visible img,
	  .gc-blog-card:hover .gc-blog-card__media img,
	  .gc-blog-card:focus-within .gc-blog-card__media img,
	  .gc-related-card:hover .gc-related-card__media img,
	  .gc-related-card:focus-within .gc-related-card__media img,
	  body.page-id-6 .gc-recopack-news-grid a:hover img,
  body.page-id-6 .gc-recopack-news-grid a:focus-visible img,
  body.page-id-10 .gc-reconecta-collection-news-grid a:hover img,
  body.page-id-10 .gc-reconecta-collection-news-grid a:focus-visible img {
    transform: none;
  }
}

/* Signify internal page */
.gc-signify-page {
  font-family: Poppins, Arial, sans-serif;
}

.gc-signify-hero {
  padding: 10px 0 28px;
  background: #fff;
}

.gc-signify-hero__inner {
  width: min(1285px, calc(100% - 80px));
  margin: 0 auto;
}

.gc-signify-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.gc-signify-about {
  padding: 0 0 6px;
  background: #fff;
}

.gc-signify-about__grid {
  display: grid;
  grid-template-columns: 25.351% 74.649%;
  align-items: center;
  gap: 0;
}

.gc-signify-about h1 {
  margin: 0;
  padding-left: 24px;
  color: #353535;
  font-size: 40px;
  font-weight: 800;
  line-height: 47px;
}

.gc-signify-about__card {
  box-sizing: border-box;
  margin-top: 10px;
  padding: 45px 30px 37px;
  background: #f5f5f5;
  color: #666;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.gc-signify-about__card p {
  margin: 0 0 20px;
  text-align: justify;
}

.gc-signify-about__card p:last-child {
  margin-bottom: 0;
}

.gc-signify-advances {
  margin: 0;
  padding: 73px 0;
  color: #fff;
  background:
    linear-gradient(rgba(0, 63, 54, .85), rgba(0, 63, 54, .85)),
    url('assets/production-media/2023/09/IMG-RECURSOS-COLEC-01-scaled.jpg') center/cover;
}

.gc-signify-advances h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
}

.gc-signify-advances p {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.gc-signify-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 920px;
  margin: 10px auto 0;
  text-align: center;
}

.gc-signify-counters strong {
  display: block;
  color: #fff;
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
}

.gc-signify-counters strong span {
  margin-left: 2px;
}

.gc-signify-counters em {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-style: normal;
  font-size: 18px;
  line-height: 1.2;
}

.gc-signify-project-title {
  padding: 84px 0 101px;
  background: #fff;
}

.gc-signify-project-title h2 {
  max-width: 1170px;
  margin: 0 auto;
  color: #353535;
  font-size: 40px;
  font-weight: 800;
  line-height: 42px;
}

.gc-signify-projects {
  padding: 0 0 125px;
  background: #fff;
}

.gc-signify-project-card {
  display: grid;
  grid-template-columns: 50% 50%;
  width: min(1170px, 100%);
  margin: 0 auto;
  background: #f5f5f5;
  transition: box-shadow var(--gc-transition-base), transform var(--gc-transition-base);
}

.gc-signify-project-card:hover,
.gc-signify-project-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(21, 35, 35, .08);
}

.gc-signify-project-card--second {
  margin-top: 30px;
}

.gc-signify-project-card__media {
  background: #000;
}

.gc-signify-project-card__media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  transition: filter var(--gc-transition-base);
}

.gc-signify-project-card:hover .gc-signify-project-card__media video,
.gc-signify-project-card:focus-within .gc-signify-project-card__media video {
  filter: saturate(1.04);
}

.gc-signify-project-card__content {
  display: flex;
  min-height: 329px;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 50px 50px 0;
  background: #fff;
  text-align: left;
}

.gc-signify-project-card__content h2 {
  width: 100%;
  margin: 0;
  color: #353535;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
}

.gc-signify-project-card__content p {
  width: 100%;
  margin: 15px 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.4;
}

.gc-signify-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 38px;
  margin-bottom: 0;
  padding: 0 18px;
  border-radius: 2px;
  background: #1d3f35;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color var(--gc-transition-base), color var(--gc-transition-base), transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

.gc-signify-button::before {
  content: "◉";
  margin-right: 6px;
  font-size: 10px;
}


.gc-signify-project-card--second .gc-signify-button {
  min-width: 259px;
}

.gc-signify-button:hover,
.gc-signify-button:focus-visible {
  background: #91c03a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(145, 192, 58, .22);
}

/* GC-76: active Signify uses the shared nav ::before underline only.
   A page-local border-bottom stacked on ::before and looked like a strikethrough. */
body.page-signify .gc-nav a[href*="/signify/"] {
  color: var(--gc-header-accent);
  border-bottom: 0;
}

@media (max-width: 900px) {
  .gc-signify-hero {
    display: none;
  }

  .gc-signify-about {
    padding: 0 10px 10px;
  }

  .gc-signify-about__grid {
    display: block;
    width: 100%;
  }

  .gc-signify-about h1 {
    padding: 0;
    margin: 0 0 34px;
    font-size: 42px;
    line-height: 1.05;
  }

  .gc-signify-about__card {
    margin: 0;
    padding: 45px 30px 37px;
    font-size: 16px;
    line-height: 1.5;
  }

  .gc-signify-advances {
    padding: 58px 6px 207px;
    background-position: center left;
  }

  .gc-signify-advances h2 {
    font-size: 34px;
    line-height: 1.02;
  }

  .gc-signify-advances p {
    font-size: 14px;
  }

  .gc-signify-counters {
    display: block;
    margin-top: 24px;
  }

  .gc-signify-counters > div {
    margin-bottom: 28px;
  }

  .gc-signify-counters > div:last-child {
    margin-bottom: 0;
  }

  .gc-signify-project-title {
    padding: 44px 6px 51px;
  }

  .gc-signify-project-title h2 {
    font-size: 42px;
    line-height: 1.05;
  }

  .gc-signify-projects {
    padding: 0 0 82px;
  }

  .gc-signify-project-card {
    display: block;
    width: 100%;
  }

  .gc-signify-project-card--second {
    margin-top: 30px;
  }

  .gc-signify-project-card__content {
    min-height: 300px;
    padding: 44px 48px 0;
  }

  .gc-signify-project-card__content h2 {
    font-size: 23px;
    line-height: 1.15;
  }

  .gc-signify-project-card__content p {
    font-size: 14px;
  }

  .gc-signify-button {
    width: auto;
    max-width: none;
    font-size: 13px;
  }
}

/* Data-treatment policy page (Ley 1581 de 2012) */
.gc-policy {
  padding: 64px 0 80px;
  background: var(--gc-surface);
}

.gc-policy__inner {
  max-width: 860px;
}

.gc-policy__title {
  margin: 0 0 28px;
  color: var(--gc-primary);
  font-family: Poppins, sans-serif;
  font-size: 30px;
  line-height: 1.2;
}

.gc-policy__heading {
  margin: 36px 0 12px;
  color: var(--gc-primary);
  font-family: Poppins, sans-serif;
  font-size: 21px;
  line-height: 1.3;
}

.gc-policy p {
  margin: 0 0 16px;
  color: var(--gc-ink);
  font-size: 15px;
  line-height: 1.7;
}

.gc-policy__list {
  margin: 0 0 16px;
  padding-left: 22px;
}

.gc-policy__list li {
  margin: 0 0 10px;
  color: var(--gc-ink);
  font-size: 15px;
  line-height: 1.7;
}

.gc-policy a {
  color: var(--gc-header-accent);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .gc-policy {
    padding: 40px 0 56px;
  }

  .gc-policy__title {
    font-size: 24px;
  }

  .gc-policy__heading {
    font-size: 18px;
  }
}

/* Reconecta — secciones públicas restauradas desde producción (#como, #elegirnos) */
.gc-reconecta-cumplimiento {
  padding: 68px 0 102px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 35, 29, .88), rgba(0, 44, 38, .74)),
    url('assets/production-media/2023/10/IMG-RECURSOS-COLEC-02-scaled.jpg') center/cover;
}

.gc-reconecta-cumplimiento .gc-container,
.gc-reconecta-why .gc-container {
  width: min(1200px, calc(100% - 32px));
}

.gc-reconecta-cumplimiento h2 {
  width: calc(100% - 80px);
  margin: 0 0 22px 40px;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}

.gc-reconecta-cumplimiento__tabs {
  display: flex;
  gap: 0;
  margin: 0 0 23px;
  padding: 0 40px;
  list-style: none;
}

.gc-reconecta-cumplimiento__tabs li {
  position: relative;
  min-height: 67px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 18px;
  color: #fff;
  border-bottom: 1px solid transparent;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.gc-reconecta-cumplimiento__tabs li:focus-visible {
  outline: 2px solid #91c03a;
  outline-offset: 3px;
}


.gc-reconecta-cumplimiento__tabs li:nth-child(1) { flex-basis: 149px; }
.gc-reconecta-cumplimiento__tabs li:nth-child(2) { flex-basis: 194px; }
.gc-reconecta-cumplimiento__tabs li:nth-child(3) { flex-basis: 165px; }
.gc-reconecta-cumplimiento__tabs li:nth-child(4) { flex-basis: 230px; }
.gc-reconecta-cumplimiento__tabs li:nth-child(5) { flex-basis: 212px; }
.gc-reconecta-cumplimiento__tabs li:nth-child(6) { flex-basis: 170px; }

.gc-reconecta-cumplimiento__tabs li::before {
  content: '';
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10.8 12 3l9 7.8v9.7h-6v-6H9v6H3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10.8 12 3l9 7.8v9.7h-6v-6H9v6H3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.gc-reconecta-cumplimiento__tabs li.is-active {
  color: #91c03a;
  border-bottom-color: #91c03a;
}

.gc-reconecta-cumplimiento__tabs li.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #91c03a;
  transform: translateX(-50%);
}

.gc-reconecta-cumplimiento__panel {
  display: grid;
  grid-template-columns: 398px 1fr;
  gap: 20px;
  align-items: center;
  padding: 0 65px;
}

.gc-reconecta-cumplimiento__panel[hidden] {
  display: none;
}

.gc-reconecta-cumplimiento__panel h3 {
  margin: 0;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 40px;
}

.gc-reconecta-cumplimiento__panel p {
  margin: 0;
  color: #fff9f9;
  font-family: Poppins, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

.gc-reconecta-why {
  padding: 48px 0 52px;
  background: #0a6544;
  color: #fff;
}

.gc-reconecta-why__grid {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.gc-reconecta-why__intro h2 {
  width: 367px;
  margin: 0 0 25px 40px;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 65px;
}

.gc-reconecta-why__intro img {
  display: block;
  width: 306px;
  height: auto;
  margin-left: 70px;
}

.gc-reconecta-why__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-reconecta-why__body li {
  position: relative;
  min-height: 40px;
  margin: 0 0 29px;
  padding-left: 50px;
  color: #dde9d2;
  font-family: Poppins, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.45;
}

.gc-reconecta-why__body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #cfac57;
  color: #0a6544;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

body.page-id-9 .gc-team {
  padding: 80px 0 78px;
  background: #f5f5f5;
}

body.page-id-9 .gc-team .gc-container,
body.page-id-9 .gc-docs-layout {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
}

body.page-id-9 .gc-team h2 {
  margin: 0 0 34px;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 52px;
}

body.page-id-9 .gc-team .gc-container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  grid-template-areas: "title title" "photo members";
  gap: 20px 34px;
  align-items: start;
}

body.page-id-9 .gc-team h2 { grid-area: title; }
body.page-id-9 .gc-team__photo { grid-area: photo; }
body.page-id-9 .gc-team__members { grid-area: members; margin-top: 0; }

body.page-id-9 .gc-team__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

body.page-id-9 .gc-team-member h3 {
  margin: 0;
  color: #111;
  font-family: Poppins, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

body.page-id-9 .gc-team-member__role {
  font-family: Poppins, Arial, sans-serif;
}

body.page-id-9 .gc-team-member a {
  color: #62c860;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

body.page-id-9 .gc-team-member a.gc-team-member__phone {
  color: #353535;
}

body.page-id-9 .gc-team-member__note {
  color: #767676;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
}

body.page-id-9 .gc-recopack-services {
  padding: 0;
  background: #fff;
}

body.page-id-9 .gc-docs-layout {
  display: grid;
  height: 400px;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: center;
  margin: 0 auto;
  padding: 0;
}

body.page-id-9 .gc-docs-layout h2 {
  margin: 0 40px 0 55px;
  max-width: none;
  padding: 0;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 52px;
}

body.page-id-9 .gc-docs-list {
  display: grid;
  gap: 0;
}

body.page-id-9 .gc-doc-row {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: center;
  min-height: 60px;
}

body.page-id-9 .gc-doc-row strong {
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
  padding-left: 10px;
}

body.page-id-9 .gc-doc-row a {
  width: max-content;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 3px;
  color: #fff;
  background: #91c03a;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 600;
  line-height: 15px;
  text-decoration: none;
  margin-left: 10px;
}

body.page-id-9 .gc-recopack-news {
  padding: 12px 0 60px;
  background: #f5f5f5;
}

body.page-id-9 .gc-recopack-news .gc-container {
  width: min(1150px, calc(100% - 40px));
}

body.page-id-9 .gc-recopack-news h2 {
  margin: 0 0 25px;
  padding: 0;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 52px;
}

body.page-id-9 .gc-recopack-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 20px;
  justify-content: center;
}

body.page-id-9 .gc-recopack-news-grid a {
  position: relative;
  display: block;
  width: 360px;
  height: 237px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

body.page-id-9 .gc-recopack-news-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.page-id-9 .gc-recopack-news-grid a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #000 100%);
}

body.page-id-9 .gc-recopack-news-grid span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
}

@media (max-width: 768px) {
  .gc-reconecta-cumplimiento {
    padding: 44px 0;
  }

  .gc-reconecta-cumplimiento h2,
  .gc-reconecta-why__intro h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .gc-reconecta-cumplimiento__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .gc-reconecta-cumplimiento__tabs li {
    flex-basis: auto;
  }

  .gc-reconecta-cumplimiento__panel,
  .gc-reconecta-why__grid {
    grid-template-columns: 1fr;
  }

  .gc-reconecta-cumplimiento__panel {
    padding: 18px 0 0;
  }

  .gc-reconecta-cumplimiento__panel h3 {
    font-size: 30px;
    line-height: 1.1;
  }

  .gc-reconecta-why__intro h2,
  .gc-reconecta-why__intro img {
    margin-left: 0;
  }

  .gc-reconecta-why__intro img {
    width: min(306px, 80vw);
  }

  .gc-reconecta-why__body li {
    font-size: 20px;
  }

  .gc-reconecta-tutorial .gc-video-card::after {
    display: none;
  }

  body.page-id-9 .gc-docs-layout,
  body.page-id-9 .gc-doc-row,
  body.page-id-9 .gc-recopack-news-grid {
    grid-template-columns: 1fr;
  }

  body.page-id-9 .gc-recopack-news-grid a {
    width: 100%;
  }

  body.page-id-9 .gc-docs-layout h2 {
    padding: 0 0 24px;
  }

  body.page-id-9 .gc-doc-row {
    gap: 12px;
  }

  body.page-id-9 .gc-doc-row a {
    width: 100%;
  }

  body.page-id-9 .gc-recopack-news h2,
  body.page-id-9 .gc-team h2,
  body.page-id-9 .gc-docs-layout h2 {
    font-size: 33px;
    line-height: 1.15;
  }
}

@media (max-width: 900px) {
  body.page-id-9 .gc-header .gc-container {
    width: 100%;
  }

  /* GC-90: keep Reconecta header compact; socials appear in the open nav panel. */
  body.page-id-9 .gc-header__inner {
    min-height: 102px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
  }

  body.page-id-9 .gc-brand {
    align-items: flex-start;
    min-width: 0;
  }

  body.page-id-9 .gc-header .gc-menu-toggle {
    position: absolute;
    right: -24px;
    left: auto;
    order: 0;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 2px;
    background: #f6f6f6;
    color: #12644b;
    box-shadow: none;
  }

  body.page-id-9 .gc-menu-toggle__line {
    width: 18px;
    height: 3px;
    margin: 2px auto;
  }

  body.page-id-9 .gc-social {
    position: static;
    top: auto;
    right: auto;
    order: 0;
    margin: 0;
  }

  body.page-id-9 .gc-nav {
    top: calc(100% + 8px);
  }
}

/* GC-48: production-aligned global shell; content remains WordPress-managed. */
@media (min-width: 901px) {
  .gc-header__inner {
    min-height: 96px;
    padding: 0;
    gap: 20px;
  }

  .gc-header .gc-container {
    width: min(1100px, calc(100% - 40px));
  }

  .gc-brand {
    min-width: 180px;
  }

  .gc-brand__image {
    max-width: 155px;
    max-height: 62px;
  }

  .gc-nav__list,
  .gc-nav .menu {
    gap: 30px;
  }

  .gc-nav a {
    color: #737373;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  .gc-nav .sub-menu a {
    font-size: 14px;
  }

  .gc-site-contact {
    padding: 56px 0 64px;
  }

  .gc-site-contact__grid {
    grid-template-columns: 220px 1fr 1fr;
    gap: 0;
    width: min(1100px, calc(100% - 40px));
  }

  .gc-site-contact__brand img {
    width: 180px;
    max-width: 180px;
    margin: 0 auto;
  }

  .gc-site-contact__brand,
  .gc-site-contact__nit {
    text-align: center;
  }

  .gc-site-contact__form-wrap h2 {
    margin-bottom: 18px;
  }

  .gc-contact__form {
    gap: 10px;
  }

  .gc-contact__form label:not(.gc-contact__consent) {
    gap: 0;
    line-height: 23px;
  }

  .gc-contact__form input:not([type="checkbox"]) {
    min-height: 45px;
  }

  .gc-contact__form select,
  .gc-contact__form button {
    min-height: 40px;
  }

  .gc-social a {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 900px) {
  .gc-header {
    min-height: 102px;
  }

  .gc-header .gc-container {
    position: relative;
    width: calc(100% - 96px);
  }

  .gc-header__inner {
    min-height: 102px;
    padding: 0;
  }

  .gc-brand__image {
    max-width: 165px;
    max-height: 70px;
  }

  .gc-header .gc-menu-toggle {
    position: absolute;
    right: -24px;
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 2px;
    background: #f4f4f1;
    color: #287e5e;
    box-shadow: none;
  }

  .gc-menu-toggle:hover,
  .gc-menu-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(47, 154, 112, .2);
  }

  .gc-menu-toggle__line {
    width: 18px;
    height: 3px;
    margin: 2px auto;
  }

  .gc-nav {
    top: calc(100% + 8px);
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .gc-header .gc-menu-toggle {
    right: auto;
    left: calc(50% + 42px);
  }

  .gc-nav .gc-social a {
    width: 36px;
    height: 36px;
  }

  .gc-site-contact {
    padding: 48px 0;
  }

  .gc-site-contact__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
  }

  .gc-site-contact__brand {
    padding: 0 20px 0 20px;
  }

  .gc-site-contact__details {
    padding: 0 20px;
    border-left: 1px solid rgba(160, 204, 180, .15);
  }

  .gc-site-contact__form-wrap {
    padding: 0 20px 0 20px;
    border-left: 1px solid rgba(160, 204, 180, .15);
  }

  .gc-site-contact__brand,
  .gc-site-contact__nit {
    text-align: center;
  }

  .gc-site-contact__brand img {
    width: 150px;
    max-width: 150px;
    margin: 0 auto;
  }

  .gc-site-contact__form-wrap h2 {
    margin-bottom: 14px;
  }

  .gc-site-contact__details h3,
  .gc-site-contact__form-wrap h2 {
    font-size: .78rem;
  }

  .gc-site-contact__details p,
  .gc-contact__form label {
    font-size: 14px;
  }

  .gc-contact__form label:not(.gc-contact__consent) {
    gap: 0;
    line-height: 23px;
  }

  .gc-contact__form input:not([type="checkbox"]) {
    min-height: 45px;
  }

  .gc-contact__form select,
  .gc-contact__form button {
    min-height: 40px;
  }
}

@media (max-width: 599px) {
  .gc-home-news__grid {
    grid-template-columns: 1fr;
  }

  .gc-brand {
    margin-left: 12px;
  }

  .gc-brand__image {
    max-width: 145px;
    max-height: 60px;
  }

  .gc-site-contact {
    padding: 44px 0 36px;
  }

  .gc-site-contact__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: calc(100% - 40px);
  }

  .gc-site-contact__brand {
    padding: 0;
    text-align: center;
  }

  .gc-site-contact__details {
    padding: 28px 0 0;
    border-left: none;
    border-top: 1px solid rgba(160, 204, 180, .15);
  }

  .gc-site-contact__form-wrap {
    padding: 28px 0 0;
    border-left: none;
    border-top: 1px solid rgba(160, 204, 180, .15);
  }

  .gc-site-contact__nit {
    text-align: center;
  }

  .gc-site-contact__brand img {
    width: 180px;
    max-width: 180px;
    margin: 0 auto;
  }

  .gc-site-contact__details h3,
  .gc-site-contact__form-wrap h2 {
    font-size: .78rem;
  }

  .gc-site-footer-bar__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .gc-site-footer-bar__social {
    justify-content: center;
  }
}

/* ── GC-51: structured widget variants mapped to Recopack baseline ── */

/* Content Split: text-card variant for Quienes Somos */
body.page-id-6 .gc-content-split--text-card .gc-content-split__grid {
  display: grid;
  grid-template-columns: 25.351% 74.649%;
  gap: 0;
  align-items: center;
  width: min(1200px, calc(100% - 32px));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

body.page-id-6 .gc-content-split--text-card .gc-content-split__title {
  grid-column: 1;
  margin: 0;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 47px;
}

body.page-id-6 .gc-content-split--text-card .gc-content-split__copy {
  grid-column: 2;
  margin-top: 10px;
  padding: 28px 32px;
  color: var(--gc-muted);
  background: var(--gc-white);
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.page-id-6 .gc-content-split--text-card .gc-content-split__copy h2 {
  display: none;
}

body.page-id-6 .gc-content-split--text-card .gc-content-split__body p {
  margin: 0 0 17px;
}

body.page-id-6 .gc-content-split--text-card .gc-content-split__body p:last-child {
  margin-bottom: 0;
}

/* Quienes Somos: gray text card on the first content band (claro). */
body.page-id-6 #quienessomos {
  padding: 56px 0 72px;
  background: #fff;
}

body.page-id-6 #quienessomos .gc-content-split__copy {
  background: #f5f5f5;
  color: var(--gc-muted);
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
}

body.page-id-6 #quienessomos .gc-content-split__copy a {
  color: #91c03a;
}

/* Recopack / Ley: claro/gris from the second section (Cómo lo hacemos). */
body.page-id-6 .gc-process-cards,
body.page-id-6 #como-lo-hacemos {
  background: #f7f7f7;
}

body.page-id-6 #cec-ipusu {
  background: #fff;
}

body.page-id-6 .gc-posts-grid--overlay {
  background: #f7f7f7;
}

/* Video Gallery: grid of poster cards */
body.page-id-6 .gc-video-gallery {
  padding: 60px 0 80px;
}

body.page-id-6 .gc-video-gallery__grid {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

body.page-id-6 .gc-video-gallery__card button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 15px;
  overflow: hidden;
  background: transparent;
  line-height: 0;
  cursor: pointer;
}

body.page-id-6 .gc-video-gallery__card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

body.page-id-6 .gc-video-gallery__card button:hover img,
body.page-id-6 .gc-video-gallery__card button:focus-visible img {
  transform: scale(1.06);
}

body.page-id-6 .gc-video-gallery__card span {
  display: none;
}

body.page-id-6 .gc-video-gallery__card p,
body.page-id-6 .gc-video-gallery__card a {
  display: none;
}

body.page-id-6 .gc-video-gallery__modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
}

body.page-id-6 .gc-video-gallery__modal[hidden] {
  display: none !important;
}

body.page-id-6 .gc-video-gallery__modal button[data-gc-video-close] {
  position: absolute;
  top: -42px;
  right: -4px;
  width: 36px;
  height: 36px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

body.page-id-6 .gc-video-gallery__iframe {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  border: 0;
}

body.page-id-6 .gc-video-gallery__modal button[data-gc-video-close]::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .86);
  cursor: pointer;
}

body.page-id-6 .gc-video-gallery__modal {
  background: rgba(0, 0, 0, .86);
}

/* Tabs Results: description paragraph */
body.page-id-6 .gc-tabs-results__heading {
  max-width: 760px;
  margin-bottom: 22px;
}

body.page-id-6 .gc-tabs-results__heading h2 {
  margin: 0 0 15px;
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
}

body.page-id-6 .gc-tabs-results__heading p {
  margin: 0;
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

/* Progress Bars: description */
body.page-id-6 .gc-progress-bars__description {
  color: #000;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
}

/* Borderless depth-card language (home parity) applied to Recopack cards. */
body.page-id-6 .gc-content-split__copy {
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
}

body.page-id-6 .gc-process-cards__card,
body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__items article {
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
  overflow: hidden;
  background: var(--gc-white);
  transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

body.page-id-6 .gc-process-cards__card:hover,
body.page-id-6 .gc-process-cards__card:focus-within,
body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__items article:hover,
body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__items article:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--gc-shadow-card-hover);
}

/* Document List: clean two-column registry */
body.page-id-6 .gc-document-list--split .gc-document-list__split {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

body.page-id-6 .gc-document-list--split h2 {
  margin: 0 0 32px;
  max-width: none;
  padding: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 52px;
  color: #353535;
}

body.page-id-6 .gc-document-list--split .gc-document-list__registry {
  overflow: hidden;
  border: 1px solid #dfe5d8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(39, 58, 26, .08);
}

body.page-id-6 .gc-document-list--split .gc-document-list__items {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-id-6 .gc-document-list--split .gc-document-list__items li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  min-height: 76px;
  padding: 14px 24px;
  border-bottom: 1px solid #e6eadf;
}

body.page-id-6 .gc-document-list--split .gc-document-list__items li:last-child {
  border-bottom: 0;
}

body.page-id-6 .gc-document-list--split .gc-document-list__items li:nth-child(even) {
  background: #f8faf5;
}

body.page-id-6 .gc-document-list--split .gc-document-list__items .gc-document-list__title {
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

body.page-id-6 .gc-document-list--split .gc-document-list__items a {
  width: 190px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 6px;
  color: #fff;
  background: #91c03a;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 15px;
  text-decoration: none;
  transition: background-color var(--gc-transition-base), transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

body.page-id-6 .gc-document-list--split .gc-document-list__download-icon {
  flex: 0 0 18px;
}

body.page-id-6 .gc-document-list--split .gc-document-list__items a:hover,
body.page-id-6 .gc-document-list--split .gc-document-list__items a:focus-visible {
  background: #7fae2f;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(145, 192, 58, .24);
}

/* Posts Grid: overlay layout */
body.page-id-6 .gc-posts-grid--overlay {
  padding: 40px 0 80px;
  background: #f7f7f7;
}

body.page-id-6 .gc-posts-grid--overlay .gc-container {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
}

body.page-id-6 .gc-posts-grid--overlay h2 {
  width: calc(100% + 30px);
  max-width: 1150px;
  margin: 0 -15px 34px;
  padding: 10px 0;
  line-height: 52px;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
}

body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__items {
  display: grid;
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__items article {
  margin: 0;
}

body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__overlay {
  position: relative;
  display: block;
  /* Production Penci cards use hard-cropped 585×410 backgrounds. */
  aspect-ratio: 585 / 410;
  overflow: hidden;
  border-radius: inherit;
  color: #fff;
  text-decoration: none;
  line-height: 0;
}

body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__overlay img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.5s ease, filter 0.5s ease;
}

body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #000 100%);
  transition: opacity var(--gc-transition-base);
}

body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__overlay:hover img,
body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__overlay:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.04);
}

body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__overlay:hover::after,
body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__overlay:focus-visible::after {
  opacity: .92;
}

body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__date {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

/* Media Carousel: Recopack partners — full viewport width on desktop */
body.page-id-6 .elementor-element-gc51Partners.elementor-section-full_width > .elementor-container {
  max-width: none;
  width: 100%;
}

body.page-id-6 .elementor-element-gc51Partners .elementor-widget-container,
body.page-id-6 .elementor-element-gc51Partners .elementor-column-wrap,
body.page-id-6 .elementor-element-gc51Partners .elementor-widget-wrap {
  max-width: none;
  width: 100%;
}

body.page-id-6 .gc-media-carousel {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: none;
}

body.page-id-6 .gc-media-carousel .gc-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.page-id-6 .gc-media-carousel__track {
  position: relative;
  width: 100%;
}

body.page-id-6 .gc-media-carousel__slide {
  margin: 0;
  width: 100%;
}

body.page-id-6 .gc-media-carousel__slide img {
  display: block;
  max-width: none;
  width: 100%;
  height: auto;
}

body.page-id-6 .gc-media-carousel__previous,
body.page-id-6 .gc-media-carousel__next {
  border: 0;
  background: transparent;
  cursor: pointer;
}

body.page-id-6 .gc-content-split--text-card .gc-content-split__grid {
  padding: 0;
}

body.page-id-6 .gc-media-carousel__slide[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  body.page-id-6 .gc-content-split--text-card .gc-content-split__grid,
  body.page-id-6 .gc-document-list--split .gc-document-list__split {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    gap: 16px;
    align-items: stretch;
  }

  /* grid-column:2 on copy creates an implicit second column; reset on mobile */
  body.page-id-6 .gc-content-split--text-card .gc-content-split__title,
  body.page-id-6 .gc-content-split--text-card .gc-content-split__copy {
    grid-column: 1;
  }

  body.page-id-6 .gc-content-split--text-card .gc-content-split__title {
    font-size: 32px;
    line-height: 1.2;
  }

  body.page-id-6 .gc-content-split--text-card .gc-content-split__copy {
    margin-top: 0;
    padding: 20px 20px 28px;
  }

  body.page-id-6 #quienessomos {
    padding: 40px 0 56px;
    background: #fff;
  }

  body.page-id-6 .gc-content-split--text-card .gc-content-split__copy h2 {
    display: none;
  }

  body.page-id-6 .gc-video-gallery__grid,
  body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-id-6 .gc-tabs-results__heading h2 {
    font-size: 33px;
    line-height: 1.15;
  }

  body.page-id-6 .gc-document-list--split h2,
  body.page-id-6 .gc-posts-grid--overlay h2 {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 599px) {
  body.page-id-6 .gc-video-gallery__grid,
  body.page-id-6 .gc-posts-grid--overlay .gc-posts-grid__items {
    grid-template-columns: 1fr;
  }

  body.page-id-6 .gc-document-list--split .gc-document-list__items li {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px;
  }

  body.page-id-6 .gc-document-list--split .gc-document-list__items a {
    width: 46px;
    min-height: 46px;
    padding: 0;
  }

  body.page-id-6 .gc-document-list--split .gc-document-list__download-label {
    display: none;
  }

  body.page-id-6 .gc-video-gallery__modal {
    padding: 18px;
  }

  body.page-id-6 .gc-video-gallery__modal button[data-gc-video-close] {
    top: -38px;
    right: 0;
  }
}

/* ── GC-52: /reconecta-productores/ widgets estructurados (mapeo a clases del baseline) ── */

/* Banner superior: media_carousel → mismo look que gc-banner-carousel */
body.page-id-9 .gc-media-carousel {
  padding: 10px 0 25px;
  background: #fff;
}

body.page-id-9 .gc-media-carousel .gc-container {
  position: relative;
  width: auto;
  max-width: 1120px;
  margin: 0 auto;
}

body.page-id-9 .gc-media-carousel__track {
  width: 100%;
  aspect-ratio: 1200 / 300;
  overflow: hidden;
  border-radius: 14px;
  margin: 0 auto;
}

body.page-id-9 .gc-media-carousel__slide {
  margin: 0;
  text-align: center;
}

body.page-id-9 .gc-media-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

body.page-id-9 .gc-media-carousel__previous,
body.page-id-9 .gc-media-carousel__next {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(255, 255, 255, .7);
  color: #000;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

body.page-id-9 .gc-media-carousel__previous { left: 10px; }
body.page-id-9 .gc-media-carousel__next { right: 10px; }

body.page-id-9 .gc-media-carousel__slide[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  body.page-id-9 .gc-media-carousel__slide {
    transition: none;
  }
}

/* Quienes Somos: text-card */
/* GC-70: Quiénes Somos — same two-column text-card pattern as Recopack.
   GC-72: exclude #cec-ipusu (two bordered boxes; shared #cec-ipusu rules). */
body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) {
  padding: 56px 0 72px;
  background: #fff;
}

body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) .gc-content-split__grid {
  display: grid;
  grid-template-columns: 25.351% 74.649%;
  gap: 0;
  align-items: center;
  width: min(1200px, calc(100% - 32px));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) .gc-content-split__title {
  grid-column: 1;
  width: auto;
  max-width: none;
  margin: 0;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 47px;
}

body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) .gc-content-split__copy {
  grid-column: 2;
  margin-top: 10px;
  padding: 28px 32px;
  background: #f5f5f5;
  color: var(--gc-muted);
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) .gc-content-split__body p {
  margin: 0 0 17px;
}

body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) .gc-content-split__body p:last-child {
  margin-bottom: 0;
}

/* Tutorial Normativo: video_gallery */
body.page-id-9 .gc-video-gallery {
  padding: 70px 0 76px;
}

body.page-id-9 .gc-video-gallery .gc-container {
  width: min(1200px, calc(100% - 32px));
  max-width: 1200px;
}

body.page-id-9 .gc-video-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 266px));
  gap: 34px;
  justify-content: center;
}

body.page-id-9 .gc-video-gallery__card {
  position: relative;
  width: 100%;
  max-width: 266px;
  margin: 0 auto;
}

body.page-id-9 .gc-video-gallery__card button {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 15px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

body.page-id-9 .gc-video-gallery__card button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  background: rgba(10, 101, 68, .9);
  border-radius: 999px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / 22px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / 22px no-repeat;
}

body.page-id-9 .gc-video-gallery__card img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body.page-id-9 .gc-video-gallery__card span,
body.page-id-9 .gc-video-gallery__card p,
body.page-id-9 .gc-video-gallery__card a {
  display: none;
}

body.page-id-9 .gc-video-gallery__card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: -16px;
  right: -18px;
  bottom: -16px;
  width: 1px;
  background: #bcbcbc;
  pointer-events: none;
}

body.page-id-9 .gc-video-gallery__modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .86);
}

body.page-id-9 .gc-video-gallery__modal[hidden] {
  display: none !important;
}

body.page-id-9 .gc-video-gallery__modal button[data-gc-video-close] {
  position: absolute;
  top: -42px;
  right: -4px;
  width: 36px;
  height: 36px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

body.page-id-9 .gc-video-gallery__iframe {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Cumplimiento Normativo: tabs_results */
body.page-id-9 .gc-tabs-results {
  padding: 68px 0 102px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 35, 29, .88), rgba(0, 44, 38, .74)),
    url('assets/production-media/2023/10/IMG-RECURSOS-COLEC-02-scaled.jpg') center/cover;
}

body.page-id-9 .gc-tabs-results .gc-container {
  width: min(1200px, calc(100% - 32px));
  max-width: 1200px;
}

body.page-id-9 .gc-tabs-results__heading h2 {
  width: calc(100% - 80px);
  margin: 0 0 22px 40px;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}

body.page-id-9 .gc-tabs-results__tabs {
  display: flex;
  gap: 0;
  margin: 0 0 23px;
  padding: 0 40px;
}

body.page-id-9 .gc-tabs-results__tabs button {
  position: relative;
  min-height: 67px;
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 18px;
  color: #fff;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

body.page-id-9 .gc-tabs-results__tabs button:focus-visible {
  outline: 2px solid #91c03a;
  outline-offset: 3px;
}

body.page-id-9 .gc-tabs-results__tabs button::before {
  content: '';
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10.8 12 3l9 7.8v9.7h-6v-6H9v6H3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10.8 12 3l9 7.8v9.7h-6v-6H9v6H3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.page-id-9 .gc-tabs-results__tabs button[aria-selected="true"] {
  color: #91c03a;
  border-bottom-color: #91c03a;
}

body.page-id-9 .gc-tabs-results__tabs button[aria-selected="true"]::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #91c03a;
  transform: translateX(-50%);
}

body.page-id-9 .gc-tabs-results__panels {
  padding: 0 65px;
}

body.page-id-9 .gc-tabs-results__panels article {
  display: grid;
  grid-template-columns: 398px 1fr;
  gap: 20px;
  align-items: center;
}

body.page-id-9 .gc-tabs-results__panels article[hidden] {
  display: none;
}

body.page-id-9 .gc-tabs-results__panels h3 {
  margin: 0;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 40px;
}

body.page-id-9 .gc-tabs-results__panels p {
  margin: 0;
  color: #fff9f9;
  font-family: Poppins, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

/* Por qué Elegirnos: content_split media-right */
body.page-id-9 .gc-content-split--media-right {
  padding: 48px 0 52px;
  background: #0a6544;
  color: #fff;
}

body.page-id-9 .gc-content-split--media-right .gc-container {
  width: min(1200px, calc(100% - 32px));
  max-width: 1200px;
}

body.page-id-9 .gc-content-split--media-right .gc-content-split__grid {
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 40px;
  align-items: start;
}

body.page-id-9 .gc-content-split--media-right .gc-content-split__media {
  order: 2;
  display: block;
  width: 306px;
  height: auto;
  margin-left: 70px;
  align-self: end;
}

body.page-id-9 .gc-content-split--media-right .gc-content-split__copy {
  order: 1;
}

body.page-id-9 .gc-content-split--media-right .gc-content-split__copy h2 {
  width: 367px;
  margin: 0 0 25px 40px;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 65px;
}

body.page-id-9 .gc-content-split--media-right .gc-content-split__body {
  margin: 0;
  padding: 0;
}

body.page-id-9 .gc-content-split--media-right .gc-content-split__body ul,
body.page-id-9 .gc-content-split--media-right .gc-content-split__body ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-id-9 .gc-content-split--media-right .gc-content-split__body li {
  position: relative;
  min-height: 40px;
  margin: 0 0 29px;
  padding-left: 50px;
  color: #dde9d2;
  font-family: Poppins, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.45;
}

body.page-id-9 .gc-content-split--media-right .gc-content-split__body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #cfac57;
  color: #0a6544;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

/* Documentos: document_list lista */
body.page-id-9 .gc-document-list--list {
  padding: 0;
  background: #fff;
}

body.page-id-9 .gc-document-list--list .gc-container {
  display: grid;
  min-height: 400px;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 0 72px;
}

body.page-id-9 .gc-document-list--list h2 {
  margin: 0 40px 0 55px;
  max-width: none;
  padding: 0;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 52px;
}

body.page-id-9 .gc-document-list--list .gc-document-list__items {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-id-9 .gc-document-list--list .gc-document-list__items li {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: center;
  min-height: 60px;
}

body.page-id-9 .gc-document-list--list .gc-document-list__items span {
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
  padding-left: 10px;
}

body.page-id-9 .gc-document-list--list .gc-document-list__items a {
  width: max-content;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 3px;
  color: #fff;
  background: #91c03a;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 600;
  line-height: 15px;
  text-decoration: none;
  margin-left: 10px;
  transition: background-color var(--gc-transition-base), transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

body.page-id-9 .gc-document-list--list .gc-document-list__items a:hover,
body.page-id-9 .gc-document-list--list .gc-document-list__items a:focus-visible {
  background: #7fae2f;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(145, 192, 58, .24);
}

/* Noticias: posts_grid overlay */
body.page-id-9 .gc-posts-grid--overlay {
  padding: 12px 0 60px;
  background: #f5f5f5;
}

body.page-id-9 .gc-posts-grid--overlay .gc-container {
  width: min(1150px, calc(100% - 40px));
  max-width: 1150px;
}

body.page-id-9 .gc-posts-grid--overlay h2 {
  margin: 0 0 25px;
  padding: 0;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 52px;
}

body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 20px;
  justify-content: center;
}

body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__overlay {
  position: relative;
  display: block;
  width: 360px;
  height: auto;
  aspect-ratio: 585 / 410;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__overlay img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform var(--gc-transition-base), filter var(--gc-transition-base);
}

body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #000 100%);
  transition: opacity var(--gc-transition-base);
}

body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__overlay:hover img,
body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__overlay:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__overlay:hover::after,
body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__overlay:focus-visible::after {
  opacity: .92;
}

body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__date {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
}

@media (max-width: 1200px) {
  body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__items {
    grid-template-columns: repeat(2, 360px);
  }
}

@media (max-width: 900px) {
  body.page-id-9 .gc-content-split--text-card .gc-content-split__grid,
  body.page-id-9 .gc-content-split--media-right .gc-content-split__grid,
  body.page-id-9 .gc-tabs-results__panels article,
  body.page-id-9 .gc-document-list--list .gc-container {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  /* GC-91: :not(#cec-ipusu) adds ID specificity, so desktop 25%/75% beat the
     generic mobile 1fr rule above — both title+copy stayed in the ~25% column. */
  body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) .gc-content-split__grid {
    grid-template-columns: minmax(0, 1fr);
    width: calc(100% - 32px);
    max-width: none;
  }

  /* GC-70: grid-column:2 on copy creates an implicit second column; reset on mobile.
     GC-72: keep #cec-ipusu on the shared bordered-box mobile rules. */
  body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) .gc-content-split__title,
  body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) .gc-content-split__copy {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) .gc-content-split__title {
    font-size: 32px;
    line-height: 1.2;
  }

  body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) .gc-content-split__copy {
    margin-top: 0;
    padding: 24px 24px 28px;
  }

  body.page-id-9 .gc-video-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__items {
    grid-template-columns: 1fr;
  }

  body.page-id-9 .gc-posts-grid--overlay .gc-posts-grid__overlay {
    width: 100%;
    height: auto;
    aspect-ratio: 585 / 410;
  }

  body.page-id-9 .gc-tabs-results__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  body.page-id-9 .gc-tabs-results__tabs button {
    flex-basis: auto;
  }

  body.page-id-9 .gc-content-split--media-right .gc-content-split__media,
  body.page-id-9 .gc-content-split--media-right .gc-content-split__copy h2 {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  body.page-id-9 .gc-content-split--text-card:not(#cec-ipusu) .gc-content-split__title {
    width: auto;
    max-width: none;
  }

  body.page-id-9 .gc-document-list--list h2 {
    padding: 0 0 24px;
    margin: 0;
  }

  body.page-id-9 .gc-document-list--list .gc-document-list__items li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.page-id-9 .gc-document-list--list .gc-document-list__items a {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 599px) {
  body.page-id-9 .gc-video-gallery__grid {
    grid-template-columns: 1fr;
  }

  body.page-id-9 .gc-content-split--media-right .gc-content-split__body li {
    font-size: 20px;
  }

  body.page-id-9 .gc-tabs-results__heading h2,
  body.page-id-9 .gc-content-split--media-right .gc-content-split__copy h2,
  body.page-id-9 .gc-document-list--list h2,
  body.page-id-9 .gc-posts-grid--overlay h2,
  body.page-id-9 .gc-team h2 {
    font-size: 33px;
    line-height: 1.15;
  }

  body.page-id-9 .gc-tabs-results__panels h3 {
    font-size: 30px;
    line-height: 1.1;
  }
}

/* GC-55 protected visual parity: typed Signify widgets and content templates. */

/* Signify page 34: skin only the approved typed widgets. */
body.page-id-34 .elementor-element-gc53SignifyAboutWidget .gc-content-split {
  padding: 56px 0 72px;
  background: #fff;
}
body.page-id-34 .elementor-element-gc53SignifyProjectTitleWidget .gc-content-split { padding: 0; background: #fff; }
body.page-id-34 .elementor-element-gc53SignifyAboutWidget .gc-content-split__grid {
  display: grid;
  grid-template-columns: 25.351% 74.649%;
  gap: 0;
  align-items: center;
  width: min(1170px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 0;
}
body.page-id-34 .elementor-element-gc53SignifyAboutWidget .gc-content-split__title {
  margin: 0;
  padding: 0;
  border: 0;
  color: #353535;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
}
body.page-id-34 .elementor-element-gc53SignifyAboutWidget .gc-content-split__copy {
  min-height: 0;
  display: block;
  margin-top: 10px;
  padding: 28px 32px;
  background: #f5f5f5;
  color: var(--gc-muted);
  font: 16px/1.5 Poppins, Arial, sans-serif;
  border: 0;
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
}
body.page-id-34 .elementor-element-gc53SignifyAboutWidget .gc-content-split__body p { margin: 0 0 20px; text-align: justify; }
body.page-id-34 .elementor-element-gc53SignifyAboutWidget .gc-content-split__body p:last-child { margin-bottom: 0; }

/* GC-83: Signify advances — 4-col counters, nowrap metric+unit, full container width. */
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results { padding: 70px 0 74px; color: #fff; background: linear-gradient(rgba(0, 63, 54, .86), rgba(0, 63, 54, .86)), url('assets/production-media/2023/09/IMG-RECURSOS-COLEC-01-scaled.jpg') center/cover; }
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-container { width: min(1170px, calc(100% - 40px)); }
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__heading { text-align: left; }
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget h2 { margin: 0 0 18px; color: #fff; font-size: 40px; font-weight: 800; line-height: 1.15; text-align: left; }
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__heading p { margin: 0 0 36px; color: #fff; font-size: 16px; line-height: 1.5; text-align: left; }
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__tabs { display: none; }
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__panels { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px 28px; max-width: none; width: 100%; margin: 0; text-align: center; }
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__panels article,
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__panels article[hidden] { display: block; min-width: 0; }
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__panels h3 { margin: 0; color: #fff; font-size: 40px; font-weight: 600; line-height: 1.05; white-space: nowrap; }
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__metric { white-space: nowrap; }
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__unit { margin-left: 0.2em; white-space: nowrap; }
body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__panels p { margin: 12px 0 0; color: #fff; font-size: 17px; }
@media (max-width: 1100px) and (min-width: 641px) {
  body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__panels { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 32px; }
  body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__panels h3 { font-size: 42px; }
}

body.page-id-34 .elementor-element-gc53SignifyProjectTitleWidget .gc-content-split__grid { display: block; width: min(1170px, calc(100% - 40px)); margin: 0 auto; padding: 40px 0 16px; }
body.page-id-34 .elementor-element-gc53SignifyProjectTitleWidget .gc-content-split__title { max-width: none; margin: 0; color: #353535; font-size: 40px; font-weight: 800; line-height: 1.12; }

body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery { padding: 8px 0 72px; background: #fff; }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-container { width: min(1170px, calc(100% - 40px)); }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery > .gc-container > h2:empty { display: none; }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__card { min-width: 0; min-height: 0; display: grid; grid-template-columns: 1.1fr 0.9fr; grid-template-rows: 1fr auto auto 1fr; background: #fff; border-radius: var(--gc-radius-card); overflow: hidden; box-shadow: var(--gc-shadow-card); transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base); }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__card:hover { transform: translateY(-2px); box-shadow: var(--gc-shadow-card-hover); }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__open { grid-column: 1; grid-row: 1 / -1; min-width: 0; min-height: 200px; display: flex; align-items: flex-end; padding: 22px 24px; border: 0; background: linear-gradient(0deg, rgba(4, 35, 29, .88), rgba(4, 35, 29, .12)), url('assets/production-media/2023/10/IMG-RECURSOS-COLEC-02-scaled.jpg') center/cover; color: #fff; font: 700 20px/1.3 Poppins, Arial, sans-serif; text-align: left; cursor: pointer; }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__card:nth-child(2) .gc-video-gallery__open { background-image: linear-gradient(0deg, rgba(4, 35, 29, .88), rgba(4, 35, 29, .12)), url('assets/production-media/2024/06/Signify-1.png'); }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__open:focus-visible { outline: 3px solid #91c03a; outline-offset: -5px; }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__card p { grid-column: 2; grid-row: 2; align-self: end; justify-self: center; width: 100%; max-width: 280px; margin: 0; padding: 0 24px 12px; color: #555; font-size: 15px; line-height: 1.45; text-align: center; }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__cta { grid-column: 2; grid-row: 3; justify-self: center; margin: 0; padding: 10px 18px; border-radius: 6px; background: #1d3f35; color: #fff; font-weight: 600; text-decoration: none; }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__cta:hover,
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__cta:focus-visible { background: #91c03a; }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__modal { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; padding: 60px 24px 24px; background: rgba(0, 0, 0, .88); }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__modal[hidden] { display: none; }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__modal video { width: min(100%, 960px); max-height: calc(100vh - 96px); }
body.page-id-34 .elementor-element-gc53SignifyProjectsWidget [data-gc-video-close] { position: absolute; top: 18px; right: 24px; border: 0; background: transparent; color: #fff; font-size: 42px; cursor: pointer; }

/* Production-like archive feed and native, accessible sidebar. */
.gc-blog--archive,
.gc-blog--single { background: #fff; }
.gc-blog--archive .gc-blog-hero { padding: 42px 0 26px; background: #fff; color: #353535; }
.gc-blog--archive .gc-blog-hero h1 { max-width: none; color: #353535; font-size: 30px; font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.gc-blog--archive .gc-blog-hero__description { max-width: 760px; margin-top: 12px; color: #666; }
.gc-blog--archive .gc-blog-hero__description p { margin: 0; }
.gc-blog--archive .gc-blog-list { padding: 10px 0 72px; }
.gc-archive-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 46px; align-items: start; }
.gc-blog--archive .gc-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 28px; }
.gc-blog--archive .gc-blog-card { min-width: 0; box-shadow: none; }
.gc-blog--archive .gc-blog-card__media { aspect-ratio: 585/410; }
.gc-blog--archive .gc-blog-card__media img { height: 100%; }
.gc-blog--archive .gc-blog-card__body { padding: 20px 6px 0; text-align: center; }
.gc-blog--archive .gc-blog-card__meta { justify-content: center; color: #77b84b; }
.gc-blog--archive .gc-blog-card h2 { font-size: 20px; line-height: 1.35; text-transform: uppercase; }
.gc-blog--archive .gc-blog-card p { text-align: left; }

.gc-blog-sidebar { min-width: 0; font-family: Roboto, Arial, sans-serif; }
.gc-sidebar-search,
.gc-error-search { display: flex; width: 100%; }
.gc-sidebar-search input,
.gc-error-search input { min-width: 0; flex: 1 1 auto; height: 42px; padding: 0 12px; border: 1px solid #ddd; border-radius: 0; }
.gc-sidebar-search button,
.gc-error-search button { min-height: 42px; padding: 0 15px; border: 0; background: #91c03a; color: #fff; font-weight: 700; cursor: pointer; }
.gc-sidebar-section { margin-top: 38px; }
.gc-sidebar-section h2 { margin: 0 0 16px; color: #353535; font-size: 20px; font-weight: 700; }
.gc-sidebar-section ul { margin: 0; padding: 0; list-style: none; }
.gc-sidebar-section li { padding: 12px 0; border-bottom: 1px solid #e6e6e6; }
.gc-sidebar-section a { color: #4e4e4e; font-size: 14px; line-height: 1.5; overflow-wrap: anywhere; text-decoration: none; }
.gc-sidebar-section a:hover,
.gc-sidebar-section a:focus-visible { color: #16975d; text-decoration: underline; }

/* Featured-image title overlay and production-like article composition. */
.gc-article-top { padding-top: 24px; }
.gc-article-hero__back { display: inline-block; margin-bottom: 16px; }
.gc-article-masthead { position: relative; overflow: hidden; min-height: 500px; background: #0f4a3c; }
.gc-article-cover { width: 100%; max-width: none; height: 100%; margin: 0; padding: 0; }
.gc-article-cover img { width: 100%; min-height: 500px; aspect-ratio: 10/7; object-fit: cover; }
.gc-article-hero { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 42px; background: linear-gradient(to bottom, transparent 38%, rgba(0, 0, 0, .8)); color: #fff; }
.gc-article-hero h1 { max-width: 980px; color: #fff; font-size: clamp(25px, 3vw, 38px); }
.gc-article-hero__cats,
.gc-article-hero__meta { color: #fff; }
.gc-article-hero__cats a { color: #b5dd6b; }
.gc-article-hero__meta { margin-top: 12px; }
.gc-article-masthead--without-image { min-height: 0; }
.gc-article-masthead--without-image .gc-article-hero { position: static; background: #0f4a3c; }
.gc-article-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 50px; padding-top: 36px; }
.gc-article-content { min-width: 0; font-size: 15px; line-height: 1.72; }
.gc-article-content h2 { font-size: 24px; }
.gc-article-content h3 { font-size: 20px; }
.gc-article-aside { position: sticky; top: 112px; padding: 0; background: transparent; box-shadow: none; }
.gc-article-aside .gc-sidebar-section h2 { font-size: 18px; }

/* Wider white legal-document treatment. */
.gc-policy { padding: 48px 0 80px; background: #fff; font-family: Roboto, Arial, sans-serif; }
.gc-policy__inner { width: min(1120px, calc(100% - 40px)); max-width: 1120px; }
.gc-policy__title { margin: 0 0 36px; color: #2d2d2d; font: 700 23px/1.25 Roboto, Arial, sans-serif; text-align: center; text-transform: uppercase; }
.gc-policy__heading { margin: 24px 0 10px; color: #222; font: italic 700 16px/1.4 Roboto, Arial, sans-serif; }
.gc-policy p,
.gc-policy__list li { color: #333; font-size: 14px; line-height: 1.65; }
.gc-policy p { margin-bottom: 15px; }
.gc-policy__list li { margin-bottom: 8px; }

/* Dedicated Spanish 404/search state. */
.gc-error-page { display: grid; min-height: 620px; place-items: center; padding: 72px 0 88px; background: #fff; color: #353535; }
.gc-error-page__inner { max-width: 760px; text-align: center; }
.gc-error-page__code { margin: 0; color: #16975d; font: 900 clamp(92px, 18vw, 180px)/.8 Poppins, Arial, sans-serif; }
.gc-error-page h1 { margin: 34px 0 14px; color: #1d3f35; font-size: clamp(32px, 5vw, 52px); }
.gc-error-page__inner > p:not(.gc-error-page__code) { max-width: 620px; margin: 0 auto; color: #666; font-size: 17px; line-height: 1.65; }
.gc-error-search { max-width: 560px; margin: 30px auto 24px; }
.gc-error-page__home { color: #16975d; font-weight: 700; text-underline-offset: 3px; }

@media (max-width: 900px) {
  body.page-id-34 .elementor-element-gc53SignifyAboutWidget .gc-content-split__grid,
  .gc-archive-layout,
  .gc-article-layout { grid-template-columns: 1fr; }
  body.page-id-34 .elementor-element-gc53SignifyAboutWidget .gc-content-split__title { margin-bottom: 16px; padding: 0; border: 0; }
  body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__card { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__open { grid-column: 1; grid-row: 1; min-height: 180px; }
  body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__card p { grid-column: 1; grid-row: 2; padding: 20px 20px 12px; }
  body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__cta { grid-column: 1; grid-row: 3; margin: 0 auto 24px; }
  .gc-archive-layout,
  .gc-article-layout { gap: 42px; }
  .gc-blog-sidebar,
  .gc-article-aside { position: static; }
  .gc-article-masthead,
  .gc-article-cover img { min-height: 420px; }
}

@media (max-width: 640px) {
  body.page-id-34 .elementor-element-gc53SignifyAboutWidget .gc-content-split__grid,
  body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-container,
  body.page-id-34 .elementor-element-gc53SignifyProjectTitleWidget .gc-content-split__grid,
  body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-container { width: min(100% - 28px, 1170px); }
  body.page-id-34 .elementor-element-gc53SignifyAboutWidget .gc-content-split__title,
  body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget h2,
  body.page-id-34 .elementor-element-gc53SignifyProjectTitleWidget .gc-content-split__title { font-size: 32px; }
  body.page-id-34 .elementor-element-gc53SignifyAboutWidget .gc-content-split__copy { padding: 24px 22px; min-height: 0; border: 0; }
  body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results { padding: 52px 0; }
  body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__panels { grid-template-columns: 1fr; gap: 28px; max-width: none; }
  body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__panels h3 { font-size: 36px; white-space: nowrap; }
  body.page-id-34 .elementor-element-gc53SignifyAdvancesWidget .gc-tabs-results__heading p { margin-bottom: 28px; }
  body.page-id-34 .elementor-element-gc53SignifyProjectTitleWidget .gc-content-split__grid { padding: 32px 0 12px; }
  body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__open { min-height: 160px; padding: 20px; font-size: 18px; }
  body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__card p { padding: 18px 20px 10px; }
  body.page-id-34 .elementor-element-gc53SignifyProjectsWidget .gc-video-gallery__cta { margin: 0 auto 20px; }
  .gc-blog--archive .gc-blog-grid { grid-template-columns: 1fr; }
  .gc-article-masthead,
  .gc-article-cover img { min-height: 360px; }
  .gc-article-hero { padding: 24px; }
  .gc-article-hero h1 { font-size: 23px; }
  .gc-policy__title { font-size: 21px; }
  .gc-error-page { min-height: 520px; padding: 56px 0 72px; }
  .gc-error-search { flex-direction: column; gap: 10px; }
}

/* ── GC-56: home ecosistema de servicios (row layout) ── */
.gc-ecosystem--services {
  padding: 72px 0 64px;
  background: var(--gc-white);
  border-bottom: 1px solid rgba(17, 17, 17, .06);
}

.gc-ecosystem--services .gc-container,
.gc-ecosystem--services .gc-ecosystem__inner {
  width: min(980px, calc(100% - 32px));
  margin-inline: auto;
}

.gc-ecosystem--services .gc-ecosystem__intro {
  display: block;
  padding: 0 0 36px;
  text-align: center;
}

.gc-ecosystem--services .gc-ecosystem__intro h2 {
  margin: 0;
  color: #333336;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.18;
}

.gc-ecosystem--services .gc-ecosystem__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gc-ecosystem-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

a.gc-ecosystem-row:hover .gc-ecosystem-row__logo,
a.gc-ecosystem-row:focus-visible .gc-ecosystem-row__logo,
a.gc-ecosystem-row:hover .gc-ecosystem-row__text,
a.gc-ecosystem-row:focus-visible .gc-ecosystem-row__text {
  transform: translateY(-2px);
  box-shadow: var(--gc-shadow-card-hover);
}

.gc-ecosystem-row__logo,
.gc-ecosystem-row__text {
  border: 0;
  border-radius: var(--gc-radius-card);
  background: #fff;
  box-shadow: var(--gc-shadow-card);
  transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

.gc-ecosystem-row__logo {
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 22px 28px;
}

.gc-ecosystem-row__logo img {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 96px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}

.gc-ecosystem-row__logo-text {
  color: var(--gc-primary);
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gc-ecosystem-row__text {
  display: flex;
  align-items: center;
  padding: 22px 28px;
}

.gc-ecosystem-row__text p {
  margin: 0;
  color: var(--gc-ink);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(.95rem, 1.15vw, 1.05rem);
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .gc-ecosystem--services {
    padding: 56px 0 48px;
  }

  .gc-ecosystem-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gc-ecosystem-row__logo {
    min-height: 112px;
    padding: 18px 20px;
  }

  .gc-ecosystem-row__text {
    padding: 18px 20px;
  }
}

/* ── GC-56: home team grid ── */
/* GC-73: Home team — circular avatars + readable contact cards (no full-bleed placeholders). */
body.home .gc-team,
body.page-id-5 .gc-team {
  padding: 72px 0 88px;
  background: #f5f5f5;
}

body.home .gc-team .gc-container,
body.page-id-5 .gc-team .gc-container {
  width: min(1100px, calc(100% - 32px));
}

body.home .gc-team h2,
body.page-id-5 .gc-team h2 {
  margin: 0 auto 48px;
  max-width: 18ch;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

body.home .gc-team__members,
body.page-id-5 .gc-team__members {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

body.home .gc-team-member,
body.page-id-5 .gc-team-member {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 0;
  border-radius: var(--gc-radius-card);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--gc-shadow-card);
  transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

body.home .gc-team-member:hover,
body.home .gc-team-member:focus-within,
body.page-id-5 .gc-team-member:hover,
body.page-id-5 .gc-team-member:focus-within {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--gc-shadow-card-hover);
}

body.home .gc-team-member__media,
body.page-id-5 .gc-team-member__media {
  aspect-ratio: auto;
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 8px;
  background: transparent;
}

body.home .gc-team-member__avatar,
body.page-id-5 .gc-team-member__avatar {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--gc-primary);
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

body.home .gc-team-member__photo,
body.page-id-5 .gc-team-member__photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

body.home .gc-team-member__body,
body.page-id-5 .gc-team-member__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 12px 22px 28px;
  text-align: center;
}

body.home .gc-team--role-first .gc-team-member__role,
body.page-id-5 .gc-team--role-first .gc-team-member__role {
  margin: 0 0 8px;
  color: #83bd1d;
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.home .gc-team--role-first .gc-team-member h3,
body.page-id-5 .gc-team--role-first .gc-team-member h3 {
  margin: 0 0 14px;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

body.home .gc-team-member__contact,
body.page-id-5 .gc-team-member__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  width: 100%;
}

body.home .gc-team-member a,
body.page-id-5 .gc-team-member a {
  color: var(--gc-primary);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.35;
}

body.home .gc-team-member a.gc-team-member__phone,
body.page-id-5 .gc-team-member a.gc-team-member__phone {
  color: #353535;
  font-weight: 600;
}

body.home .gc-team-member a.gc-team-member__email,
body.page-id-5 .gc-team-member a.gc-team-member__email {
  color: var(--gc-primary);
}

body.home .gc-team-member a:hover,
body.page-id-5 .gc-team-member a:hover {
  color: #83bd1d;
}

body.home .gc-team__members > .gc-team-member:last-child:nth-child(3n + 1),
body.page-id-5 .gc-team__members > .gc-team-member:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

@media (max-width: 900px) {
  body.home .gc-team__members,
  body.page-id-5 .gc-team__members {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  body.home .gc-team__members > .gc-team-member:last-child:nth-child(3n + 1),
  body.page-id-5 .gc-team__members > .gc-team-member:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  body.home .gc-team__members > .gc-team-member:last-child:nth-child(odd),
  body.page-id-5 .gc-team__members > .gc-team-member:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(100%, 320px);
    justify-self: center;
  }
}

@media (max-width: 560px) {
  body.home .gc-team h2,
  body.page-id-5 .gc-team h2 {
    max-width: none;
    margin-bottom: 32px;
  }

  body.home .gc-team__members,
  body.page-id-5 .gc-team__members {
    grid-template-columns: 1fr;
  }

  body.home .gc-team__members > .gc-team-member:last-child:nth-child(odd),
  body.page-id-5 .gc-team__members > .gc-team-member:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }
}

/* ── GC-63: Process Cards (Cómo lo hacemos) ── */

.gc-process-cards {
  padding: 48px 0 56px;
  background: #f7f7f7;
}

.gc-process-cards__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) 1fr;
  gap: 28px 40px;
  align-items: center;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.gc-process-cards__heading {
  margin: 0;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
}

.gc-process-cards__body-intro {
  margin: 16px 0 0;
  color: #666;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* GC-71: all cards visible; no carousel on desktop or mobile. */
.gc-process-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.gc-process-cards__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
  min-height: 220px;
  border-radius: var(--gc-radius-card);
  overflow: hidden;
  background: var(--gc-white);
  background-image: none;
  color: var(--gc-ink);
  box-shadow: var(--gc-shadow-card);
  transition: transform var(--gc-transition-base), box-shadow var(--gc-transition-base);
}

.gc-process-cards__card:hover,
.gc-process-cards__card:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--gc-shadow-card-hover);
}

.gc-process-cards__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 28px 22px 32px;
  text-align: center;
}

.gc-process-cards__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--gc-primary, #0f3d3e);
  background: rgba(145, 192, 58, .16);
  flex-shrink: 0;
  transition: background var(--gc-transition-base), color var(--gc-transition-base);
}

.gc-process-cards__card:hover .gc-process-cards__card-icon,
.gc-process-cards__card:focus-within .gc-process-cards__card-icon {
  background: #91c03a;
  color: #fff;
}

.gc-process-cards__card-icon svg,
.gc-process-cards__icon-mark {
  display: block;
  width: 32px;
  height: 32px;
}

.gc-process-cards__card-title {
  margin: 0;
  color: #353535;
  font-family: var(--gc-font-heading);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.25;
}

.gc-process-cards__card-body {
  margin: 0;
  color: var(--gc-muted);
  font-family: var(--gc-font-heading);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  max-width: none;
}

body.page-id-6 .gc-process-cards {
  padding: 60px 0 80px;
  background: #f7f7f7;
}

body.page-id-6 .gc-process-cards__heading {
  color: #353535;
  font-size: 40px;
  font-weight: 800;
  line-height: 47px;
}

@media (max-width: 900px) {
  .gc-process-cards {
    padding: 40px 0 48px;
  }

  .gc-process-cards__layout {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .gc-process-cards__heading,
  body.page-id-6 .gc-process-cards__heading {
    font-size: 32px;
    line-height: 1.15;
  }

  .gc-process-cards__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  }

  .gc-process-cards__card {
    min-height: 0;
  }

  .gc-process-cards__card-inner {
    padding: 24px 20px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gc-process-cards__card,
  .gc-process-cards__card-icon {
    transition: none;
  }

  .gc-process-cards__card:hover,
  .gc-process-cards__card:focus-within {
    transform: none;
  }
}

/* ── GC-67: CEC / IPUSU bordered pair ── */
#cec-ipusu.gc-content-split--text-card,
body.page-id-6 .elementor-element-gc67CecWidget .gc-content-split--text-card {
  padding: 56px 0 64px;
  background: #fff;
}

#cec-ipusu .gc-content-split__grid,
body.page-id-6 .elementor-element-gc67CecWidget .gc-content-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 35%) minmax(0, 65%);
  gap: 20px;
  align-items: stretch;
  width: min(1200px, calc(100% - 32px));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

#cec-ipusu .gc-content-split__title,
body.page-id-6 .elementor-element-gc67CecWidget .gc-content-split__title {
  grid-column: 1;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 24px 28px;
  border: none;
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
  background: #fff;
  color: var(--gc-primary);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 800;
  line-height: 1.25;
}

#cec-ipusu .gc-content-split__copy,
body.page-id-6 .elementor-element-gc67CecWidget .gc-content-split__copy {
  grid-column: 2;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 24px 28px;
  border: none;
  border-radius: var(--gc-radius-card);
  box-shadow: var(--gc-shadow-card);
  background: #fff;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

#cec-ipusu .gc-content-split__body p,
body.page-id-6 .elementor-element-gc67CecWidget .gc-content-split__body p {
  margin: 0 0 16px;
}

#cec-ipusu .gc-content-split__body p:last-child,
body.page-id-6 .elementor-element-gc67CecWidget .gc-content-split__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  #cec-ipusu .gc-content-split__grid,
  body.page-id-6 .elementor-element-gc67CecWidget .gc-content-split__grid {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    gap: 16px;
    align-items: stretch;
  }

  #cec-ipusu .gc-content-split__title,
  #cec-ipusu .gc-content-split__copy,
  body.page-id-6 .elementor-element-gc67CecWidget .gc-content-split__title,
  body.page-id-6 .elementor-element-gc67CecWidget .gc-content-split__copy {
    grid-column: 1;
    padding: 20px 22px;
  }

  #cec-ipusu .gc-content-split__title,
  body.page-id-6 .elementor-element-gc67CecWidget .gc-content-split__title {
    font-size: 22px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {

  /* GC-82: home pickup container fluid on mobile. */
  body.page-id-10 .gc-home-pickup .gc-container {
    width: min(1000px, calc(100% - 40px));
  }

  body.page-id-10 .gc-home-pickup {
    margin-bottom: 70px;
  }

  body.page-id-10 .gc-home-pickup__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.page-id-10 .gc-home-pickup__copy h2 {
    font-size: 22px;
  }

  body.page-id-10 .gc-home-pickup__lead {
    font-size: 14px;
  }

  body.page-id-10 .gc-collection-points__filters {
    margin-bottom: 22px;
  }

  body.page-id-10 .gc-collection-points__city-heading {
    font-size: 15px;
  }

}
