/* ==============================
   TIERRA AL ALBA — Stylesheet
   Colors: #E8A020 | #031E3D | #FFFFFF | #000000
   Fonts: Kosans (display), Montserrat (body)
   ============================== */

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

@font-face {
  font-family: 'Kosans';
  src: url('../fonts/Kosans.ttf') format('truetype'),
       url('../fonts/Kosans.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --gold: #E8A020;
  --navy: #031E3D;
  --white: #ffffff;
  --black: #000000;
  --navy-light: #0a3366;
  --gold-dark: #c8881a;
  --gray-100: #f8f8f6;
  --gray-200: #eeece8;
  --gray-500: #888;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(3,30,61,0.10);
  --shadow-lg: 0 12px 48px rgba(3,30,61,0.18);
  --transition: 0.25s ease;
  --font-display: 'Kosans', 'Montserrat', 'Trebuchet MS', sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label--light { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.section-title--light { color: var(--white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}
.btn--full { width: 100%; text-align: center; }

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(3,30,61,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,160,32,0.2);
  transition: background var(--transition);
}
.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__icon {
  width: 40px;
  height: 40px;
}
.navbar__wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.navbar__al {
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: lowercase;
  margin: 0 0.15em;
}
.navbar__nav { margin-left: auto; }
.navbar__links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}
.navbar__links a {
  display: block;
  padding: 0.4rem 0.85rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.navbar__links a:hover {
  color: var(--gold);
  background: rgba(232,160,32,0.08);
}
.navbar__cta {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.navbar__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(3,30,61,0.92) 0%, rgba(3,30,61,0.75) 60%, rgba(232,160,32,0.15) 100%),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 60px;
  position: relative;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(3,30,61,0.6) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.hero__al {
  font-size: 0.55em;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  vertical-align: middle;
  margin: 0 0.2em;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
}

/* ==============================
   STATS
   ============================== */
.stats {
  background: var(--navy);
  padding: 3rem 2rem;
}
.stats__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.stats__item {
  text-align: center;
}
.stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stats__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}
.stats__cd-row {
  max-width: 900px;
  margin: 1.75rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stats__cd-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.stats__cd-clock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stats__cd-sep {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.1rem;
}
.stats__cd-lotes {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.stats__cd-lotes strong { color: var(--gold); }

/* ==============================
   PREVENTA HERO COUNTDOWN (index)
   ============================== */
.preventa-hero {
  background: linear-gradient(160deg, #031E3D 0%, #052848 55%, #031E3D 100%);
  padding: 5rem 2rem 4.5rem;
  border-bottom: 3px solid var(--gold);
  text-align: center;
}
.preventa-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.preventa-hero__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 50px;
  padding: 0.4rem 1.25rem;
}
.preventa-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--white);
  letter-spacing: 0.05em;
  margin: 0;
}
.preventa-hero__clock {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.preventa-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,160,32,0.28);
  border-radius: 18px;
  padding: 1.4rem 2rem;
  min-width: 110px;
  transition: border-color 0.3s;
}
.preventa-unit:hover { border-color: rgba(232,160,32,0.6); }
.preventa-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.preventa-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.6rem;
}
.preventa-sep {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 2rem;
}
.preventa-hero__lotes {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.preventa-hero__lotes strong { color: var(--white); font-weight: 700; }
.preventa-hero__cta {
  font-size: 1rem;
  padding: 1rem 2.75rem;
  margin-top: 0.25rem;
}
@media (max-width: 560px) {
  .preventa-unit { min-width: 76px; padding: 1rem 1.25rem; border-radius: 14px; }
  .preventa-sep { font-size: 2rem; margin-bottom: 1.4rem; }
  .preventa-hero__clock { gap: 0.6rem; }
}

/* ==============================
   COUNTDOWN INTEGRADO EN PROYECTOS (index)
   ============================== */
.projects__cd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem 2.5rem;
}
.projects__cd-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.projects__cd-clock {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
}
.projects__cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  min-width: 80px;
}
.projects__cd-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.projects__cd-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.35rem;
}
.projects__cd-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.25;
  margin-bottom: 1.2rem;
}
.projects__cd-lotes {
  font-size: 0.85rem;
  color: #888;
}
.projects__cd-lotes strong { color: var(--navy); }
@media (max-width: 480px) {
  .projects__cd-unit { min-width: 64px; padding: 0.75rem 1rem; }
}

