/* ============================================================
   ICG CONSTRUCTORA — Blog / Journal
   Concept: "Architectural Journal" — Luxury architecture magazine
   Prefix: icg-bl-
   ============================================================ */

/* ---------- GOOGLE FONT ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
    --slate:      #465666;
    --carbon:     #2C2C2C;
    --gold:       #C89C53;
    --gold-hover: #ddb36a;
    --gold-light: rgba(200, 156, 83, 0.12);
    --gold-glow:  rgba(200, 156, 83, 0.35);
    --light:      #E2E2E2;
    --warm-bg:    #F5F5F3;
    --white:      #FFFFFF;
    --font:       'Poppins', sans-serif;

    --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET / BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-weight: 300;
    color: var(--carbon);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.35s var(--ease);
}

ul, ol { list-style: none; }

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- SELECTION ---------- */
::selection {
    background: var(--gold);
    color: var(--white);
}

::-moz-selection {
    background: var(--gold);
    color: var(--white);
}

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

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
.icg-bl-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease-expo),
                transform 1s var(--ease-expo);
}

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

.icg-bl-animate-delay-1 { transition-delay: 0.12s; }
.icg-bl-animate-delay-2 { transition-delay: 0.24s; }
.icg-bl-animate-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   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 — Clean, editorial, 45vh
   ============================================================ */
.icg-bl-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.icg-bl-hero__bg {
    position: absolute;
    inset: -4%;
    background: url('../imagenes/icg/hero-bg-2.jpg') center center / cover no-repeat;
    z-index: 0;
    transform: scale(1.06);
    transition: transform 10s ease-out;
}

.icg-bl-hero:hover .icg-bl-hero__bg {
    transform: scale(1.11);
}

.icg-bl-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(26,26,26,0.82) 0%, rgba(44,44,44,0.55) 55%, rgba(70,86,102,0.20) 100%),
        linear-gradient(to top, rgba(26,26,26,0.90) 0%, transparent 60%);
    z-index: 1;
}

.icg-bl-hero__overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #C89C53 0%, rgba(200,156,83,0.3) 60%, transparent 100%);
}

.icg-bl-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 80px 64px;
    max-width: 680px;
}

/* ---------- BREADCRUMB ---------- */
.icg-bl-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.35);
}

.icg-bl-hero__breadcrumb a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s;
}

.icg-bl-hero__breadcrumb a:hover { color: #C89C53; }

.icg-bl-hero__breadcrumb-sep {
    color: #C89C53;
    font-weight: 300;
    opacity: 0.8;
}

.icg-bl-hero__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: clamp(44px, 6vw, 80px);
    color: white;
    letter-spacing: 10px;
    text-transform: uppercase;
    line-height: 1.0;
    margin: 0;
}

.icg-bl-hero__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: #C89C53;
    margin-top: 24px;
    opacity: 0.75;
}

/* ============================================================
   3. EDITORIAL HEADER
   ============================================================ */
.icg-bl-editorial {
    background: var(--white);
    padding: 100px 110px;
}

.icg-bl-editorial__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
}

.icg-bl-editorial__left {
    flex: 1;
    max-width: 600px;
}

.icg-bl-editorial__label {
    display: block;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.icg-bl-editorial__title {
    font-family: var(--font);
    font-weight: 300;
    font-size: 52px;
    color: var(--carbon);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.icg-bl-editorial__right {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    max-width: 440px;
    padding-top: 40px;
}

.icg-bl-editorial__accent {
    flex-shrink: 0;
    width: 2px;
    height: 80px;
    background: var(--gold);
}

.icg-bl-editorial__desc {
    font-family: var(--font);
    font-weight: 300;
    font-size: 18px;
    color: var(--slate);
    line-height: 1.8;
}

/* ============================================================
   4. FEATURED ARTICLE — Full-width carbon
   ============================================================ */
.icg-bl-featured {
    background: var(--carbon);
    padding: 0;
}

.icg-bl-featured__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.icg-bl-featured__image-wrap {
    position: relative;
    overflow: hidden;
}

.icg-bl-featured__img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease);
    will-change: transform;
}

