/* ========================================
   ANAIWA ECO RESERVA — Premium Landing
   Prefix: icg-aw-
   ICG Design System
   ======================================== */

:root {
    --slate: #465666;
    --carbon: #2C2C2C;
    --deep: #1a1a1a;
    --gold: #C89C53;
    --gold-light: #d4ac6e;
    --light-gray: #E2E2E2;
    --warm: #F5F5F3;
    --white: #FFFFFF;
    --font: 'Poppins', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET --- */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    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.4s var(--ease);
}

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

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ========================================
   SCROLL REVEAL
   ======================================== */

.icg-aw-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.icg-aw-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   NAVBAR UNIFICADO ICG
   ======================================== */

.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;
}

/* ========================================
   BUTTONS
   ======================================== */

.icg-aw-btn {
    display: inline-block;
    font-family: var(--font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s var(--ease);
    position: relative;
}

.icg-aw-btn--outline-white {
    padding: 20px 56px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: transparent;
}

.icg-aw-btn--outline-white:hover {
    background: var(--white);
    color: var(--deep);
    border-color: var(--white);
}

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

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

.icg-aw-btn--solid {
    padding: 20px 56px;
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}

.icg-aw-btn--solid:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 12px 48px rgba(200, 156, 83, 0.3);
}

/* ========================================
   1. HERO
   ======================================== */

.icg-aw-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.icg-aw-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.03);
    animation: icg-aw-heroZoom 30s ease-in-out infinite alternate;
}

@keyframes icg-aw-heroZoom {
    0% { transform: scale(1.03); }
    100% { transform: scale(1.08); }
}

.icg-aw-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 35%),
        linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.3) 65%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.icg-aw-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icg-aw-hero__logo {
    width: 280px;
    margin-bottom: 48px;
    animation: icg-aw-fadeUp 1.6s var(--ease) both;
}

.icg-aw-hero__label {
    font-family: var(--font);
    font-weight: 300;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 24px;
    animation: icg-aw-fadeUp 1.6s 0.2s var(--ease) both;
}

.icg-aw-hero__title {
    font-family: var(--font);
    font-weight: 300;
    font-size: 48px;
    color: var(--white);
    max-width: 700px;
    line-height: 1.25;
    margin-bottom: 48px;
    animation: icg-aw-fadeUp 1.6s 0.4s var(--ease) both;
}

.icg-aw-hero__content .icg-aw-btn {
    animation: icg-aw-fadeUp 1.6s 0.6s var(--ease) both;
}

@keyframes icg-aw-fadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   2. CONCEPTO
   ======================================== */

.icg-aw-concepto {
    background: var(--white);
    padding: 160px 40px;
}

.icg-aw-concepto__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.icg-aw-concepto__tag {
    display: block;
    font-family: var(--font);
    font-weight: 500;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.icg-aw-concepto__title {
    font-family: var(--font);
    font-weight: 300;
    font-size: 42px;
    color: var(--carbon);
    line-height: 1.3;
    margin-bottom: 40px;
}

.icg-aw-concepto__line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 40px;
}

.icg-aw-concepto__text {
    font-family: var(--font);
    font-weight: 300;
    font-size: 18px;
    color: var(--slate);
    line-height: 1.9;
    max-width: 640px;
    margin: 0 auto 40px;
}

.icg-aw-concepto__highlight {
    font-family: var(--font);
    font-weight: 500;
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 2px;
    padding: 24px 48px;
    border: 1px solid rgba(200, 156, 83, 0.3);
    display: inline-block;
}

/* ========================================
   3. GALERÍA RENDERS (Bento Grid)
   ======================================== */

.icg-aw-renders {
    padding: 0;
    overflow: hidden;
}

.icg-aw-renders__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4px;
    width: 100%;
}

.icg-aw-renders__item {
    overflow: hidden;
    position: relative;
}

.icg-aw-renders__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.icg-aw-renders__item:hover img {
    transform: scale(1.05);
}

.icg-aw-renders__item--s {
    grid-column: span 4;
    height: 260px;
}

.icg-aw-renders__item--l {
    grid-column: span 6;
    height: 360px;
}

.icg-aw-renders__item--full {
    grid-column: 1 / -1;
    height: 360px;
}

/* ========================================
   4. CLUB DE PLAYA
   ======================================== */

