@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600;700&family=Inter:wght@300;400&display=swap');

/* ═══════════════════════════════════════════
   VARIABLES GLOBALES
═══════════════════════════════════════════ */
:root {
  --adm-red:        #7b1813;
  --adm-red-light:  #e05445;
  --adm-red-dark:   #5e1210;
  --adm-dark:       #181818;
  --adm-dark-2:     #242424;
  --adm-cream:      #f8f6f3;
  --adm-cream-2:    #f0ede8;
  --adm-green:      #3d5c35;
  --adm-wa:         #25D366;
  --adm-font-head:  'Montserrat', sans-serif;
  --adm-font-body:  'Inter', sans-serif;
  --adm-max:        1060px;
  --adm-radius:     6px;
  --adm-ease:       cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════
   REVEAL — sistema unificado de animaciones
   Uso: agregar data-adm-reveal a cualquier elemento
   JS lo activa agregando .adm-visible al entrar en viewport
═══════════════════════════════════════════ */
[data-adm-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--adm-ease), transform 0.65s var(--adm-ease);
}
[data-adm-reveal].adm-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   COMPONENTES COMPARTIDOS
═══════════════════════════════════════════ */

/* Eyebrow */
.adm-eyebrow {
  font-family: var(--adm-font-head);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--adm-red);
  margin: 0 0 0.6rem;
  display: block;
}
.adm-eyebrow--light { color: var(--adm-red-light); }

/* Botón primario */
.adm-btn {
  font-family: var(--adm-font-head);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--adm-red);
  border: none;
  border-radius: 4px;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.adm-btn:hover { background: var(--adm-red-dark); transform: translateY(-1px); }

/* Botón ghost */
.adm-btn-ghost {
  font-family: var(--adm-font-body);
  font-weight: 400;
  font-size: 0.87rem;
  color: var(--adm-dark-2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--adm-dark-2);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.adm-btn-ghost:hover { color: var(--adm-red); border-color: var(--adm-red); }

/* Botón WhatsApp */
.adm-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--adm-wa);
  border: none;
  border-radius: 4px;
  padding: 12px 22px;
  text-decoration: none;
  font-family: var(--adm-font-head);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.2s;
}
.adm-btn-wa:hover { background: #1da851; }
.adm-btn-wa svg { width: 15px; height: 15px; fill: #fff; flex-shrink: 0; }

/* Badges de proyecto */
.adm-badge {
  font-family: var(--adm-font-head);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 3px;
}
.adm-badge--available { background: var(--adm-green); color: #fff; }
.adm-badge--sold      { background: var(--adm-dark-2); color: #fff; }
.adm-badge--soon      { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
.adm-badge--preventa {
    background: #db9a00c4;
    color: #fff;
    border: 1px solid rgba(180, 130, 40, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Card de proyecto (shared entre secciones y páginas) */
.adm-project-card {
  position: relative;
  border-radius: var(--adm-radius);
  overflow: hidden;
  background: #e8e4de;
  display: block;
  text-decoration: none;
}
.adm-project-card:hover .adm-project-card__img { transform: scale(1.05); }
.adm-project-card:hover .adm-project-card__arrow { opacity: 1; transform: translateX(0); }
.adm-project-card__img-wrap { position: relative; width: 100%; padding-top: 118%; overflow: hidden; }
.adm-project-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.6s var(--adm-ease); display: block;
}
.adm-project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,6,4,0.82) 0%, rgba(12,6,4,0.1) 50%, transparent 75%);
  pointer-events: none;
}
.adm-project-card__badge { position: absolute; top: 14px; left: 14px; }
.adm-project-card__bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.1rem 1.1rem;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.adm-project-card__info { display: flex; flex-direction: column; gap: 3px; }
.adm-project-card__name {
  font-family: var(--adm-font-head); font-weight: 700;
  font-size: 1rem; color: #fff; line-height: 1.1;
}
.adm-project-card__sub {
  font-family: var(--adm-font-body); font-weight: 300;
  font-size: 0.68rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.07em; text-transform: uppercase;
}
.adm-project-card__arrow {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s; flex-shrink: 0;
}
.adm-project-card__arrow svg {
  width: 13px; height: 13px; stroke: #fff; fill: none;
  stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5;
}

/* Hero oscuro (compartido entre páginas) */
.adm-page-hero {
  background: var(--adm-dark);
  padding: 4.5rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.adm-page-hero__accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--adm-red);
}
.adm-page-hero__inner {
  max-width: var(--adm-max); margin: 0 auto;
  position: relative; z-index: 1;
}
.adm-page-hero__eyebrow { color: var(--adm-red-light); }
.adm-page-hero__title {
  font-family: var(--adm-font-head); font-weight: 700;
  font-size: 2.8rem; color: #fff;
  line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 0.8rem;
}
.adm-page-hero__title span { color: var(--adm-red-light); }
.adm-page-hero__sub {
  font-family: var(--adm-font-body); font-weight: 300;
  font-size: 0.95rem; color: rgba(255,255,255,0.42);
  line-height: 1.7; max-width: 460px;
}

/* Mapa compartido */
.adm-map-wrap { border-radius: 8px; overflow: hidden; height: 180px; }
.adm-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(15%); }

/* Lightbox */
.adm-lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.93); z-index: 99999;
  align-items: center; justify-content: center;
}
.adm-lightbox.adm-lightbox--open { display: flex; }
.adm-lightbox img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 4px; }
.adm-lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  color: #fff; font-size: 2.2rem; line-height: 1; opacity: 0.6; transition: opacity 0.2s;
}
.adm-lightbox__close:hover { opacity: 1; }
.adm-lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; transition: background 0.2s;
}
.adm-lightbox__nav:hover { background: rgba(255,255,255,0.18); }
.adm-lightbox__prev { left: 1.5rem; }
.adm-lightbox__next { right: 1.5rem; }
.adm-lightbox__nav svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.adm-lightbox__counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--adm-font-body); font-weight: 300;
  font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
   TRAYECTORIA