/* ==============================
   TERRANZA SECTION (contador + proyecto unificado)
   ============================== */
.terranza-section {
  background: linear-gradient(160deg, #031E3D 0%, #052848 55%, #031E3D 100%);
  padding: 5.5rem 2rem;
  border-bottom: 3px solid var(--gold);
  text-align: center;
}
.terranza-section__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.terranza-section__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.terranza-section__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.terranza-section__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
}
.terranza-section__badge {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--gold);
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terranza-section__img {
  width: 100%;
  max-width: 640px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(232,160,32,0.25);
}
.terranza-section__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
@media (max-width: 480px) {
  .terranza-section__img { height: 200px; }
}
.terranza-section__cd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.terranza-section__cd-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.terranza-section__clock {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.terranza-section__lotes {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.terranza-section__lotes strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.terranza-section__divider {
  width: 56px;
  height: 2px;
  background: rgba(232,160,32,0.35);
  border-radius: 2px;
}
.terranza-section__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 620px;
  width: 100%;
}
.terranza-section__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.terranza-section__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.terranza-section__chips span {
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.28);
  color: rgba(255,255,255,0.8);
  border-radius: 50px;
  padding: 0.32rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.terranza-section__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 480px) {
  .terranza-section__actions { flex-direction: column; width: 100%; }
  .terranza-section__actions .btn { text-align: center; width: 100%; }
  .terranza-section__clock { gap: 0.5rem; }
}

/* ==============================
   ABOUT
   ============================== */
.about {
  padding: 7rem 2rem;
  background: var(--gray-100);
}
.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__body {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about__values {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.about__values li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}
.about__value-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__value-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
}
.about__visual {
  display: flex;
  justify-content: center;
}
.about__card {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem;
}
.about__card--bg {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  box-shadow: var(--shadow-lg);
}
.about__logo-graphic {
  width: 160px;
  height: 160px;
}
.about__card-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==============================
   SERVICES
   ============================== */
.services {
  background: var(--navy);
  padding: 7rem 2rem;
}
.services__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.services__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: all var(--transition);
}
.services__card:hover {
  background: rgba(232,160,32,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,160,32,0.15);
}
.services__icon {
  width: 52px;
  height: 52px;
  background: rgba(232,160,32,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}
.services__card:hover .services__icon {
  background: var(--gold);
}
.services__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  transition: stroke var(--transition);
}
.services__card:hover .services__icon svg {
  stroke: var(--white);
}
.services__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}
.services__card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ==============================
   PROJECTS
   ============================== */