/* Club de Playa — Fullscreen immersive */
.icg-aw-beach {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 3px solid #fff;
}

.icg-aw-beach__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.icg-aw-beach__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 12s ease-out;
}

.icg-aw-beach:hover .icg-aw-beach__bg img {
    transform: scale(1.08);
}

.icg-aw-beach__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, transparent 70%),
        linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
}

.icg-aw-beach__content {
    position: relative;
    z-index: 2;
    padding: 120px 110px;
    max-width: 700px;
}

.icg-aw-beach__tag {
    display: block;
    font-family: var(--font);
    font-weight: 500;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.icg-aw-beach__title {
    font-family: var(--font);
    font-weight: 700;
    font-size: 56px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.icg-aw-beach__line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
}

.icg-aw-beach__desc {
    font-family: var(--font);
    font-weight: 300;
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 56px;
}

.icg-aw-beach__amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 48px;
}

.icg-aw-beach__amenity {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icg-aw-beach__amenity-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200,156,83,0.3);
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.icg-aw-beach__amenity:hover .icg-aw-beach__amenity-icon {
    background: rgba(200,156,83,0.15);
    border-color: var(--gold);
}

.icg-aw-beach__amenity-text {
    font-family: var(--font);
    font-weight: 300;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
}

/* ========================================
   5. NATURALEZA Y SOSTENIBILIDAD (CLUBHOUSE)
   ======================================== */

/* Clubhouse — Fullscreen immersive (mirror del beach pero desde la derecha) */
.icg-aw-clubhouse {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-top: 3px solid #fff;
}

.icg-aw-clubhouse__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.icg-aw-clubhouse__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 12s ease-out;
}

.icg-aw-clubhouse:hover .icg-aw-clubhouse__bg img {
    transform: scale(1.08);
}

.icg-aw-clubhouse__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(255deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, transparent 70%),
        linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
}

.icg-aw-clubhouse__content {
    position: relative;
    z-index: 2;
    padding: 120px 110px;
    max-width: 750px;
}