═══════════════════════════════════════════ */
.adm-tray { background: #fff; padding: 4rem 0rem; text-align: center; }
.adm-tray__eyebrow { margin-bottom: 0.4rem; }
.adm-tray__heading {
  font-family: var(--adm-font-body); font-weight: 300;
  font-size: 22px; color: var(--adm-dark-2); margin: 0 0 2.5rem;
}
.adm-tray__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; 
}
.adm-tray__item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; padding: 0 1.5rem;
  border-right: 1px solid rgba(123,24,19,0.18);
}
.adm-tray__item:last-child { border-right: none; }
.adm-tray__number {
  font-family: var(--adm-font-head); font-weight: 600;
  font-size: 2.8rem; color: var(--adm-red);
  line-height: 1; display: flex; align-items: baseline; gap: 2px;
}
.adm-tray__label {
  font-family: var(--adm-font-body); font-weight: 300;
  font-size: 0.82rem; color: var(--adm-dark-2);
  max-width: 130px; line-height: 1.5;
}
@media (max-width: 640px) {
  .adm-tray__grid { grid-template-columns: 1fr; gap: 2rem 0; }
  .adm-tray__item { border-right: none; border-bottom: 1px solid rgba(123,24,19,0.18); padding-bottom: 1.5rem; }
  .adm-tray__item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 380px) {
  .adm-tray__grid { grid-template-columns: 1fr; }
  .adm-tray__item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════
   SOBRE NOSOTROS
═══════════════════════════════════════════ */
.adm-sn { background: #fff; padding: 4rem 0rem; overflow: hidden; }
.adm-sn__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 5rem; align-items: start;}
.adm-sn__left { display: flex; flex-direction: column; gap: 1.4rem; }
.adm-sn__headline { font-family: var(--adm-font-head); font-weight: 700; font-size: 2.1rem; color: var(--adm-dark-2); line-height: 1.15; margin: 0; }
.adm-sn__headline span { color: var(--adm-red); }
.adm-sn__divider { width: 0; height: 3px; background: var(--adm-red); border-radius: 2px; transition: width 0.7s var(--adm-ease) 0.5s; }
.adm-sn__divider.adm-visible { width: 40px; }
.adm-sn__tagline { font-family: var(--adm-font-body); font-weight: 300; font-size: 1.05rem; color: var(--adm-dark-2); line-height: 1.65; margin: 0; }
.adm-sn__separator { width: 100%; height: 1px; background: rgba(123,24,19,0.12); margin: 0.2rem 0; }
.adm-sn__founders { display: flex; flex-direction: column; gap: 1.1rem; padding-top: 0.4rem; }
.adm-sn__founder { display: flex; align-items: center; gap: 1rem; }
.adm-sn__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%; 
  overflow: hidden; 
  flex-shrink: 0;
  transform: scale(0.8); 
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1), opacity 0.4s ease;
}
.adm-sn__avatar.adm-visible { transform: scale(1); opacity: 1; }
.adm-sn__avatar img { object-fit: cover; filter: grayscale(100%); display: block; }
.adm-sn__founder-name { font-family: var(--adm-font-head); font-weight: 600; font-size: 0.88rem; color: var(--adm-dark-2); }
.adm-sn__founder-role { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.78rem; color: var(--adm-red); letter-spacing: 0.03em; }
.adm-sn__right { display: flex; flex-direction: column; gap: 1.6rem; padding-top: 0.2rem; }
.adm-sn__body { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.95rem; color: var(--adm-dark-2); line-height: 1.8; margin: 0; }
.adm-sn__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.adm-sn__pill {
  font-family: var(--adm-font-body); font-weight: 400; font-size: 0.76rem;
  color: var(--adm-red); border: 1px solid rgba(123,24,19,0.32);
  border-radius: 999px; padding: 4px 14px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.adm-sn__pill.adm-visible { opacity: 1; transform: translateY(0); }
.adm-sn__ctas { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
@media (max-width: 640px) {
  .adm-sn__grid { grid-template-columns: 1fr; gap: 2rem; }
  .adm-sn__headline { font-size: 1.65rem; }
}

/* ═══════════════════════════════════════════
   PROYECTOS (sección landing)
═══════════════════════════════════════════ */
.adm-pj { background: #fff; }
.adm-pj__inner { max-width: var(--adm-max); margin: 0 auto; }
.adm-pj__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.8rem; gap: 1rem; flex-wrap: wrap; }
.adm-pj__title { font-family: var(--adm-font-head); font-weight: 700; font-size: 2rem; color: var(--adm-dark-2); margin: 0; line-height: 1.15; }
.adm-pj__title span { color: var(--adm-red); }
.adm-pj__ver-todos {
  font-family: var(--adm-font-body); font-weight: 400; font-size: 0.82rem;
  color: var(--adm-dark-2); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--adm-dark-2); padding-bottom: 2px;
  white-space: nowrap; transition: color 0.15s, border-color 0.15s;
}
.adm-pj__ver-todos:hover { color: var(--adm-red); border-color: var(--adm-red); }
.adm-pj__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.adm-pj__banner { margin-top: 3.5rem; position: relative; height: 240px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #1a1008; }
.adm-pj__banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.38; }
.adm-pj__banner-overlay { position: absolute; inset: 0; background: rgba(20,10,8,0.42); }
.adm-pj__banner-content { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.adm-pj__banner-title { font-family: var(--adm-font-head); font-weight: 700; font-size: 1.5rem; color: #fff; margin: 0; line-height: 1.2; }
.adm-pj__banner-btn { font-family: var(--adm-font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; color: #fff; border: 1px solid rgba(255,255,255,0.65); border-radius: 4px; padding: 10px 30px; text-decoration: none; display: inline-block; transition: background 0.2s, border-color 0.2s; }
.adm-pj__banner-btn:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
@media (max-width: 768px) { .adm-pj__grid { grid-template-columns: 1fr 1fr; } .adm-pj__grid .adm-project-card:last-child { grid-column: 1/-1; } }
@media (max-width: 480px) { .adm-pj__grid { grid-template-columns: 1fr; } .adm-pj__grid .adm-project-card:last-child { grid-column: auto; } .adm-pj__title { font-size: 1.5rem; } .adm-pj__banner { height: 200px; } }

/* ═══════════════════════════════════════════
   TERRENOS
═══════════════════════════════════════════ */
.adm-tr { background: var(--adm-dark); padding: 5rem 4rem; position: relative; overflow: hidden; margin-top: 3.5rem; }
.adm-tr__grid { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0 4rem; align-items: center; max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.adm-tr__sep { background: rgba(255,255,255,0.07); align-self: stretch; }
.adm-tr__left { display: flex; flex-direction: column; gap: 1.8rem; padding-right: 1rem; }
.adm-tr__headline { font-family: var(--adm-font-head); font-weight: 700; font-size: 3rem; color: #fff; line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
.adm-tr__headline span { color: var(--adm-red-light); }
.adm-tr__tagline { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.92rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; margin: 0; }
.adm-tr__right { display: flex; flex-direction: column; gap: 2.2rem; padding-left: 1rem; }
.adm-tr__intro { font-family: var(--adm-font-body); font-weight: 300; font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin: 0; }
.adm-tr__cards { display: flex; flex-direction: column; gap: 1px; border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; overflow: hidden; }
.adm-tr__card { padding: 1.3rem 1.4rem; background: rgba(255,255,255,0.03); display: flex; align-items: flex-start; gap: 1.1rem; transition: background 0.2s; }
.adm-tr__card:hover { background: rgba(255,255,255,0.06); }
.adm-tr__card + .adm-tr__card { border-top: 1px solid rgba(255,255,255,0.07); }
.adm-tr__card-icon { width: 32px; height: 32px; border-radius: 6px; background: rgba(224,84,69,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.adm-tr__card-icon svg { width: 15px; height: 15px; stroke: var(--adm-red-light); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.adm-tr__card-title { font-family: var(--adm-font-head); font-weight: 600; font-size: 0.82rem; color: rgba(255,255,255,0.88); letter-spacing: 0.01em; display: block; margin-bottom: 3px; }
.adm-tr__card-desc { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.55; }
.adm-tr__footer { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 0.5rem; }
.adm-tr__tel { display: flex; flex-direction: column; gap: 2px; }
.adm-tr__tel-label { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.adm-tr__tel-num { font-family: var(--adm-font-head); font-weight: 600; font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.adm-tr__tel-num:hover { color: #fff; }
@media (max-width: 640px) { .adm-tr { padding: 3.5rem 1.8rem; } .adm-tr__grid { grid-template-columns: 1fr; gap: 2.5rem; } .adm-tr__sep { display: none; } .adm-tr__headline { font-size: 2.2rem; } .adm-tr__left, .adm-tr__right { padding: 0; } }

/* ═══════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════ */
.adm-ct__strip { background: #fff; border-bottom: 1px solid var(--adm-cream-2); padding: 2.5rem 3rem; }
.adm-ct__strip-inner { max-width: var(--adm-max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: start; }
.adm-ct__item { display: flex; align-items: flex-start; gap: 0.85rem; }
.adm-ct__icon { width: 38px; height: 38px; border-radius: 8px; background: var(--adm-cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.adm-ct__icon svg { width: 16px; height: 16px; stroke: var(--adm-red); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.adm-ct__label { font-family: var(--adm-font-head); font-weight: 600; font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--adm-red); display: block; margin-bottom: 3px; }
.adm-ct__value { font-family: var(--adm-font-body); font-weight: 400; font-size: 0.88rem; color: var(--adm-dark-2); text-decoration: none; transition: color 0.15s; line-height: 1.4; display: block; }
.adm-ct__value:hover { color: var(--adm-red); }
.adm-ct__sub { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.73rem; color: #bbb; display: block; }
.adm-ct__social { display: flex; gap: 0.6rem; padding-top: 2px; }
.adm-ct__social a { width: 32px; height: 32px; border-radius: 7px; background: var(--adm-cream); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.adm-ct__social a:hover { background: var(--adm-red); }
.adm-ct__social a:hover svg { stroke: #fff; }
.adm-ct__social svg { width: 14px; height: 14px; stroke: var(--adm-red); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.adm-ct__wa-bar { background: var(--adm-dark); padding: 1.2rem 3rem; }
.adm-ct__wa-inner { max-width: var(--adm-max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.adm-ct__wa-text { display: flex; flex-direction: column; gap: 2px; }
.adm-ct__wa-label { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.adm-ct__wa-num { font-family: var(--adm-font-head); font-weight: 600; font-size: 1rem; color: #fff; }
.adm-ct__wa-btn { display: flex; align-items: center; gap: 0.7rem; background: var(--adm-wa); border-radius: 6px; padding: 0.75rem 1.4rem; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.adm-ct__wa-btn:hover { background: #1da851; }
.adm-ct__wa-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.adm-ct__wa-btn span { font-family: var(--adm-font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; color: #fff; }
.adm-ct__form-section { background: var(--adm-cream); padding: 3.5rem 3rem; }
.adm-ct__form-inner { max-width: var(--adm-max); margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.adm-ct__form-title { font-family: var(--adm-font-head); font-weight: 700; font-size: 1.4rem; color: var(--adm-dark-2); }
.adm-ct__form-title span { color: var(--adm-red); }
.adm-ct__form-wrap { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #ece9e4; }
.adm-ct__form-wrap iframe { width: 100%; min-height: 520px; border: none; display: block; }
.adm-ct__map { width: 100%; height: 280px; overflow: hidden; }
.adm-ct__map iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(20%) contrast(1.05); }
@media (max-width: 768px) { .adm-ct__strip-inner { grid-template-columns: 1fr 1fr; } .adm-ct__strip { padding: 2rem 1.8rem; } .adm-ct__wa-bar { padding: 1.2rem 1.8rem; } .adm-ct__form-section { padding: 2.5rem 1.8rem; } }
@media (max-width: 480px) { .adm-ct__strip-inner { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   PÁGINA PROYECTOS (listado AJAX)
═══════════════════════════════════════════ */
.adm-pp { background: var(--adm-cream); padding: 4rem 3rem 5rem; }
.adm-pp__inner { max-width: var(--adm-max); margin: 0 auto; }
.adm-pp__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.adm-pp__loading, .adm-pp__empty { grid-column: 1/-1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 5rem 0; font-family: var(--adm-font-body); color: #999; }
.adm-pp__spinner { width: 28px; height: 28px; border: 2px solid #e0dbd2; border-top-color: var(--adm-red); border-radius: 50%; animation: adm-spin 0.8s linear infinite; }
@keyframes adm-spin { to { transform: rotate(360deg); } }
.adm-pp__loadmore-wrap { display: flex; justify-content: center; margin-top: 3rem; }
.adm-pp__loadmore { font-family: var(--adm-font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--adm-dark-2); background: #fff; border: 1px solid #ddd6cc; border-radius: 4px; padding: 13px 34px; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.adm-pp__loadmore:hover { background: var(--adm-dark-2); color: #fff; border-color: var(--adm-dark-2); }
.adm-pp__loadmore:disabled { opacity: 0.5; cursor: not-allowed; }
@media (max-width: 768px) { .adm-pp { padding: 3rem 1.5rem 4rem; } .adm-pp__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .adm-pp__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   DETALLE DE PROYECTO
═══════════════════════════════════════════ */
.adm-pd__hero { position: relative; height: 92vh; min-height: 520px; overflow: hidden; background: var(--adm-dark); display: flex; align-items: flex-end; }
.adm-pd__hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.adm-pd__hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,5,3,0.9) 0%, rgba(10,5,3,0.25) 55%, rgba(10,5,3,0.08) 100%); }
.adm-pd__hero-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--adm-red); z-index: 2; }
.adm-pd__hero-inner { position: relative; z-index: 1; width: 100%; max-width: var(--adm-max); margin: 0 auto; padding: 0 3rem 4rem; display: flex; flex-direction: column; gap: 1.2rem; }
.adm-pd__hero-title { font-family: var(--adm-font-head); font-weight: 700; font-size: 3.2rem; color: #fff; line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
.adm-pd__hero-title span { color: var(--adm-red-light); }
.adm-pd__hero-sub { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 460px; }
.adm-pd__meta { display: flex; gap: 2rem; flex-wrap: wrap; }
.adm-pd__meta-val { font-family: var(--adm-font-head); font-weight: 600; font-size: 0.88rem; color: #fff; display: block; }
.adm-pd__meta-key { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; }
.adm-pd__avance-label { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; margin-bottom: 4px; }
.adm-pd__avance-track { background: rgba(255,255,255,0.12); border-radius: 99px; height: 3px; overflow: hidden; max-width: 200px; }
.adm-pd__avance-fill { height: 100%; background: var(--adm-red-light); border-radius: 99px; }
.adm-pd__hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; padding-top: 0.5rem; }
.adm-pd__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 2; }
.adm-pd__scroll span { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.adm-pd__scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent); animation: adm-scroll 1.8s ease-in-out infinite; }
@keyframes adm-scroll { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
.adm-pd__main { background: #fff; padding: 4.5rem 3rem; }
.adm-pd__main-inner { max-width: var(--adm-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start; }
.adm-pd__left { display: flex; flex-direction: column; gap: 3rem; }
.adm-pd__section-label { font-family: var(--adm-font-head); font-weight: 600; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--adm-red); margin-bottom: 0.9rem; display: block; }
.adm-pd__desc { font-family: var(--adm-font-body); font-weight: 300; font-size: 1rem; color: #555; line-height: 1.85; }
.adm-pd__features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.adm-pd__feat { display: flex; align-items: flex-start; gap: 0.8rem; padding: 1rem 1.1rem; background: var(--adm-cream); border-radius: 6px; border-left: 3px solid var(--adm-red); }
.adm-pd__feat-icon { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.adm-pd__feat-icon svg { width: 15px; height: 15px; stroke: var(--adm-red); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.adm-pd__feat-text { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.82rem; color: var(--adm-dark-2); line-height: 1.45; padding-top: 3px; }
.adm-pd__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.adm-pd__gal-item { position: relative; padding-top: 100%; border-radius: 5px; overflow: hidden; cursor: pointer; background: #e8e4de; }
.adm-pd__gal-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.adm-pd__gal-item:hover img { transform: scale(1.06); }
.adm-pd__gal-main { grid-column: 1/-1; padding-top: 52%; }
.adm-pd__sidebar { display: flex; flex-direction: column; gap: 1.4rem; position: sticky; top: 2rem; }
.adm-pd__contact-card { background: var(--adm-dark); border-radius: 10px; padding: 1.8rem; display: flex; flex-direction: column; gap: 1.3rem; }
.adm-pd__contact-title { font-family: var(--adm-font-head); font-weight: 700; font-size: 1rem; color: #fff; line-height: 1.3; }
.adm-pd__contact-title span { color: var(--adm-red-light); }
.adm-pd__contact-desc { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.adm-pd__contact-divider { height: 1px; background: rgba(255,255,255,0.08); }
.adm-pd__contact-item { display: flex; align-items: center; gap: 0.75rem; }
.adm-pd__contact-item svg { width: 14px; height: 14px; stroke: var(--adm-red-light); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.adm-pd__contact-item a { font-family: var(--adm-font-body); font-weight: 300; font-size: 0.82rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.adm-pd__contact-item a:hover { color: #fff; }
.adm-pd__sidebar-wa { display: flex; align-items: center; gap: 0.7rem; background: var(--adm-wa); border-radius: 7px; padding: 0.85rem 1rem; text-decoration: none; transition: background 0.2s; }
.adm-pd__sidebar-wa:hover { background: #1da851; }
.adm-pd__sidebar-wa svg { width: 17px; height: 17px; fill: #fff; flex-shrink: 0; }
.adm-pd__sidebar-wa span { font-family: var(--adm-font-head); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }
.adm-pd__form-section { background: var(--adm-cream); padding: 4rem 3rem; }
.adm-pd__form-inner { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.4rem; }
.adm-pd__form-title { font-family: var(--adm-font-head); font-weight: 700; font-size: 1.3rem; color: var(--adm-dark-2); }
.adm-pd__form-title span { color: var(--adm-red); }
.adm-pd__form-wrap { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #ece9e4; }
.adm-pd__form-wrap iframe { width: 100%; min-height: 520px; border: none; display: block; }
@media (max-width: 768px) {
  .adm-pd__main-inner { grid-template-columns: 1fr; }
  .adm-pd__sidebar { position: static; }
  .adm-pd__hero-title { font-size: 2.1rem; }
  .adm-pd__hero-inner { padding: 0 1.8rem 3rem; }
  .adm-pd__main { padding: 3rem 1.8rem; }
  .adm-pd__form-section { padding: 3rem 1.5rem; }
  .adm-pd__features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .adm-pd__hero-title { font-size: 1.7rem; } .adm-pd__gallery { grid-template-columns: 1fr 1fr; } }