.icg-bl-featured__image-wrap:hover .icg-bl-featured__img {
    transform: scale(1.04);
}

.icg-bl-featured__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.icg-bl-featured__tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.icg-bl-featured__date {
    font-family: var(--font);
    font-weight: 300;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.icg-bl-featured__title {
    font-family: var(--font);
    font-weight: 700;
    font-size: 36px;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.icg-bl-featured__excerpt {
    font-family: var(--font);
    font-weight: 300;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
    margin-bottom: 36px;
}

.icg-bl-featured__divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 32px;
}

.icg-bl-featured__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 15px;
    color: var(--gold);
    letter-spacing: 1px;
    transition: color 0.35s var(--ease);
}

.icg-bl-featured__arrow {
    display: inline-block;
    transition: transform 0.4s var(--ease-expo);
}

.icg-bl-featured__link:hover {
    color: var(--gold-hover);
}

.icg-bl-featured__link:hover .icg-bl-featured__arrow {
    transform: translateX(8px);
}

/* ============================================================
   5. ARTICLES GRID — Magazine layout
   ============================================================ */
.icg-bl-grid-section {
    background: var(--warm-bg);
    padding: 120px 110px;
}

.icg-bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ---------- CARD ---------- */
.icg-bl-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.55s var(--ease),
                box-shadow 0.55s var(--ease);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.icg-bl-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Card image */
.icg-bl-card__image-wrap {
    position: relative;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
}

.icg-bl-card__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
    will-change: transform;
}

.icg-bl-card:hover .icg-bl-card__img {
    transform: scale(1.06);
}

/* Card body */
.icg-bl-card__body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.icg-bl-card__tag {
    display: inline-block;
    font-family: var(--font);
    font-weight: 500;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.icg-bl-card__date {
    font-family: var(--font);
    font-weight: 300;
    font-size: 13px;
    color: #999;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.icg-bl-card__title {
    font-family: var(--font);
    font-weight: 700;
    font-size: 24px;
    color: var(--carbon);
    line-height: 1.35;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
    transition: color 0.35s var(--ease);
}

.icg-bl-card:hover .icg-bl-card__title {
    color: var(--slate);
}

.icg-bl-card__excerpt {
    font-family: var(--font);
    font-weight: 300;
    font-size: 16px;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;

    /* 3-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.icg-bl-card__divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 20px;
}

.icg-bl-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.8px;
    transition: color 0.35s var(--ease);
}

.icg-bl-card__link span {
    display: inline-block;
    transition: transform 0.4s var(--ease-expo);
}

.icg-bl-card__link:hover {
    color: var(--gold-hover);
}

.icg-bl-card__link:hover span {
    transform: translateX(6px);
}

/* ============================================================
   6. FOOTER
   ============================================================ */
.icg-footer {
    position: relative;
    background: var(--carbon);
    padding: 100px 80px 44px;
    overflow: hidden;
}

.icg-footer__decor {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 380px;
    opacity: 0.06;
    pointer-events: none;
}

.icg-footer__top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.icg-footer__brand img {
    width: 190px;
    margin-bottom: 28px;
}

.icg-footer__brand-text {
    font-family: var(--font);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.38);
    max-width: 280px;
}

.icg-footer__col-title {
    font-family: var(--font);
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 26px;
    letter-spacing: 0.5px;
}

.icg-footer__links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.icg-footer__links a {
    font-family: var(--font);
    font-weight: 300;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s var(--ease),
                padding-left 0.3s var(--ease);
}

.icg-footer__links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.icg-footer__links a i {
    margin-right: 8px;
    font-size: 15px;
}

.icg-footer__cta {
    margin-top: 28px;
}

/* CTA Button */
.icg-btn {
    display: inline-block;
    font-family: var(--font);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.35s var(--ease),
                color 0.35s var(--ease),
                border-color 0.35s var(--ease),
                box-shadow 0.35s var(--ease);
}

.icg-btn--outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 14px 32px;
    font-size: 13px;
    background: transparent;
    border-radius: 0;
}