.icg-aw-clubhouse__tag {
    display: block;
    font-family: var(--font);
    font-weight: 500;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.icg-aw-clubhouse__title {
    font-family: var(--font);
    font-weight: 700;
    font-size: 56px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.icg-aw-clubhouse__line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
}

.icg-aw-clubhouse__desc {
    font-family: var(--font);
    font-weight: 300;
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 56px;
}

.icg-aw-clubhouse__amenities {
    display: flex;
    gap: 64px;
}

.icg-aw-clubhouse__col {
    flex: 1;
}

.icg-aw-clubhouse__col-title {
    font-family: var(--font);
    font-weight: 500;
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(200,156,83,0.3);
}

.icg-aw-clubhouse__amenity {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.icg-aw-clubhouse__amenity i {
    font-size: 18px;
    color: var(--gold);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.icg-aw-clubhouse__amenity span {
    font-family: var(--font);
    font-weight: 300;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}

/* ========================================
   6. GALERÍA FOTOS
   ======================================== */

.icg-aw-photos {
    background: var(--warm);
    padding: 100px 40px;
}

.icg-aw-photos__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.icg-aw-photos__tag {
    display: block;
    font-family: var(--font);
    font-weight: 500;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 48px;
}

.icg-aw-photos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.icg-aw-photos__item {
    overflow: hidden;
    height: 320px;
    position: relative;
}

.icg-aw-photos__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s var(--ease);
    z-index: 1;
}

.icg-aw-photos__item:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

.icg-aw-photos__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.icg-aw-photos__item:hover img {
    transform: scale(1.06);
}

/* ========================================
   7. MASTERPLAN
   ======================================== */

.icg-aw-masterplan {
    background: var(--carbon);
    padding: 140px 40px;
    text-align: center;
}

.icg-aw-masterplan__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.icg-aw-masterplan__tag {
    display: block;
    font-family: var(--font);
    font-weight: 500;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.icg-aw-masterplan__title {
    font-family: var(--font);
    font-weight: 300;
    font-size: 42px;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 56px;
}

.icg-aw-masterplan__gallery {
    margin-bottom: 56px;
    max-width: 100%;
}

.icg-aw-masterplan__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 80px 40px;
    border: 1px solid rgba(200, 156, 83, 0.25);
}

.icg-aw-masterplan__placeholder i {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.6;
}

.icg-aw-masterplan__placeholder p {
    font-family: var(--font);
    font-weight: 300;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.icg-aw-masterplan__image {
    overflow: hidden;
    text-align: center;
}

.icg-aw-masterplan__label {
    display: block;
    font-family: var(--font);
    font-weight: 500;
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

.icg-aw-masterplan__image img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    transition: transform 0.8s var(--ease);
}

.icg-aw-masterplan__image:hover img {
    transform: scale(1.02);
}

.icg-aw-masterplan__buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* ========================================
   8. UBICACIÓN
   ======================================== */

.icg-aw-ubicacion {
    background: var(--slate);
    padding: 120px 0;
}

.icg-aw-ubicacion__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.icg-aw-ubicacion__info {
    padding: 0 100px;
}

.icg-aw-ubicacion__tag {
    display: block;
    font-family: var(--font);
    font-weight: 500;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.icg-aw-ubicacion__title {
    font-family: var(--font);
    font-weight: 700;
    font-size: 36px;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 24px;
}

.icg-aw-ubicacion__text {
    font-family: var(--font);
    font-weight: 300;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 48px;
}

.icg-aw-ubicacion__datos {
    display: flex;
    gap: 48px;
}

.icg-aw-ubicacion__dato {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.icg-aw-ubicacion__dato-num {
    font-family: var(--font);
    font-weight: 700;
    font-size: 40px;
    color: var(--gold);
    line-height: 1;
}

.icg-aw-ubicacion__dato-label {
    font-family: var(--font);
    font-weight: 300;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.icg-aw-ubicacion__image {
    overflow: hidden;
    height: 500px;
}

.icg-aw-ubicacion__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.icg-aw-ubicacion__image:hover img {
    transform: scale(1.04);
}

/* ========================================
   9. CTA
   ======================================== */

.icg-aw-cta {
    background: var(--deep);
    padding: 120px 40px;
    text-align: center;
}

.icg-aw-cta__inner {
    max-width: 700px;
    margin: 0 auto;
}

.icg-aw-cta__title {
    font-family: var(--font);
    font-weight: 300;
    font-size: 52px;
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1.15;
}

.icg-aw-cta__subtitle {
    font-family: var(--font);
    font-weight: 300;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 48px;
}

.icg-aw-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* ========================================
   10. FOOTER UNIFICADO ICG
   ======================================== */

.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-family: var(--font);
    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-family: var(--font);
    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-family: var(--font);
    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-family: var(--font);
    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-family: var(--font);
    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__cita-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #AB874B;
    color: #C89C53;
    font-family: var(--font);
    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;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */

.icg-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 50;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    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.1);
}

.icg-whatsapp i {
    font-size: 28px;
    color: white;
}

/* ========================================
   RESPONSIVE — 1200px
   ======================================== */

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

    .icg-navbar.scrolled {
        padding: 16px 48px;
    }

    .icg-aw-hero__title {
        font-size: 40px;
    }

    .icg-aw-hero__logo {
        width: 240px;
    }

    .icg-aw-concepto {
        padding: 140px 40px;
    }

    .icg-aw-concepto__title {
        font-size: 36px;
    }

    .icg-aw-renders__item--s { height: 220px; }
    .icg-aw-renders__item--l { height: 300px; }
    .icg-aw-renders__item--full { height: 300px; }

    .icg-aw-beach__info,
    .icg-aw-clubhouse__info {
        padding: 0 60px;
    }

    .icg-aw-beach__title,
    .icg-aw-clubhouse__title {
        font-size: 34px;
    }

    .icg-aw-masterplan__title {
        font-size: 36px;
    }

    .icg-aw-ubicacion__info {
        padding: 0 60px;
    }

    .icg-aw-ubicacion__title {
        font-size: 30px;
    }

    .icg-footer {
        padding: 60px 48px;
    }

    .icg-footer__inner {
        gap: 48px;
    }
}

/* ========================================
   RESPONSIVE — 991px
   ======================================== */

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

    .icg-navbar.scrolled {
        padding: 14px 32px;
    }

    .icg-aw-hero__title {
        font-size: 34px;
        max-width: 520px;
    }

    .icg-aw-hero__logo {
        width: 220px;
        margin-bottom: 36px;
    }

    .icg-aw-hero__label {
        font-size: 13px;
        letter-spacing: 6px;
    }

    .icg-aw-concepto {
        padding: 120px 32px;
    }

    .icg-aw-concepto__title {
        font-size: 32px;
    }

    .icg-aw-concepto__text {
        font-size: 16px;
    }

    .icg-aw-renders__grid { grid-template-columns: repeat(6, 1fr); }
    .icg-aw-renders__item--s { grid-column: span 2; height: 180px; }
    .icg-aw-renders__item--l { grid-column: span 3; height: 240px; }
    .icg-aw-renders__item--full { grid-column: 1 / -1; height: 240px; }

    /* Beach — stack on tablet */
    .icg-aw-beach {
        padding: 100px 0;
    }

    .icg-aw-beach__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .icg-aw-beach__info {
        padding: 0 48px;
    }

    .icg-aw-beach__image {
        height: 400px;
    }

    /* Clubhouse — stack on tablet */
    .icg-aw-clubhouse {
        padding: 100px 0;
    }

    .icg-aw-clubhouse__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .icg-aw-clubhouse__info {
        padding: 0 48px;
        order: -1;
    }

    .icg-aw-clubhouse__image {
        height: 400px;
    }

    /* Photos */
    .icg-aw-photos {
        padding: 80px 32px;
    }

    .icg-aw-photos__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icg-aw-photos__item {
        height: 280px;
    }

    /* Masterplan */
    .icg-aw-masterplan {
        padding: 100px 32px;
    }

    .icg-aw-masterplan__title {
        font-size: 34px;
    }

    /* Ubicación — stack */
    .icg-aw-ubicacion {
        padding: 100px 0;
    }

    .icg-aw-ubicacion__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .icg-aw-ubicacion__info {
        padding: 0 48px;
    }

    .icg-aw-ubicacion__image {
        height: 400px;
    }

    .icg-aw-ubicacion__datos {
        gap: 32px;
    }

    .icg-aw-cta__title {
        font-size: 42px;
    }

    /* Footer */
    .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;
    }
}

/* ========================================
   RESPONSIVE — 576px
   ======================================== */

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

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

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

    .icg-navbar__actions {
        gap: 16px;
    }

    .icg-aw-hero {
        min-height: 500px;
    }

    .icg-aw-hero__logo {
        width: 180px;
        margin-bottom: 32px;
    }

    .icg-aw-hero__label {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .icg-aw-hero__title {
        font-size: 28px;
        max-width: 90%;
        margin-bottom: 36px;
    }

    .icg-aw-btn--outline-white,
    .icg-aw-btn--outline-gold,
    .icg-aw-btn--solid {
        padding: 16px 40px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .icg-aw-concepto {
        padding: 100px 20px;
    }

    .icg-aw-concepto__tag {
        font-size: 11px;
    }

    .icg-aw-concepto__title {
        font-size: 26px;
    }

    .icg-aw-concepto__highlight {
        font-size: 16px;
        padding: 20px 32px;
    }

    /* Renders — mobile */
    .icg-aw-renders__grid { grid-template-columns: repeat(2, 1fr); }
    .icg-aw-renders__item--s { grid-column: span 1; height: 150px; }
    .icg-aw-renders__item--l { grid-column: span 1; height: 150px; }
    .icg-aw-renders__item--full { grid-column: 1 / -1; height: 200px; }

    /* Beach */
    .icg-aw-beach {
        padding: 80px 0;
        min-height: 80vh;
    }

    .icg-aw-beach__info {
        padding: 0 24px;
    }

    .icg-aw-beach__title {
        font-size: 28px;
    }

    .icg-aw-beach__list li {
        font-size: 15px;
    }

    .icg-aw-beach__image {
        height: 300px;
    }

    /* Clubhouse */
    .icg-aw-clubhouse {
        padding: 80px 0;
        min-height: 80vh;
    }

    .icg-aw-clubhouse__info {
        padding: 0 24px;
    }

    .icg-aw-clubhouse__title {
        font-size: 28px;
    }

    .icg-aw-clubhouse__list li {
        font-size: 15px;
    }

    .icg-aw-clubhouse__image {
        height: 300px;
    }

    /* Photos */
    .icg-aw-photos {
        padding: 64px 16px;
    }

    .icg-aw-photos__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .icg-aw-photos__item {
        height: 240px;
    }

    /* Masterplan */
    .icg-aw-masterplan {
        padding: 80px 20px;
    }

    .icg-aw-masterplan__title {
        font-size: 28px;
    }

    .icg-aw-masterplan__buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* Ubicación */
    .icg-aw-ubicacion {
        padding: 80px 0;
    }

    .icg-aw-ubicacion__info {
        padding: 0 24px;
    }

    .icg-aw-ubicacion__title {
        font-size: 26px;
    }

    .icg-aw-ubicacion__text {
        font-size: 15px;
    }

    .icg-aw-ubicacion__datos {
        flex-wrap: wrap;
        gap: 24px;
    }

    .icg-aw-ubicacion__dato-num {
        font-size: 32px;
    }

    .icg-aw-ubicacion__image {
        height: 300px;
    }

    /* CTA */
    .icg-aw-cta {
        padding: 80px 20px;
    }

    .icg-aw-cta__title {
        font-size: 34px;
    }

    .icg-aw-cta__subtitle {
        font-size: 16px;
    }

    .icg-aw-cta__buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* Footer */
    .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__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;
    }

    .icg-mobile-menu a {
        font-size: 22px;
        letter-spacing: 3px;
    }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.icg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
}

.icg-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.icg-lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.icg-lightbox.open .icg-lightbox__img {
    transform: scale(1);
}

.icg-lightbox__close {
    position: absolute;
    top: 32px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10000;
}

.icg-lightbox__close:hover {
    color: #C89C53;
    transform: rotate(90deg);
}

/* ========================================
   MASTERPLAN — VILLAS INFO
   ======================================== */

.icg-aw-masterplan__villas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.icg-aw-masterplan__villa-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 156, 83, 0.3);
    border-radius: 4px;
    padding: 32px 24px;
    text-align: left;
}

