 /* =========================================
     CSS VARIABLES & RESET
  ========================================= */
  :root {
    --cream:     #F5F0E8;
    --cream-mid: #EDE5D4;
    --gold:      #D8B64E;
    --gold-light:#F0D47A;
    --gold-pale: #F3E5B6;
    --dark-green:#003F3A;
    --dark:      #061715;
    --mid-dark:  #123E3A;
    --text-mid:  #5D6B66;
    --white:     #FFFFFF;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* Tipografías */
  .serif      { font-family: 'Cormorant Garamond', serif; }
  .gold-text  { color: var(--gold); }
  .cream-text { color: var(--cream); }

  /* =========================================
     NAVEGACIÓN FLOTANTE
  ========================================= */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #031311 0%, #003F3A 65%, #06211F 100%);
    border-bottom: 1px solid rgba(216,182,78,0.28);
    transition: all 0.3s ease;
  }

  .nav-logo img {
    height: 54px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
    display: block;
    border: 1px solid rgba(216,182,78,0.22);
    box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .btn-nav {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .btn-nav:hover {
    background: var(--gold);
    color: var(--dark);
  }

  /* =========================================
     HERO
  ========================================= */
  .hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  /*.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(0,31,28,0.78) 0%,
      rgba(0,63,58,0.55) 45%,
      rgba(0,63,58,0.18) 100%
    );
    z-index: 2;
  }*/

  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 1;
  }

  /* Grid de dos columnas dentro del hero */
  .hero-grid {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 7rem 5% 4rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3.5rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
  }

  .hero-content {
    /* fondo degradado sutil para anclar el texto */
    background: linear-gradient(to right, rgb(5 5 5 / 93%) 0%, rgba(14, 14, 12, 0.3) 80%, transparent 100%);
    padding: 2.5rem 2rem 2.5rem 0;
    margin-left: -1rem;
    padding-left: 1rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold-light);
    flex-shrink: 0;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
    text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    max-width: 480px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
    text-shadow: 0 1px 16px rgba(0,0,0,0.85), 0 2px 4px rgba(0,0,0,0.6);
  }

  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
  }

  .badge {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212,182,120,0.7);
    color: var(--white);
    background: rgba(20,20,18,0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-weight: 400;
  }

  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 1.1s forwards;
  }

  /* ---- Formulario en el hero (columna derecha) ---- */
  .hero-form-col {
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
  }

  .hero-form-box {
    background: rgba(20, 20, 18, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(184,154,90,0.3);
    padding: 2.2rem 2rem 1.8rem;
  }

  .hero-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 0.3rem;
  }

  .hero-form-sub {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 1.6rem;
  }

  .hf-group {
    margin-bottom: 0.9rem;
  }

  .hf-group label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.4rem;
  }

  .hf-group input,
  .hf-group select {
    width: 100%;
    padding: 0.72rem 0.9rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,154,90,0.18);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
  }

  .hf-group input:focus,
  .hf-group select:focus {
    border-color: rgba(184,154,90,0.7);
  }

  .hf-group input::placeholder {
    color: rgba(240,228,192,0.2);
  }

  .hf-group select option {
    background: #1a1a18;
    color: var(--cream);
  }
  
  .hf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.hf-row .hf-col label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.4rem;
}
@media (max-width: 480px) {
  .hf-row { grid-template-columns: 1fr; }
}

  .btn-hero-submit {
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.4rem;
  }
  .btn-hero-submit:hover { background: var(--gold-light); }

  .hero-form-disclaimer {
    font-size: 0.62rem;
    color: rgba(240,228,192,0.22);
    margin-top: 0.7rem;
    text-align: center;
    line-height: 1.5;
  }

  .btn-primary {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  .btn-secondary {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
  }

  /* Scroll hint */
  .scroll-hint {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
  }

  .scroll-hint span {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    writing-mode: vertical-rl;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(184,154,90,0.7), transparent);
    animation: scrollPulse 2s ease infinite;
  }

  /* =========================================
     STATS BAR
  ========================================= */
  .stats-bar {
    background: var(--dark);
    border-top: 1px solid rgba(184,154,90,0.3);
    border-bottom: 1px solid rgba(184,154,90,0.3);
    padding: 0;
  }

  .stats-inner {
    display: flex;
    overflow: hidden;
  }

  .stat-item {
    flex: 1;
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(184,154,90,0.15);
    transition: background 0.3s ease;
  }
  .stat-item:last-child { border-right: none; }
  .stat-item:hover { background: rgba(184,154,90,0.05); }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }

  /* =========================================
     SECCIÓN INTRO / PROPUESTA
  ========================================= */
  .section { padding: 6rem 5%; }

  .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }

  .section-title em {
    font-style: italic;
    color: var(--gold);
  }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .intro-text p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
  }

  .intro-text p strong {
    color: var(--dark);
    font-weight: 500;
  }

  .intro-img-wrap {
    position: relative;
  }

  .intro-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
  }

  .intro-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26,26,24,0.85), transparent);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
  }

  /* Decorative corner */
  .intro-img-wrap::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 80px; height: 80px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    z-index: 2;
  }

  .intro-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -16px; right: -16px;
    width: 80px; height: 80px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    z-index: 2;
  }

  /* =========================================
     VIDEO SECTION
  ========================================= */
  .video-section {
    position: relative;
    background: var(--dark);
    overflow: hidden;
  }

  .video-section video {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    opacity: 0.7;
  }

  .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,26,24,0.35);
  }

  .video-label {
    text-align: center;
  }

  .video-label p {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }

  .video-label h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
  }

  /* =========================================
     AMENITIES
  ========================================= */
  .amenities-section {
    background: var(--dark-green);
    padding: 6rem 5%;
  }

  .amenities-section .section-title {
    color: var(--cream);
  }

  .amenities-section .section-eyebrow {
    color: var(--gold-light);
  }
  .amenities-section .section-eyebrow::before {
    background: var(--gold-light);
  }

  .amenities-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
  }

  .amenities-intro p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(240,228,192,0.8);
  }

  .amenities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(184,154,90,0.15);
  }

  .amenity-card {
    background: rgba(43,59,46,0.9);
    padding: 2.5rem 2rem;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .amenity-card:hover { background: rgba(184,154,90,0.1); }

  .amenity-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .amenity-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold-light);
  }

  .amenity-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(240,228,192,0.75);
  }

  .amenity-card.highlight {
    background: rgba(184,154,90,0.12);
    border: 1px solid rgba(184,154,90,0.35);
  }

  .amenity-card.highlight .amenity-name {
    color: var(--gold);
  }

  .new-tag {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    background: var(--gold);
    color: var(--dark);
    margin-bottom: 0.2rem;
    align-self: flex-start;
  }

  /* =========================================
     GALERÍA IMÁGENES
  ========================================= */
  .gallery-section {
    padding: 6rem 5%;
    background: var(--cream);
  }

  .gallery-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
  }

  .gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .gal-1 { grid-column: 1 / 8; grid-row: 1; }
  .gal-2 { grid-column: 8 / 13; grid-row: 1; }
  .gal-3 { grid-column: 1 / 5; grid-row: 2; }
  .gal-4 { grid-column: 5 / 13; grid-row: 2; }

  .gal-item {
    overflow: hidden;
    position: relative;
  }

  .gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .gal-item:hover img { transform: scale(1.04); }

  .gal-1 img { height: 380px; }
  .gal-2 img { height: 380px; }
  .gal-3 img { height: 280px; }
  .gal-4 img { height: 280px; }

  /* =========================================
     FINANCIAMIENTO
  ========================================= */
  .finance-section {
    background: var(--dark);
    padding: 6rem 5%;
  }

  .finance-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .finance-content .section-title { color: var(--cream); }

  .finance-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(245,240,232,0.72);
    margin-bottom: 2.5rem;
  }

  .finance-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(184,154,90,0.2);
  }

  .finance-step {
    display: flex;
    align-items: center;
    padding: 1.4rem 2rem;
    border-bottom: 1px solid rgba(184,154,90,0.12);
    transition: background 0.3s;
  }
  .finance-step:last-child { border-bottom: none; }
  .finance-step:hover { background: rgba(184,154,90,0.05); }

  .step-label {
    flex: 1;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.75);
  }

  .step-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
  }

  .finance-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(245,240,232,0.3);
    letter-spacing: 0.05em;
    text-align: center;
  }

  .price-highlight {
    text-align: center;
    padding: 3rem;
    border: 1px solid rgba(184,154,90,0.3);
    background: rgba(184,154,90,0.05);
    margin-bottom: 2rem;
  }

  .price-from {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
    margin-bottom: 0.8rem;
  }

  .price-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .price-currency {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(245,240,232,0.5);
    vertical-align: super;
    margin-right: 0.2rem;
  }

  .price-sub {
    font-size: 0.75rem;
    color: rgba(245,240,232,0.35);
    letter-spacing: 0.1em;
  }

  /* =========================================
     AVANCE DE OBRA
  ========================================= */
  .progress-section {
    background: var(--cream-mid);
    padding: 6rem 5%;
  }

  .progress-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .progress-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: end;
  }

  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .tl-item {
    display: flex;
    gap: 2rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(107,99,88,0.2);
  }
  .tl-item:last-child { border-bottom: none; }

  .tl-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 4px;
  }

  .tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-mid);
    border: 2px solid var(--gold);
    flex-shrink: 0;
  }
  .tl-dot.active { background: var(--gold); }

  .tl-line {
    width: 1px;
    flex: 1;
    background: rgba(184,154,90,0.3);
    min-height: 30px;
  }

  .tl-content {
    flex: 1;
    padding-bottom: 0.5rem;
  }

  .tl-date {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
  }

  .tl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.3rem;
  }

  .tl-text {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
  }

  .progress-bars {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .prog-bar-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  .prog-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    width: 160px;
    flex-shrink: 0;
  }

  .prog-track {
    flex: 1;
    height: 3px;
    background: rgba(107,99,88,0.2);
    position: relative;
    overflow: hidden;
  }

  .prog-fill {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    background: var(--gold);
    transition: width 1.5s ease;
  }

  .prog-pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
    width: 48px;
    text-align: right;
    flex-shrink: 0;
  }

  /* =========================================
     VENTAJAS COMPETITIVAS
  ========================================= */
  .advantages-section {
    padding: 6rem 5%;
    background: var(--white);
  }

  .advantages-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .advantages-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(107,99,88,0.15);
  }

  .adv-item {
    padding: 2.5rem 1.8rem;
    border-right: 1px solid rgba(107,99,88,0.15);
    transition: background 0.3s;
    text-align: center;
  }
  .adv-item:last-child { border-right: none; }
  .adv-item:hover { background: var(--cream); }

  .adv-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }

  .adv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .adv-text {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
  }

  /* =========================================
     FORMULARIO / CTA PRINCIPAL
  ========================================= */
  .contact-section {
    background: var(--dark-green);
    padding: 7rem 5%;
  }

  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-left .section-title { color: var(--cream); }
  .contact-left .section-eyebrow { color: var(--gold-light); }
  .contact-left .section-eyebrow::before { background: var(--gold-light); }

  .contact-left p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(240,228,192,0.6);
    margin-bottom: 2rem;
  }

  .contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 1rem 1.4rem;
    border: 1px solid rgba(184,154,90,0.25);
    background: rgba(184,154,90,0.04);
    transition: all 0.3s ease;
    color: inherit;
  }
  .channel-item:hover {
    border-color: var(--gold);
    background: rgba(184,154,90,0.1);
    transform: translateX(4px);
  }

  .channel-icon {
    font-size: 1.2rem;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
  }

  .channel-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.15rem;
  }

  .channel-value {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--cream);
  }

  /* Formulario */
  .form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(184,154,90,0.2);
    padding: 2.5rem;
  }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
  }

  .form-subtitle {
    font-size: 0.82rem;
    color: rgba(240,228,192,0.45);
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(240,228,192,0.5);
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,154,90,0.2);
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(240,228,192,0.25);
  }

  .form-group select option {
    background: var(--dark-green);
    color: var(--cream);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 80px;
  }

  .btn-submit {
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 1.1rem 2rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
  }
  .btn-submit:hover { background: var(--gold-light); }

  .form-disclaimer {
    font-size: 0.68rem;
    color: rgba(240,228,192,0.28);
    margin-top: 0.8rem;
    line-height: 1.6;
    text-align: center;
  }

  /* =========================================
     FOOTER
  ========================================= */
  footer {
    background: linear-gradient(135deg, #031311 0%, #003F3A 65%, #06211F 100%);
    border-top: 1px solid rgba(184,154,90,0.15);
    padding: 3rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-logo img {
    height: 62px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
    border: 1px solid rgba(216,182,78,0.22);
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  }

  .footer-text {
    font-size: 0.72rem;
    color: rgba(245,240,232,0.3);
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1.8;
  }

  .footer-social {
    display: flex;
    gap: 1.2rem;
  }

  .footer-social a {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.35);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-social a:hover { color: var(--gold); }

  /* =========================================
     FLOATING WHATSAPP
  ========================================= */
  .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--dark-green);
    border: 1px solid var(--gold);
    padding: 0.85rem 1.4rem;
    text-decoration: none;
    color: var(--cream);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
  }
  .wa-float:hover {
    background: rgba(43,59,46,0.95);
    border-color: var(--gold-light);
    transform: translateY(-3px);
  }

  .wa-icon {
    width: 20px;
    height: 20px;
    fill: #25D366;
    flex-shrink: 0;
  }

  /* =========================================
     ANIMACIONES
  ========================================= */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }

  /* =========================================
     RESPONSIVE
  ========================================= */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }

    .hero-grid {
      grid-template-columns: 1fr;
      padding: 6rem 1.5rem 3rem;
      gap: 2rem;
    }

    .intro-grid,
    .finance-inner,
    .contact-inner,
    .progress-header,
    .amenities-header { grid-template-columns: 1fr; gap: 2.5rem; }

    .intro-img-wrap { order: -1; }
    .intro-img-wrap img { height: 320px; }

    .stats-inner {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) { border-right: none; }

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

    .adv-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .adv-item:nth-child(2) { border-right: none; }
    .adv-item { border-bottom: 1px solid rgba(107,99,88,0.15); }
    .adv-item:nth-child(3),
    .adv-item:nth-child(4) { border-bottom: none; }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .gal-1, .gal-2, .gal-3, .gal-4 {
      grid-column: auto;
      grid-row: auto;
    }
    .gal-1 img, .gal-2 img,
    .gal-3 img, .gal-4 img { height: 220px; }

    .section { padding: 4rem 1.5rem; }
    .amenities-section,
    .finance-section,
    .contact-section,
    .gallery-section,
    .advantages-section,
    .progress-section { padding: 4rem 1.5rem; }

    footer { flex-direction: column; text-align: center; }

    .wa-float { bottom: 1rem; right: 1rem; }
  }

  @media (max-width: 580px) {
    .nav-logo img { height: 44px; max-width: 165px; }
    .hero-title { font-size: 2.4rem; }
    .stat-item { padding: 1.4rem 0.8rem; }
    .stat-number { font-size: 1.7rem; }
    .amenities-grid { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: 1fr; }
    .adv-item { border-right: none; border-bottom: 1px solid rgba(107,99,88,0.15); }
    .adv-item:last-child { border-bottom: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gal-1 img, .gal-2 img, .gal-3 img, .gal-4 img { height: 240px; }
    .finance-steps { font-size: 0.9rem; }
    .hero-ctas { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    .wa-float span { display: none; }
    .wa-float { padding: 0.9rem; }
    /* canales contacto → 1 col en mobile */
    #contacto [style*="grid-template-columns:repeat(3"] {
      grid-template-columns: 1fr !important;
    }
  }


/* Ajustes DL Realty Group */
.nav-logo img { height: 72px; }
.amenity-card { position: relative; overflow: hidden; min-height: 260px; justify-content: flex-end; }
.amenity-photo { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transform:scale(1.04); transition:opacity .35s ease, transform .55s ease; z-index:0; }
.amenity-card::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(26,26,24,.92), rgba(43,59,46,.55)); opacity:0; transition:opacity .35s ease; z-index:1; }
.amenity-card:hover .amenity-photo, .amenity-card:focus-within .amenity-photo { opacity:1; transform:scale(1); }
.amenity-card:hover::after, .amenity-card:focus-within::after { opacity:1; }
.amenity-card > *:not(.amenity-photo) { position:relative; z-index:2; }
.typology-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.typology-card { background:var(--white); border:1px solid rgba(107,99,88,.12); }
.typology-card img { width:100%; height:360px; object-fit:cover; display:block; }
.typology-card h3 { font-size:1.55rem; font-weight:400; color:var(--dark); padding:1.4rem 1.5rem .4rem; }
.typology-card p { padding:0 1.5rem 1.5rem; font-size:.95rem; font-weight:300; line-height:1.7; color:var(--text-mid); }
@media (max-width:900px){ .typology-grid{ grid-template-columns:1fr; } }
@media (max-width:580px){ #contacto [style*="grid-template-columns:repeat(2"] { grid-template-columns:1fr !important; } }

.gallery-strip{
  max-width:1200px;
  margin:1.2rem auto 0;
  overflow-x:auto;
  padding-bottom:.6rem;
}

.gallery-strip-track{
  display:flex;
  gap:1rem;
  min-width:max-content;
}

.gallery-strip-track img{
  width:260px;
  height:170px;
  object-fit:cover;
  display:block;
  border:1px solid rgba(184,154,90,.22);
  transition:.35s ease;
}

.gallery-strip-track img:hover{
  transform:scale(1.03);
  border-color:var(--gold);
}

.gallery-strip::-webkit-scrollbar{
  height:6px;
}

.gallery-strip::-webkit-scrollbar-track{
  background:rgba(43,59,46,.12);
}

.gallery-strip::-webkit-scrollbar-thumb{
  background:var(--gold);
}

@media(max-width:580px){
  .gallery-strip-track img{
    width:220px;
    height:145px;
  }
}