.icg-btn--outline:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.icg-btn--footer {
    font-size: 12px;
    padding: 11px 26px;
}

.icg-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icg-footer__copy {
    font-family: var(--font);
    font-weight: 300;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.icg-footer__social {
    display: flex;
    gap: 22px;
}

.icg-footer__social a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 19px;
    transition: color 0.3s var(--ease),
                transform 0.3s var(--ease);
}

.icg-footer__social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================================
   7. WHATSAPP FLOAT — Gold aura
   ============================================================ */
.icg-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 72px;
    height: 72px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow:
        0 6px 28px rgba(37, 211, 102, 0.38),
        0 0 0 0 rgba(200, 156, 83, 0);
    transition: transform 0.35s var(--ease-expo),
                box-shadow 0.35s var(--ease);
    animation: icg-bl-whatsapp-aura 2.5s ease-in-out infinite;
}

@keyframes icg-bl-whatsapp-aura {
    0%, 100% {
        box-shadow:
            0 6px 28px rgba(37, 211, 102, 0.38),
            0 0 0 0 rgba(200, 156, 83, 0.25);
    }
    50% {
        box-shadow:
            0 6px 28px rgba(37, 211, 102, 0.38),
            0 0 0 12px rgba(200, 156, 83, 0);
    }
}

.icg-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.50);
    animation: none;
}

.icg-whatsapp i {
    font-size: 36px;
    color: var(--white);
}

/* ============================================================
   8. RESPONSIVE
   ============================================================ */

/* --- 1200px --- */
@media (max-width: 1200px) {
    .icg-bl-editorial {
        padding: 80px 60px;
    }

    .icg-bl-editorial__inner {
        gap: 50px;
    }

    .icg-bl-editorial__title {
        font-size: 42px;
    }

    .icg-bl-editorial__desc {
        font-size: 16px;
    }

    .icg-bl-featured__content {
        padding: 60px;
    }

    .icg-bl-featured__title {
        font-size: 30px;
    }

    .icg-bl-grid-section {
        padding: 100px 60px;
    }

    .icg-bl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .icg-footer {
        padding: 80px 60px 40px;
    }

    .icg-footer__top {
        gap: 44px;
    }

    .icg-footer__links a {
        font-size: 16px;
    }
}

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

    .icg-navbar.scrolled {
        padding: 11px 28px;
    }

    /* Editorial header stacks */
    .icg-bl-editorial {
        padding: 64px 40px;
    }

    .icg-bl-editorial__inner {
        flex-direction: column;
        gap: 36px;
    }

    .icg-bl-editorial__left {
        max-width: 100%;
    }

    .icg-bl-editorial__title {
        font-size: 38px;
    }

    .icg-bl-editorial__right {
        padding-top: 0;
        max-width: 100%;
    }

    /* Featured stacks */
    .icg-bl-featured__grid {
        grid-template-columns: 1fr;
    }

    .icg-bl-featured__img {
        min-height: 400px;
        height: 400px;
    }

    .icg-bl-featured__content {
        padding: 56px 44px;
    }

    .icg-bl-featured__title {
        font-size: 28px;
    }

    .icg-bl-featured__excerpt {
        font-size: 16px;
    }

    /* Grid: 1 column */
    .icg-bl-grid-section {
        padding: 80px 40px;
    }

    .icg-bl-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 640px;
    }

    /* Footer */
    .icg-footer {
        padding: 72px 40px 36px;
    }

    .icg-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 48px;
    }

    .icg-footer__brand {
        grid-column: 1 / -1;
    }
}