.icg-aw-masterplan__villa-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(200, 156, 83, 0.2);
    padding-bottom: 16px;
}

.icg-aw-masterplan__villa-header i {
    font-size: 24px;
    color: var(--gold);
}

.icg-aw-masterplan__villa-header h3 {
    font-family: var(--font);
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.icg-aw-masterplan__villa-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.icg-aw-masterplan__villa-specs li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font);
    font-weight: 300;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    text-align: left;
}

.icg-aw-masterplan__villa-specs li i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.icg-aw-masterplan__villa-specs li strong {
    color: var(--white);
    font-weight: 500;
}

/* ========================================
   LOCALES COMERCIALES — STREET MALL
   ======================================== */

.icg-aw-locales {
    background: var(--warm);
    padding: 140px 40px;
    text-align: center;
}

.icg-aw-locales__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.icg-aw-locales__tag {
    display: block;
    font-family: var(--font);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.icg-aw-locales__title {
    font-family: var(--font);
    font-weight: 300;
    font-size: 52px;
    color: var(--carbon);
    line-height: 1.1;
    margin-bottom: 24px;
}

.icg-aw-locales__line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 32px;
}

.icg-aw-locales__text {
    font-family: var(--font);
    font-weight: 300;
    font-size: 17px;
    color: var(--slate);
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto 56px;
}

