        /* ========================================
           ICG DESIGN SYSTEM — Figma Accurate
        ======================================== */
        :root {
            --slate: #465666;
            --carbon: #2C2C2C;
            --gold: #C89C53;
            --light-gray: #E2E2E2;
            --white: #FFFFFF;
            --font: 'Poppins', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            color: var(--white);
            overflow-x: hidden;
            background: var(--carbon);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--carbon); }
        ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

        /* ========================================
           ANIMATIONS
        ======================================== */
        .icg-animate {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .icg-animate.icg-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .icg-animate-delay-1 { transition-delay: 0.15s; }
        .icg-animate-delay-2 { transition-delay: 0.3s; }
        .icg-animate-delay-3 { transition-delay: 0.45s; }
        .icg-animate-delay-4 { transition-delay: 0.6s; }

        /* ========================================
           1. NAVBAR
        ======================================== */
        .icg-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 22px 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.5s var(--ease-smooth),
                        padding 0.5s var(--ease-smooth),
                        box-shadow 0.5s var(--ease-smooth);
        }

        .icg-navbar.scrolled {
            background: rgba(26, 26, 26, 0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding-top: 13px;
            padding-bottom: 13px;
            box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
        }

        .icg-navbar__logo {
            width: 160px;
            flex-shrink: 0;
        }

        .icg-navbar__logo img {
            width: 100%;
            height: auto;
            transition: opacity 0.3s ease;
        }

        .icg-navbar__actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .icg-navbar__lang {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 38px;
            border: 1px solid rgba(255, 255, 255, 0.30);
            border-radius: 0;
            color: var(--white);
            font-family: var(--font);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            background: transparent;
            cursor: pointer;
            transition: border-color 0.35s var(--ease-smooth),
                        color 0.35s var(--ease-smooth);
        }

        .icg-navbar__lang:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .icg-navbar__hamburger {
            width: 44px;
            height: 26px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
        }

        .icg-navbar__hamburger span {
            display: block;
            width: 100%;
            height: 1.5px;
            background: var(--white);
            border-radius: 2px;
            transform-origin: center;
            transition: transform var(--t-mid) var(--ease-out-expo), opacity var(--t-mid) ease;
        }

        .icg-navbar__hamburger span:nth-child(3) {
            width: 70%;
            margin-left: auto;
            transition: transform var(--t-mid) var(--ease-out-expo), opacity var(--t-mid) ease, width var(--t-fast) ease;
        }

        .icg-navbar__hamburger:hover span:nth-child(3) {
            width: 100%;
        }

        .icg-navbar__hamburger.active span:nth-child(1) {
            transform: translateY(12px) rotate(45deg);
        }

        .icg-navbar__hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .icg-navbar__hamburger.active span:nth-child(3) {
            width: 100%;
            transform: translateY(-12.5px) rotate(-45deg);
        }

        /* Mobile overlay */
        .icg-mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(26, 26, 26, 0.98);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            z-index: 999;
            transition: right 0.55s var(--ease-expo);
        }

        .icg-mobile-menu.open { right: 0; }

        .icg-mobile-menu a {
            color: var(--white);
            font-size: 26px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 4px;
            position: relative;
            transition: color 0.35s var(--ease-smooth);
        }

        .icg-mobile-menu a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s var(--ease-expo),
                        left 0.4s var(--ease-expo);
        }

        .icg-mobile-menu a:hover {
            color: var(--gold);
        }

        .icg-mobile-menu a:hover::after,
        .icg-mobile-menu a.active::after {
            width: 100%;
            left: 0;
        }

        .icg-mobile-menu a.active {
            color: var(--gold);
        }

        .icg-mobile-submenu {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-top: -14px;
        }

        .icg-mobile-submenu__link {
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            font-size: 15px;
            color: rgba(200, 156, 83, 0.45);
            text-transform: none;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }

        .icg-mobile-submenu__link .icg-mobile-submenu__icon {
            display: none;
        }

        .icg-mobile-submenu__link:hover {
            color: #C89C53;
        }

        /* ========================================
           2. HERO — 100vh, overlay, right-aligned text
        ======================================== */
        .icg-hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 500px;
            display: block;
            overflow: hidden;
        }

        .icg-hero__bg {
            position: absolute;
            inset: 0;
            background: url('../imagenes/icg/hero-bg.jpg') center center / cover no-repeat;
            z-index: 0;
        }

        .icg-hero__bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .icg-hero__content {
            position: absolute;
            z-index: 2;
            left: 53.8%;
            top: 63%;
            max-width: 692px;
            text-align: left;
        }

        .icg-hero__line {
            width: 1010px;
            max-width: 52.6vw;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
            margin-bottom: 6px;
        }

        .icg-hero__title {
            font-family: var(--font);
            font-weight: 300;
            font-size: 40px;
            line-height: 50px;
            color: var(--white);
        }

        .icg-hero__title strong {
            font-weight: 700;
        }

        /* ========================================
           3. SOBRE ICG — fondo #465666, imagen opacity 0.2
        ======================================== */
        .icg-about {
            position: relative;
            background: var(--slate);
            min-height: 655px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .icg-about::after {
            content: '';
            position: absolute;
            left: -32px;
            bottom: 0;
            width: 846px;
            height: 110px;
            background: var(--carbon);
            z-index: 3;
        }

        .icg-about__decor {
            position: absolute;
            left: -66px;
            top: 0;
            width: 825px;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
        }

        .icg-about__content {
            position: relative;
            z-index: 2;
            margin-left: 46.7%;
            max-width: 800px;
            padding: 80px 40px 80px 0;
        }

        .icg-about__big-title {
            font-family: var(--font);
            font-weight: 700;
            font-size: 64px;
            color: var(--white);
            line-height: 1;
            letter-spacing: 5.12px;
            margin-bottom: 10px;
        }

        .icg-about__subtitle {
            font-family: var(--font);
            font-weight: 300;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            color: rgba(255, 255, 255, 0.7);
            margin-left: calc((1048 - 898) / 1920 * 100vw);
            margin-bottom: 35px;
        }

        .icg-about__text {
            font-family: var(--font);
            font-weight: 300;
            font-size: 20px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin-bottom: 45px;
        }

        .icg-about__link {
            font-family: var(--font);
            font-weight: 500;
            font-size: 18px;
            text-transform: uppercase;
            color: var(--gold);
            letter-spacing: 1.8px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-left: calc((1564 - 898) / 1920 * 100vw);
            transition: gap 0.3s ease;
        }

        .icg-about__link:hover {
            gap: 20px;
            color: var(--gold);
        }

        /* ========================================
           4. VISION — fondo #2C2C2C, titulo 90px Bold
        ======================================== */
        .icg-belong {
            position: relative;
            background: var(--carbon);
            height: 1126px;
            min-height: 1126px;
            overflow: hidden;
        }

        .icg-belong__inner {
            display: flex;
            align-items: stretch;
            min-height: 1126px;
        }

        .icg-belong__left {
            flex: 0 0 calc(889 / 1920 * 100%);
            padding: 235px 60px 120px 96px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .icg-belong__right {
            flex: 1;
            position: relative;
        }

        .icg-belong__image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 686px;
            object-fit: cover;
            filter: none;
            opacity: 1;
        }

        .icg-belong__right-overlay {
            display: none;
        }

        .icg-belong__right-text {
            position: absolute;
            top: 785px;
            left: 0;
            z-index: 2;
            width: 836px;
            max-width: 100%;
            padding: 0 0;
            font-family: var(--font);
            font-weight: 300;
            font-size: 20px;
            line-height: 1.8;
            color: var(--light-gray);
        }

        .icg-belong__right-text strong {
            font-weight: 700;
        }

        .icg-belong__title {
            font-family: var(--font);
            font-weight: 700;
            font-size: 85px;
            line-height: 90px;
            color: var(--white);
            max-width: 1166px;
            margin-bottom: 40px;
        }

        .icg-belong__title span {
            color: var(--gold);
        }

        .icg-belong__desc {
            font-family: var(--font);
            font-weight: 300;
            font-size: 20px;
            line-height: 1.8;
            color: var(--light-gray);
            max-width: 625px;
            margin-bottom: 70px;
        }

        .icg-belong__desc::first-line {
            font-weight: 700;
        }

        .icg-stats {
            display: flex;
            align-items: flex-start;
            gap: 0;
        }

        .icg-stat {
            flex: 0 0 auto;
            text-align: left;
            padding: 0 35px;
            position: relative;
            min-width: 200px;
        }

        .icg-stat:first-child {
            padding-left: 0;
            min-width: 199px;
        }

        .icg-stat:not(:last-child) {
            border-right: none;
        }

        /* Figma: dividers 99px tall */
        .icg-stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 1px;
            height: 99px;
            background: rgba(255, 255, 255, 0.15);
        }

        .icg-stat__number {
            font-family: var(--font);
            font-weight: 700;
            font-size: 40px;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .icg-stat__label {
            font-family: var(--font);
            font-weight: 300;
            font-size: 18px;
            text-transform: uppercase;
            color: var(--white);
            letter-spacing: 1.8px;
            line-height: 1.5;
        }

        /* ========================================
           5. PROYECTOS — fondo blanco
        ======================================== */
        .icg-projects {
            background: var(--white);
            padding: 130px 0 10px;
        }

        .icg-projects__header {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 40px;
        }

        .icg-projects__title {
            font-family: var(--font);
            font-weight: 700;
            font-size: 85px;
            color: var(--carbon);
            letter-spacing: 9px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .icg-projects__subtitle {
            font-family: var(--font);
            font-weight: 300;
            font-size: 20px;
            color: var(--carbon);
            max-width: 602px;
            margin: 0 auto 55px;
            line-height: 1.7;
        }

        .icg-projects__filters {
            display: flex;
            justify-content: center;
            gap: 50px;
        }

        .icg-projects__filter {
            font-family: var(--font);
            font-weight: 500;
            font-size: 20px;
            color: rgba(44, 44, 44, 0.4);
            background: none;
            border: none;
            cursor: pointer;
            padding: 0 0 12px;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }

        .icg-projects__filter::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .icg-projects__filter.active,
        .icg-projects__filter:hover {
            color: var(--gold);
        }

        .icg-projects__filter.active::after {
            width: 122px;
        }

        .icg-projects-swiper, .icg-projects-static {
            margin-top: 55px;
        }

        .icg-project-card {
            position: relative;
            min-height: 700px;
            overflow: hidden;
            cursor: pointer;
        }

        .icg-project-card__img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .icg-project-card:hover .icg-project-card__img {
            transform: scale(1.05);
        }

        .icg-project-card__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 67%);
            z-index: 1;
        }

        .icg-project-card__badge {
            position: absolute;
            top: 50px;
            left: 0;
            z-index: 2;
            font-family: var(--font);
            font-weight: 500;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1.6px;
            color: var(--white);
            background: var(--gold);
            width: 130px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icg-project-card__badge::after {
            display: none;
        }

        .icg-project-card__content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 2;
            padding: 36px 32px;
        }

        .icg-project-card__logo {
            width: 110px;
            height: 95px;
            object-fit: contain;
            margin-bottom: 14px;
            filter: brightness(0) invert(1);
        }

        .icg-project-card__name {
            font-family: var(--font);
            font-weight: 700;
            font-size: 28px;
            letter-spacing: 2.5px;
            color: var(--white);
            margin-bottom: 6px;
        }

        .icg-project-card__meta {
            font-family: var(--font);
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 12px;
        }

        .icg-project-card__desc {
            font-family: var(--font);
            font-weight: 300;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.55;
            margin-bottom: 22px;
            max-width: 360px;
        }

        .icg-project-card__actions {
            display: flex;
            gap: 15px;
        }

        .icg-btn {
            font-family: var(--font);
            font-weight: 500;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            padding: 11px 24px;
            border: 1px solid var(--gold);
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }

        .icg-btn--gold {
            background: var(--gold);
            color: var(--carbon);
        }

        .icg-btn--gold:hover {
            background: #b88a42;
            color: var(--carbon);
        }

        .icg-btn--outline {
            background: transparent;
            color: var(--white);
            border: 1px solid var(--gold);
        }

        .icg-btn--outline:hover {
            background: var(--gold);
            color: var(--carbon);
        }

        .icg-projects__dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 50px;
        }

        .icg-projects__dot {
            width: 13px;
            height: 13px;
            background: rgba(44, 44, 44, 0.15);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .icg-projects__dot.active {
            background: var(--gold);
        }

        /* ========================================
           6. ECOSISTEMA ICG — fondo #465666
        ======================================== */
        .icg-ecosystem {
            background: linear-gradient(to bottom, var(--slate) 55%, var(--white) 55%);
            padding: 152px 0 80px;
        }

        .icg-ecosystem__header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 0 112px 0 104px;
            margin-bottom: 80px;
            gap: 60px;
        }

        .icg-ecosystem__left {
            max-width: 793px;
        }

        .icg-ecosystem__label {
            font-family: var(--font);
            font-weight: 300;
            font-size: 18px;
            text-transform: uppercase;
            color: var(--gold);
            letter-spacing: 1.8px;
            margin-bottom: 20px;
        }

        .icg-ecosystem__title {
            font-family: var(--font);
            font-weight: 300;
            font-size: 35px;
            line-height: 50px;
            color: var(--white);
        }

        .icg-ecosystem__title strong {
            font-weight: 700;
        }

        .icg-ecosystem__right {
            display: flex;
            flex-direction: column;
            align-self: flex-end;
            padding-bottom: 10px;
        }

        .icg-ecosystem__desc {
            max-width: 629px;
            font-family: var(--font);
            font-weight: 300;
            font-size: 20px;
            line-height: 1.8;
            color: var(--light-gray);
            margin-bottom: 30px;
        }

        .icg-ecosystem__line {
            width: 100%;
            max-width: 852px;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
        }

        .icg-ecosystem__grid {
            display: grid;
            grid-template-columns: 426fr 410fr 410fr 465fr;
            gap: 0;
            padding: 0 104px;
        }

        .icg-eco-card {
            padding: 160px 90px 60px;
            text-align: left;
            min-height: 746px;
            display: flex;
            flex-direction: column;
            transition: transform 0.4s ease;
        }

        .icg-eco-card:nth-child(1) {
            background: var(--carbon);
        }

        .icg-eco-card:nth-child(2) {
            background: #313131;
        }

        .icg-eco-card:nth-child(3) {
            background: #383838;
        }

        .icg-eco-card:nth-child(4) {
            background: var(--carbon);
        }

        .icg-eco-card:hover {
            transform: translateY(-8px);
        }

        .icg-eco-card__logo {
            margin-bottom: 70px;
            opacity: 0.5;
            filter: brightness(0) invert(1);
            align-self: center;
        }

        .icg-eco-card:nth-child(1) .icg-eco-card__logo {
            width: 244px;
            height: 150px;
            object-fit: contain;
        }

        .icg-eco-card:nth-child(2) .icg-eco-card__logo {
            width: 158px;
            height: 158px;
            object-fit: contain;
        }

        .icg-eco-card:nth-child(3) .icg-eco-card__logo {
            width: 218px;
            height: 151px;
            object-fit: contain;
        }

        .icg-eco-card:nth-child(4) .icg-eco-card__logo {
            width: 275px;
            height: 142px;
            object-fit: contain;
        }

        .icg-eco-card__line {
            width: 94px;
            height: 9px;
            background: var(--gold);
            margin-bottom: 20px;
        }

        .icg-eco-card__name {
            font-family: var(--font);
            font-weight: 700;
            font-size: 35px;
            color: #C5C5C5;
            margin-bottom: 10px;
        }

        .icg-eco-card__desc {
            font-family: var(--font);
            font-weight: 300;
            font-size: 20px;
            color: var(--white);
            line-height: 1.6;
            max-width: 312px;
        }

        /* ========================================
           7. SOCIEDADES Y ALIADOS — fondo blanco
        ======================================== */
        .icg-partners {
            background: #F9F9F9;
            padding: 110px 80px;
            position: relative;
            overflow: hidden;
        }

        .icg-partners::before {
            content: '';
            position: absolute;
            top: 0;
            left: 80px;
            right: 80px;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(200,156,83,0.2), transparent);
        }

        .icg-partners::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 80px;
            right: 80px;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(200,156,83,0.2), transparent);
        }

        .icg-partners__inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 80px;
            align-items: flex-start;
        }

        .icg-partners__block {
            flex: 1;
        }

        .icg-partners__divider {
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(200,156,83,0.2), transparent);
            align-self: stretch;
            flex-shrink: 0;
            min-height: 200px;
        }

        .icg-partners__title {
            font-family: var(--font);
            font-weight: 700;
            font-size: 30px;
            color: black;
            margin-bottom: 40px;
        }

        .icg-partners__grid {
            display: flex;
            flex-wrap: nowrap;
            gap: 16px;
        }

        .icg-partner-card {
            background: var(--white);
            border: 1px solid var(--light-gray);
            padding: 36px 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 190px;
            height: 158px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
        }

        .icg-partner-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .icg-partner-card:hover {
            border-color: var(--gold);
            box-shadow: 0 8px 30px rgba(200, 156, 83, 0.1);
        }

        .icg-partner-card:hover::before {
            transform: scaleX(1);
        }

        .icg-partner-card img {
            max-height: 80px;
            max-width: 180px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.5;
            transition: all 0.5s ease;
        }

        .icg-partner-card:hover img {
            filter: grayscale(0);
            opacity: 1;
        }

        /* ========================================
           8. FOOTER — fondo #2C2C2C (Figma)
        ======================================== */
        .icg-footer {
            background: #2C2C2C;
            position: relative;
            overflow: hidden;
            padding: 0 0 0 0;
        }
        .icg-footer__inner {
            position: relative;
            z-index: 2;
            max-width: 1920px;
            margin: 0 auto;
            padding: 61px 123px 120px;
        }
        /* Logo top-left */
        .icg-footer__logo {
            width: 266px;
            height: auto;
            opacity: 0.8;
            display: block;
            margin-bottom: 0;
        }
        /* 3 columns row — positioned below logo with proper spacing */
        .icg-footer__columns {
            display: grid;
            grid-template-columns: auto auto auto;
            gap: 0;
            margin-top: 76px; /* 355 - 61 - 218 = 76px gap between logo bottom and columns top */
            margin-left: calc(815px - 123px); /* offset from left padding to first column */
            width: fit-content;
        }
        .icg-footer__col {
            min-width: 0;
        }
        .icg-footer__col:nth-child(1) { width: calc(1076px - 815px); } /* 261px */
        .icg-footer__col:nth-child(2) { width: calc(1396px - 1076px); } /* 320px */
        .icg-footer__col:nth-child(3) { width: auto; }
        .icg-footer__col h4 {
            font-size: 24px;
            font-weight: 700;
            color: #C89C53;
            text-transform: uppercase;
            letter-spacing: 2.16px;
            margin-bottom: 30px;
        }
        .icg-footer__col ul { list-style: none; padding: 0; margin: 0; }
        .icg-footer__col ul li a {
            font-size: 20px;
            font-weight: 300;
            color: rgba(255,255,255,0.5);
            line-height: 50px;
            display: block;
            transition: color 0.3s ease;
        }
        .icg-footer__col ul li a:hover { color: #fff; }
        /* Brand text — positioned absolutely to match Figma top:571 from footer */
        .icg-footer__brand {
            display: flex;
            flex-direction: column;
        }
        .icg-footer__brand-text {
            font-size: 20px;
            font-weight: 300;
            color: #fff;
            line-height: 1.5;
            width: 350px;
            margin-top: 140px; /* space between columns start and brand text (571 - 355 = 216, minus some for flow) */
        }
        .icg-footer__brand-text strong { font-weight: 700; }
        /* Visitanos column */
        .icg-footer__address {
            font-size: 20px;
            font-weight: 300;
            color: rgba(255,255,255,0.5);
            line-height: 24px;
            margin-bottom: 20px;
        }
        .icg-footer__contact-links { display: flex; flex-direction: column; gap: 0; }
        .icg-footer__contact-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 300;
            color: rgba(255,255,255,0.5);
            line-height: 50px;
            transition: color 0.3s ease;
        }
        .icg-footer__contact-links a:hover { color: #fff; }
        .icg-footer__contact-links a .bi-instagram { font-size: 25px; color: var(--gold); }
        .icg-footer__contact-links a .bi-whatsapp { font-size: 32px; color: var(--gold); }
        .icg-footer__contact-links a .bi-waze { font-size: 31px; color: var(--gold); }
        .icg-footer__sala {
            font-size: 20px;
            font-weight: 300;
            color: var(--gold);
            margin-top: 10px;
            margin-bottom: 0;
            margin-left: 41px;
        }
        .icg-footer__cita-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #AB874B;
            color: #C89C53;
            font-size: 16px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0 28px;
            margin-top: 12px;
            transition: background 0.3s ease, color 0.3s ease;
            height: 52px;
            white-space: nowrap;
        }
        .icg-footer__cita-btn:hover { background: rgba(200,156,83,0.1); color: #C89C53; }
        .icg-footer__decor {
            position: absolute;
            right: calc((100% - 1920px) / 2 + (1920px - 1359px - 616px));
            bottom: 0;
            width: 616px;
            height: 374px;
            opacity: 0.05;
            pointer-events: none;
            z-index: 1;
            right: 0;
            /* Figma: left:1359 from 1920, so right = 1920-1359-616 = -55 => flush right area */
        }

        /* ========================================
           WHATSAPP FLOAT — aura dorada
        ======================================== */
        .icg-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 87px;
            height: 87px;
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 50;
            box-shadow: 0 0 0 6px rgba(200, 156, 83, 0.25);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .icg-whatsapp:hover {
            transform: scale(1.08);
            box-shadow: 0 0 0 10px rgba(200, 156, 83, 0.3);
        }
        .icg-whatsapp i {
            font-size: 40px;
            color: #C89C53;
        }

        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 1200px) {
            .icg-belong__title {
                font-size: 64px;
                line-height: 72px;
            }

            .icg-projects__title {
                font-size: 60px;
                letter-spacing: 5px;
            }

            .icg-project-card {
                min-height: 540px;
            }

            .icg-eco-card__name {
                font-size: 26px;
            }

            .icg-eco-card {
                min-height: 550px;
            }
        }

        @media (max-width: 991px) {
            .icg-navbar {
                padding: 16px 24px;
            }

            .icg-navbar.scrolled {
                padding: 10px 24px;
            }

            .icg-hero__content {
                right: 30px;
                left: 30px;
                top: 50%;
                transform: translateY(-50%);
                max-width: 100%;
            }

            .icg-hero__line {
                width: 100%;
            }

            .icg-hero__title {
                font-size: 30px;
                line-height: 40px;
            }

            .icg-about {
                height: auto;
                min-height: auto;
            }

            .icg-about__content {
                max-width: 100%;
                padding: 60px 40px;
                margin-left: 0;
            }

            .icg-about__subtitle {
                margin-left: 0;
            }

            .icg-about__link {
                margin-left: 0;
            }

            .icg-about__big-title {
                font-size: 48px;
            }

            .icg-belong {
                height: auto;
                min-height: auto;
            }

            .icg-belong__inner {
                flex-direction: column;
                min-height: auto;
            }

            .icg-belong__left {
                flex: none;
                padding: 80px 40px;
            }

            .icg-belong__right {
                width: 100%;
                height: 500px;
                position: relative;
            }

            .icg-belong__image {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
            }

            .icg-belong__title {
                font-size: 48px;
                line-height: 54px;
            }

            .icg-project-card {
                min-height: 480px;
            }

            .icg-projects__title {
                font-size: 40px;
                letter-spacing: 3px;
            }

            .icg-ecosystem__header {
                flex-direction: column;
                padding: 0 40px;
            }

            .icg-ecosystem__grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 0 40px;
            }

            .icg-eco-card {
                min-height: 400px;
                padding: 100px 50px 40px;
            }

            .icg-partners {
                padding: 60px 40px;
            }

            .icg-partners__inner {
                flex-direction: column;
                gap: 50px;
            }

            .icg-footer {
                padding: 60px 30px;
            }
            .icg-footer__inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .icg-footer__columns {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 576px) {
            .icg-navbar {
                padding: 16px 20px;
            }

            .icg-navbar.scrolled {
                padding: 10px 20px;
            }

            .icg-navbar__logo img {
                max-height: 50px;
                width: auto;
            }

            .icg-hero {
                min-height: 320px;
            }

            .icg-hero__content {
                right: 20px;
                left: 20px;
                padding: 0 0 40px;
            }

            .icg-hero__title {
                font-size: 22px;
                line-height: 32px;
            }

            .icg-hero__line {
                width: 100%;
                max-width: 100%;
            }

            .icg-about__big-title {
                font-size: 32px;
                letter-spacing: 2px;
            }

            .icg-about__content {
                padding: 40px 20px;
            }

            .icg-about__text {
                font-size: 16px;
            }

            .icg-belong__left {
                padding: 60px 20px;
            }

            .icg-belong__right {
                height: 360px;
            }

            .icg-belong__title {
                font-size: 32px;
                line-height: 38px;
            }

            .icg-belong__desc {
                font-size: 16px;
            }

            .icg-stats {
                flex-direction: column;
                gap: 0;
            }

            .icg-stat {
                padding: 20px 0;
                min-width: 0;
                width: 100%;
            }

            .icg-stat:not(:last-child)::after {
                display: none;
            }

            .icg-stat:not(:last-child) {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            }

            .icg-projects {
                padding: 60px 0 60px;
            }

            .icg-projects__title {
                font-size: 28px;
                letter-spacing: 2px;
            }

            .icg-projects__subtitle {
                font-size: 16px;
            }

            .icg-projects__filters {
                gap: 12px;
                flex-wrap: wrap;
                justify-content: center;
                padding: 0 16px;
            }

            .icg-projects__filter {
                font-size: 13px;
                letter-spacing: 1px;
                padding: 0 0 8px;
            }

            .icg-projects__filter::after { height: 2px; }
            .icg-projects__filter.active::after { width: 100%; }

            .icg-project-card {
                min-height: 580px;
            }

            .icg-project-card__name {
                font-size: 22px;
                letter-spacing: 1.8px;
            }

            .icg-project-card__desc {
                font-size: 14px;
            }

            .icg-project-card__actions {
                flex-direction: column;
                gap: 10px;
            }

            .icg-btn {
                font-size: 12px;
                padding: 10px 20px;
            }

            .icg-ecosystem {
                padding: 80px 0 60px;
            }

            .icg-ecosystem__grid {
                grid-template-columns: 1fr;
                padding: 0 20px;
                gap: 4px;
            }

            .icg-ecosystem__header {
                padding: 0 20px;
                flex-direction: column;
                gap: 24px;
            }

            .icg-ecosystem__title {
                font-size: 26px;
                line-height: 1.4;
            }

            .icg-ecosystem__desc {
                font-size: 16px;
            }

            .icg-eco-card {
                min-height: 320px;
                padding: 60px 24px 32px;
            }

            .icg-eco-card__name {
                font-size: 22px;
            }

            .icg-eco-card__desc {
                font-size: 16px;
                max-width: 100%;
            }

            .icg-partners {
                padding: 40px 20px;
            }

            .icg-partners__title {
                font-size: 24px;
            }

            .icg-partners__grid {
                flex-wrap: wrap;
            }

            .icg-partner-card {
                min-width: 130px;
                flex: 1 1 calc(50% - 8px);
                padding: 24px 20px;
                height: 120px;
            }

            .icg-footer__inner {
                padding: 40px 20px;
            }

            .icg-footer__logo {
                width: 200px;
            }

            .icg-footer__columns {
                margin-left: 0;
                grid-template-columns: 1fr;
                width: 100%;
                margin-top: 32px;
            }

            .icg-footer__col h4 {
                font-size: 18px;
            }

            .icg-footer__col ul li a {
                font-size: 16px;
                line-height: 40px;
            }

            .icg-footer__address,
            .icg-footer__contact-links a,
            .icg-footer__sala,
            .icg-footer__brand-text {
                font-size: 16px;
            }

            .icg-footer__brand-text {
                width: 100%;
                margin-top: 32px;
            }

            .icg-whatsapp {
                width: 50px;
                height: 50px;
                bottom: 16px;
                right: 16px;
            }

            .icg-whatsapp i {
                font-size: 24px;
            }
        }

/* ========================================
   ICG — Efecto click menú mobile
======================================== */
.icg-mobile-menu a.icg-clicked {
    color: var(--gold) !important;
    transform: scale(1.05);
    text-shadow: 0 0 24px rgba(200, 156, 83, 0.7);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                text-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.18s ease;
}
.icg-mobile-menu a.icg-clicked::after {
    width: 100% !important;
    left: 0 !important;
    background: var(--gold) !important;
}