/* --- 576px --- */
@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-bl-hero {
        min-height: 320px;
    }

    .icg-bl-hero__content {
        padding: 0 20px 40px;
        text-align: center;
    }

    .icg-bl-hero__breadcrumb {
        justify-content: center;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .icg-bl-hero__title {
        font-size: 34px;
        letter-spacing: 4px;
    }

    .icg-bl-hero__title::after {
        margin-left: auto;
        margin-right: auto;
    }

    /* Editorial compact */
    .icg-bl-editorial {
        padding: 48px 24px;
    }

    .icg-bl-editorial__title {
        font-size: 30px;
    }

    .icg-bl-editorial__label {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }

    .icg-bl-editorial__right {
        gap: 20px;
    }

    .icg-bl-editorial__accent {
        height: 60px;
    }

    .icg-bl-editorial__desc {
        font-size: 15px;
    }

    /* Featured compact */
    .icg-bl-featured__img {
        min-height: 280px;
        height: 280px;
    }

    .icg-bl-featured__content {
        padding: 40px 24px;
    }

    .icg-bl-featured__title {
        font-size: 24px;
    }

    .icg-bl-featured__excerpt {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .icg-bl-featured__divider {
        width: 40px;
        margin-bottom: 24px;
    }

    /* Grid compact */
    .icg-bl-grid-section {
        padding: 56px 24px;
    }

    .icg-bl-grid {
        gap: 28px;
    }

    .icg-bl-card__img {
        height: 240px;
    }

    .icg-bl-card__body {
        padding: 28px 24px;
    }

    .icg-bl-card__title {
        font-size: 20px;
    }

    .icg-bl-card__excerpt {
        font-size: 15px;
    }

    .icg-bl-card:hover {
        transform: translateY(-5px);
    }

    /* Footer */
    .icg-footer {
        padding: 60px 24px 32px;
    }

    .icg-footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 52px;
    }

    .icg-footer__brand {
        grid-column: auto;
    }

    .icg-footer__col-title {
        font-size: 19px;
    }

    .icg-footer__links a {
        font-size: 15px;
    }

    .icg-footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .icg-footer__copy {
        font-size: 11px;
    }

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

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

/* ============================================================
   FOOTER UNIFICADO ICG (Figma)
   ============================================================ */
.icg-footer {
  background: #2C2C2C;
  padding: 80px 123px;
  position: relative;
  overflow: hidden;
}
.icg-footer__inner {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.icg-footer__brand { display: flex; flex-direction: column; }
.icg-footer__logo { width: 266px; opacity: 0.8; margin-bottom: 40px; }
.icg-footer__brand-text { font-size: 20px; font-weight: 300; color: #fff; line-height: 1.5; }
.icg-footer__brand-text strong { font-weight: 700; }
.icg-footer__columns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.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; }
.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 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__sala { font-size: 20px; font-weight: 300; color: rgba(255,255,255,0.5); margin-top: 20px; margin-bottom: 0; }
.icg-footer__cita-btn { display: inline-flex; align-items: center; justify-content: center; border: 1px solid #AB874B; color: #C89C53; font-size: 15px; 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: 0; bottom: 0; width: 616px; opacity: 0.05; pointer-events: none; z-index: 1; }
.icg-whatsapp { position: fixed; bottom: 30px; right: 30px; z-index: 50; width: 87px; height: 87px; border-radius: 50%; background: transparent; display: flex; align-items: center; justify-content: center; 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; }
@media (max-width: 991px) {
  .icg-footer { padding: 60px 30px; }
  .icg-footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .icg-footer__columns { grid-template-columns: 1fr 1fr; }
  .icg-footer__col h4 { font-size: 20px; }
  .icg-footer__col ul li a { font-size: 16px; }
}
@media (max-width: 576px) {
  .icg-footer { padding: 40px 20px; }
  .icg-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .icg-footer__logo { width: 200px; }
  .icg-footer__columns { grid-template-columns: 1fr; }
  .icg-footer__col h4 { font-size: 18px; }
  .icg-footer__col ul li a { font-size: 16px; line-height: 40px; }
  .icg-footer__address { font-size: 16px; }
  .icg-footer__brand-text { font-size: 16px; }
  .icg-footer__sala { font-size: 16px; }
  .icg-footer__cita-btn { font-size: 16px; padding: 10px 24px; width: auto; }
  .icg-whatsapp { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .icg-whatsapp i { font-size: 24px; }
}