.projects {
  padding: 7rem 2rem;
  background: var(--white);
}
.projects__container {
  max-width: 1200px;
  margin: 0 auto;
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.projects__card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.projects__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.projects__thumb {
  height: 220px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.projects__thumb--1 {
  background: linear-gradient(135deg, #1a4a2e 0%, #2d7a4e 100%);
  background-image: url('https://images.unsplash.com/photo-1448630360428-65456885c650?w=600&q=80');
  background-blend-mode: multiply;
  background-size: cover;
}
.projects__thumb--2 {
  background: linear-gradient(135deg, #2d4a1a 0%, #4e7a2d 100%);
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=600&q=80');
  background-blend-mode: multiply;
  background-size: cover;
}
.projects__thumb--3 {
  background: linear-gradient(135deg, #1a2d4a 0%, #2d4a7a 100%);
  background-image: url('https://images.unsplash.com/photo-1582407947304-fd86f28f958e?w=600&q=80');
  background-blend-mode: multiply;
  background-size: cover;
}
.projects__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.projects__badge--gold {
  background: var(--gold);
}
.projects__info {
  padding: 1.75rem;
  background: var(--white);
}
.projects__info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.projects__info p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.projects__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects__meta span {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.projects__link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--transition);
}
.projects__link:hover { color: var(--gold-dark); }

/* ==============================
   PROY FEATURED (index)
   ============================== */
.proy-featured {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(3,30,61,0.14);
  margin-top: 2.5rem;
}
.proy-featured__visual {
  position: relative;
}
.proy-featured__img {
  width: 100%;
  height: auto;
  display: block;
}
.proy-featured__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
}
.proy-featured__price-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(3,30,61,0.82);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.proy-featured__price-overlay span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.proy-featured__price-overlay strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.proy-featured__body {
  background: var(--navy);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.proy-featured__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.proy-featured__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.proy-featured__loc {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-bottom: 1rem;
}
.proy-featured__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.proy-featured__feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}
.proy-featured__feats li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
.proy-featured__feats li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.proy-featured__cd {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
}
.proy-featured__cd-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.proy-featured__cd-clock {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.proy-featured__cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.proy-featured__cd-num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.proy-featured__cd-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
}
.proy-featured__cd-sep {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.proy-featured__actions {
  display: flex;
  gap: 0.75rem;
}
.proy-featured__actions .btn {
  flex: 1;
  text-align: center;
  white-space: nowrap;
}
.proy-featured__wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.proy-featured__wa:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}
@media (max-width: 860px) {
  .proy-featured__body { grid-template-columns: 1fr; padding: 2rem 1.75rem; }
  .proy-featured__name { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .proy-featured__body { padding: 1.75rem 1.25rem; }
  .proy-featured__feats { grid-template-columns: 1fr; }
  .proy-featured__actions { flex-direction: column; }
}

/* ==============================
   CTA BAND
   ============================== */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-band__container {
  max-width: 680px;
  margin: 0 auto;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cta-band p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ==============================
   CONTACT
   ============================== */
.contact {
  padding: 7rem 2rem;
  background: var(--gray-100);
}
.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact__info p {
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}
.contact__details svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.contact__form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form__group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.form__group input,
.form__group select,
.form__group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
}
.form__privacy {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--navy);
  padding: 4rem 2rem 0;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__wordmark span {
  color: var(--gold);
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  margin: 0 0.1em;
}
.footer__links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__social h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer__social-icons {
  display: flex;
  gap: 0.85rem;
}
.footer__social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all var(--transition);
}
.footer__social-icons a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social-icons svg {
  width: 16px;
  height: 16px;
}
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .about__container { gap: 3rem; }
  .contact__container { gap: 3rem; }
  .footer__container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .navbar__nav,
  .navbar__cta { display: none; }
  .navbar__burger { display: flex; }

  .navbar__nav.open {
    display: flex;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(3,30,61,0.98);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(232,160,32,0.2);
  }
  .navbar__nav.open .navbar__links {
    flex-direction: column;
    gap: 0.25rem;
  }

  .about__container { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { order: -1; }

  .contact__container { grid-template-columns: 1fr; gap: 2.5rem; }

  .form__row { grid-template-columns: 1fr; }

  .footer__container { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .stats__divider { display: none; }
  .stats__cd-row { flex-direction: column; align-items: center; gap: 1rem; }
  .stats__cd-title, .stats__cd-lotes { white-space: normal; text-align: center; }

  .hero__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 500px) {
  .footer__container { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
}

/* ==============================
   WHATSAPP FLOTANTE
   ============================== */

/* Botón */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waEntrance 0.5s ease 1.2s both;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
.wa-float.active {
  transform: scale(1.05);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

/* Anillo de pulso */
.wa-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid #25D366;
  opacity: 0;
  animation: waPulse 2.5s ease-out 2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0;   }
}

/* Badge de notificación */
.wa-float__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #e53e3e;
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  animation: waBadge 0.4s ease 2s both;
}
@keyframes waBadge {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* Animación de entrada del botón */
@keyframes waEntrance {
  from { opacity: 0; transform: scale(0.4) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Mini tarjeta de chat */
.wa-card {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 998;
  width: 320px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.18);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-card.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Header de la tarjeta */
.wa-card__header {
  background: #075E54;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.wa-card__avatar {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-card__avatar svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255,255,255,0.9);
}
.wa-card__online {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #075E54;
}
.wa-card__meta {
  flex: 1;
  min-width: 0;
}
.wa-card__meta strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.wa-card__meta span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.72);
}
.wa-card__close {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.wa-card__close:hover { background: rgba(255,255,255,0.25); }
.wa-card__close svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
}

/* Cuerpo con burbuja */
.wa-card__body {
  padding: 1.25rem;
  background: #ECE5DD;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5b8ad' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.wa-card__bubble {
  background: var(--white);
  border-radius: 0 12px 12px 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  max-width: 90%;
}
.wa-card__bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border: 8px solid transparent;
  border-right-color: var(--white);
  border-top-color: var(--white);
}
.wa-card__bubble p {
  font-size: 0.875rem;
  color: #303030;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.wa-card__bubble p:last-of-type { margin-bottom: 0.5rem; }
.wa-card__time {
  display: block;
  text-align: right;
  font-size: 0.7rem;
  color: #999;
}

/* Botón de iniciar conversación */
.wa-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-card__cta:hover { background: #20b858; }

@media (max-width: 400px) {
  .wa-card { width: calc(100vw - 2rem); right: 1rem; }
  .wa-float { right: 1rem; bottom: 1.5rem; }
}

/* ==============================
   COUNTDOWN PREVENTA (global)
   ============================== */
.countdown-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 2.5rem 2rem;
  border-bottom: 3px solid var(--gold);
}
.countdown-band__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.countdown-band__left { flex: 1; min-width: 200px; }
.countdown-band__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.countdown-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.countdown-band__lotes {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
}
.countdown-band__lotes strong { color: var(--gold); }
.countdown-band__clock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  min-width: 72px;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.countdown-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.35rem;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.countdown-band__cta { white-space: nowrap; }
@media (max-width: 768px) {
  .countdown-band__container { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .countdown-unit { min-width: 58px; padding: 0.55rem 0.75rem; }
  .countdown-band__cta { align-self: stretch; text-align: center; }
}

/* ── CONTACT POPUP ── */
.cpopup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3,30,61,0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cpopup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cpopup {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2rem 2.25rem;
  width: 100%;
  max-width: 360px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  text-align: center;
}
.cpopup-overlay.open .cpopup {
  transform: translateY(0) scale(1);
}
.cpopup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(3,30,61,0.07);
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background 0.15s;
}
.cpopup__close:hover { background: rgba(3,30,61,0.14); color: var(--navy); }
.cpopup__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.cpopup__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.cpopup__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cpopup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  color: #fff;
}
.cpopup__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.cpopup__btn--wa  { background: #25D366; }
.cpopup__btn--fb  { background: #1877F2; }
.cpopup__btn--ig  { background: linear-gradient(45deg,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888); }

/* ── ANIMACIONES ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Entrada del hero principal (index) */
.hero__content > * { opacity: 0; animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.25s; }
.hero__content > *:nth-child(3) { animation-delay: 0.4s; }
.hero__content > *:nth-child(4) { animation-delay: 0.55s; }

/* Entrada del hero de páginas interiores */
.page-hero__content > * { opacity: 0; animation: heroFadeUp 0.75s cubic-bezier(0.16,1,0.3,1) forwards; }
.page-hero__content > *:nth-child(1) { animation-delay: 0.15s; }
.page-hero__content > *:nth-child(2) { animation-delay: 0.3s; }
.page-hero__content > *:nth-child(3) { animation-delay: 0.45s; }

/* Navbar entrada */
.navbar { animation: heroFadeIn 0.5s ease both; }

/* Scroll-reveal: estado inicial (JS añade estas clases) */
.will-anim {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.will-anim.anim-fade-up    { transform: translateY(36px); }
.will-anim.anim-slide-left { transform: translateX(24px); }
.will-anim.anim-slide-right{ transform: translateX(-24px); }
.will-anim.anim-scale-up   { transform: scale(0.88); }

/* Estado visible (JS añade .in cuando entra al viewport) */
.will-anim.in {
  opacity: 1;
  transform: none;
}

/* Preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .will-anim, .hero__content > *, .page-hero__content > * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