/* Carousel */
.icg-aw-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 64px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.icg-aw-carousel__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.icg-aw-carousel__slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 4px;
    box-sizing: border-box;
}

.icg-aw-carousel__slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.6s ease;
}

.icg-aw-carousel__slide:hover img {
    transform: scale(1.04);
}

.icg-aw-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    background: rgba(44, 44, 44, 0.7);
    border: 1px solid rgba(200, 156, 83, 0.3);
    color: var(--gold);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.icg-aw-carousel__btn:hover {
    background: var(--carbon);
    border-color: var(--gold);
}

.icg-aw-carousel__btn--prev { left: 16px; }
.icg-aw-carousel__btn--next { right: 16px; }

.icg-aw-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.icg-aw-carousel__dot {
    width: 10px;
    height: 10px;
    background: rgba(200, 156, 83, 0.25);
    cursor: pointer;
    transition: background 0.3s ease;
}

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

@media (max-width: 991px) {
    .icg-aw-carousel__slide {
        flex: 0 0 50%;
    }
    .icg-aw-carousel__slide img {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .icg-aw-carousel__slide {
        flex: 0 0 100%;
    }
    .icg-aw-carousel__slide img {
        height: 280px;
    }
    .icg-aw-carousel__btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.icg-aw-locales__img-item {
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.icg-aw-locales__img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.icg-aw-locales__img-item:hover img {
    transform: scale(1.05);
}

.icg-aw-locales__datos {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.icg-aw-locales__dato {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.icg-aw-locales__dato-num {
    font-family: var(--font);
    font-weight: 700;
    font-size: 36px;
    color: var(--carbon);
    letter-spacing: -0.02em;
}

.icg-aw-locales__dato-label {
    font-family: var(--font);
    font-weight: 300;
    font-size: 13px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.icg-aw-locales__financiacion {
    font-family: var(--font);
    font-weight: 300;
    font-size: 14px;
    color: var(--slate);
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}

.icg-aw-locales__planos-title {
    font-family: var(--font);
    font-weight: 500;
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin: 64px 0 32px;
}

.icg-aw-locales__planos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 56px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 20px;
}

.icg-aw-locales__plano {
    text-align: center;
    overflow: hidden;
}

.icg-aw-locales__plano img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #F5F5F3;
    padding: 12px;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.icg-aw-locales__plano:hover img {
    transform: scale(1.03);
}

.icg-aw-locales__plano span {
    display: block;
    font-family: var(--font);
    font-weight: 500;
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 12px;
}

.icg-aw-locales__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   UBICACIÓN — PUNTOS DE INTERÉS
   ======================================== */

.icg-aw-ubicacion__pois {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
    margin-top: 32px;
}

.icg-aw-ubicacion__poi {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icg-aw-ubicacion__poi > i {
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.icg-aw-ubicacion__poi > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.icg-aw-ubicacion__poi strong {
    font-family: var(--font);
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
}

.icg-aw-ubicacion__poi span {
    font-family: var(--font);
    font-weight: 300;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ========================================
   CTA — FINANCIACIÓN
   ======================================== */

.icg-aw-cta__financiacion {
    font-family: var(--font);
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    margin-bottom: 40px;
    border-top: 1px solid rgba(200, 156, 83, 0.3);
    border-bottom: 1px solid rgba(200, 156, 83, 0.3);
    padding: 16px 0;
}

/* ========================================
   BOTÓN — OUTLINE DARK
   ======================================== */

.icg-aw-btn--outline-dark {
    border: 1.5px solid var(--carbon);
    color: var(--carbon);
    background: transparent;
    padding: 14px 32px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* ========================================
   RESPONSIVE — LOCALES / MASTERPLAN VILLAS / POIS
   ======================================== */

@media (max-width: 1024px) {
    .icg-aw-masterplan__villas {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .icg-aw-locales__title {
        font-size: 40px;
    }

    .icg-aw-locales {
        padding: 100px 32px;
    }
}

@media (max-width: 768px) {
    .icg-aw-locales {
        padding: 80px 20px;
    }

    .icg-aw-locales__title {
        font-size: 32px;
    }

    .icg-aw-locales__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .icg-aw-locales__datos {
        gap: 32px;
    }

    .icg-aw-locales__dato-num {
        font-size: 28px;
    }

    .icg-aw-locales__planos {
        grid-template-columns: repeat(2, 1fr);
    }

    .icg-aw-locales__buttons {
        flex-direction: column;
        align-items: center;
    }

    .icg-aw-ubicacion__pois {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .icg-aw-masterplan__villas {
        grid-template-columns: 1fr;
    }

    .icg-aw-masterplan__villa-card {
        padding: 24px 20px;
    }

    .icg-aw-cta__financiacion {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .icg-aw-locales {
        padding: 60px 20px;
    }

    .icg-aw-locales__title {
        font-size: 28px;
    }

    .icg-aw-locales__planos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        margin-left: 0;
        padding: 0;
    }

    .icg-aw-locales__datos {
        gap: 20px;
        flex-wrap: wrap;
    }

    .icg-aw-locales__dato-num {
        font-size: 24px;
    }

    .icg-aw-locales__text {
        font-size: 16px;
    }
}
