/* ==========================================================================
   ALTO DESARROLLO — Landing de proyectos
   Un solo archivo, temas por variables CSS (.theme-esmeralda / .theme-country)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --font-display:'Fraunces', Georgia, serif;
  --font-body:'Inter', -apple-system, sans-serif;

  --container: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;

  --white: #ffffff;
  --ink: #16211a;
}

/* ---------- Tema Vista Esmeralda (costa / dunas / mar) ---------- */
.theme-esmeralda{
  --color-primary:#2f92a8;
  --color-primary-dark:#1f6c7d;
  --color-primary-light:#7fc4d6;
  --color-dark:#0e3446;
  --color-darker:#0a2634;
  --color-cream:#f2ede2;
  --color-cream-alt:#faf8f3;
  --color-text:#1c2f37;
  --color-muted:#5b6e73;
}

/* ---------- Tema Country Sport (campo / bosque / deporte) ---------- */
.theme-country{
  --color-primary:#c6a35c;
  --color-primary-dark:#a3813f;
  --color-primary-light:#e0c98c;
  --color-dark:#1c2c1c;
  --color-darker:#121e13;
  --color-cream:#f3f0e6;
  --color-cream-alt:#faf8f2;
  --color-text:#1c2417;
  --color-muted:#5e6656;
}

/* ---------- Reset base ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--color-text);
  background:var(--color-cream-alt);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
button{font-family:inherit;cursor:pointer;}
h1,h2,h3,h4{margin:0;font-family:var(--font-display);font-weight:500;color:var(--color-text);}
p{margin:0;}
:focus-visible{outline:2px solid var(--color-primary);outline-offset:3px;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:.001ms !important;transition-duration:.001ms !important;}
}

.container{max-width:var(--container);margin:0 auto;padding:0 28px;}
.display{font-family:var(--font-display);line-height:1.06;letter-spacing:-.01em;}
.eyebrow{
  font-size:.8rem;
  font-weight:600;
  color:var(--color-primary);
  margin:0 0 10px;
}
.section-title{font-size:clamp(1.7rem,3vw,2.5rem);margin-top:8px;max-width:20ch;}
.center{text-align:center;margin:0 auto 44px;max-width:640px;}
.center .section-title{margin-left:auto;margin-right:auto;}
.lead{color:var(--color-muted);font-size:1.05rem;margin-top:14px;}

/* ---------- Botones ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--color-primary);
  color:var(--white);
  border:1px solid var(--color-primary);
  padding:14px 24px;
  border-radius:var(--radius-sm);
  font-size:.92rem;
  font-weight:600;
  transition:background .2s ease, color .2s ease, transform .15s ease;
}
.btn:hover{background:var(--color-primary-dark);border-color:var(--color-primary-dark);}
.btn .arrow{transition:transform .2s ease;}
.btn:hover .arrow{transform:translateX(3px);}
.btn-outline{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,.55);
}
.btn-outline:hover{background:rgba(255,255,255,.12);border-color:#fff;}
.whatsapp-btn{background:var(--color-dark);border-color:var(--color-dark);}
.whatsapp-btn:hover{background:var(--color-darker);border-color:var(--color-darker);}
.whatsapp-btn img{width:18px;height:18px;filter:invert(1);}

/* ---------- Nav ---------- */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:22px 0;
}
.brand{
  font-family:var(--font-display);
  font-size:1.15rem;
  font-weight:600;
  color:var(--white);
  letter-spacing:.01em;
  line-height:1.1;
}
.brand small{display:block;font-family:var(--font-body);font-size:.55rem;font-weight:600;letter-spacing:.14em;color:rgba(255,255,255,.7);margin-top:2px;}
.nav-links{display:flex;align-items:center;gap:28px;}
.nav-links a{color:rgba(255,255,255,.88);font-size:.86rem;font-weight:500;transition:color .2s ease;}
.nav-links a:hover{color:var(--color-primary-light);}
.nav .btn{padding:11px 18px;font-size:.82rem;}
.menu{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.4);
  color:#fff;
  width:40px;height:40px;
  border-radius:var(--radius-sm);
  font-size:1.1rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.project-hero{
  position:relative;
  color:var(--white);
  background-size:cover;
  background-position:center;
  min-height:640px;
  display:flex;
  flex-direction:column;
}
.project-hero::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.12) 34%, rgba(0,0,0,.05) 55%, rgba(0,0,0,.55) 100%);
  z-index:0;
}
.project-hero .container{position:relative;z-index:1;flex:1;display:flex;flex-direction:column;}
.project-hero-esmeralda{
  background-image:linear-gradient(180deg, rgba(9,38,52,.35), rgba(9,38,52,.1) 40%, rgba(9,38,52,.65)), url('../assets/images/hero-esmeralda.jpg');
}
.project-hero-country{
  background-image:linear-gradient(180deg, rgba(18,30,19,.3), rgba(18,30,19,.05) 40%, rgba(18,30,19,.7)), url('../assets/images/hero-country.jpg');
}

.project-hero-copy{
  max-width:640px;
  padding:56px 0 64px;
}
.project-hero-copy .eyebrow{color:var(--color-primary-light);text-transform:uppercase;letter-spacing:.08em;font-size:.72rem;}
.project-hero-copy h1{font-size:clamp(2.4rem,5vw,3.6rem);}
.project-hero-copy h1 em{font-style:italic;color:var(--color-primary-light);}
.project-hero-copy p{margin-top:16px;font-size:1.05rem;color:rgba(255,255,255,.88);max-width:46ch;}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px;}

/* Ficha de datos flotante */
.hero-stats{
  position:absolute;
  right:28px;
  top:190px;
  width:220px;
  background:rgba(10,22,26,.62);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius-md);
  padding:6px 22px;
  z-index:1;
}
.hero-stats li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.hero-stats li:last-child{border-bottom:none;}
.hero-stats .ic{flex:none;width:20px;height:20px;color:var(--color-primary-light);}
.hero-stats strong{display:block;font-size:.95rem;font-weight:700;}
.hero-stats span{display:block;font-size:.68rem;letter-spacing:.06em;color:rgba(255,255,255,.7);text-transform:uppercase;margin-top:2px;}

@media (max-width: 860px){
  .hero-stats{position:static;width:100%;margin-top:28px;padding:4px 20px;}
}

/* ---------- Barra de datos bajo el hero ---------- */
.stats-bar{
  background:var(--color-cream);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.stats-bar ul{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}
.stats-bar li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:40px 20px;
  border-left:1px solid rgba(0,0,0,.08);
}
.stats-bar li:first-child{border-left:none;}
.stats-bar .ic{flex:none;width:22px;height:22px;color:var(--color-primary);}
.stats-bar strong{display:block;font-size:.82rem;font-weight:700;letter-spacing:.02em;}
.stats-bar span{display:block;font-size:.7rem;color:var(--color-muted);letter-spacing:.03em;margin-top:2px;}
@media (max-width:760px){
  .stats-bar ul{grid-template-columns:repeat(2,1fr);}
  .stats-bar li:nth-child(3){border-left:none;}
}

/* ==========================================================================
   SECCIONES DE CONTENIDO (texto + imagen, reutilizable)
   ========================================================================== */
.project-overview{padding:80px 0;}
.project-overview-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:56px;
  align-items:center;
}
/* usar cuando el primer hijo en el HTML es la imagen (queda a la izquierda) */
.project-overview-grid.media-left{grid-template-columns:1.15fr .85fr;}
.project-description p{color:var(--color-muted);margin-top:14px;}
.project-overview img,
.project-overview .overview-media img{border-radius:var(--radius-md);}
.overview-points{display:flex;gap:26px;margin-top:26px;flex-wrap:wrap;}
.overview-points li{max-width:130px;}
.overview-points .ic{display:block;width:22px;height:22px;color:var(--color-primary);margin-bottom:8px;}
.overview-points strong{display:block;font-size:.78rem;letter-spacing:.03em;text-transform:uppercase;}
.overview-points p{font-size:.82rem;color:var(--color-muted);margin-top:4px;}

@media (max-width:860px){
  .project-overview-grid,
  .project-overview-grid.media-left{grid-template-columns:1fr;}
}

/* ---------- Banda oscura de amenidades (galería con overlay) ---------- */
.amenities-band{
  background:linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
  padding:70px 0;
  color:var(--white);
}
.theme-country .amenities-band{background:var(--color-dark);}
.amenities-band .eyebrow{color:rgba(255,255,255,.75);}
.amenities-band h2{color:var(--white);}
.amenities-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:4px;
  margin-top:36px;
}
.amenity-card{
  position:relative;
  aspect-ratio:3/4;
  border-radius:var(--radius-sm);
  overflow:hidden;
}
.amenity-card img{width:100%;height:100%;object-fit:cover;}
.amenity-card::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.75) 100%);
}
.amenity-label{
  position:absolute;left:12px;right:12px;bottom:12px;z-index:1;
  color:#fff;
}
.amenity-label .ic{width:16px;height:16px;color:var(--color-primary-light);margin-bottom:4px;}
.amenity-label strong{display:block;font-size:.72rem;letter-spacing:.03em;}
.amenity-label span{display:block;font-size:.6rem;color:rgba(255,255,255,.75);margin-top:2px;}
@media (max-width:900px){.amenities-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:540px){.amenities-grid{grid-template-columns:repeat(2,1fr);}}

/* ---------- Features / valores (banda oscura, ícono + texto) ---------- */
.project-features{
  background:var(--color-dark);
  color:var(--white);
  padding:64px 0;
}
.project-features .eyebrow{color:rgba(255,255,255,.7);}
.project-features h2{color:var(--white);}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
  margin-top:40px;
}
.feature-card .ic{width:30px;height:30px;color:var(--color-primary-light);margin-bottom:16px;}
.feature-card h3{font-size:1rem;color:var(--white);font-family:var(--font-body);font-weight:600;}
.feature-card p{margin-top:8px;font-size:.85rem;color:rgba(255,255,255,.68);}
@media (max-width:860px){.feature-grid{grid-template-columns:repeat(2,1fr);gap:28px 24px;}}
@media (max-width:520px){.feature-grid{grid-template-columns:1fr;}}

/* variante clara (sustentabilidad) */
.project-features.light{background:var(--color-cream);color:var(--color-text);}
.project-features.light h2,
.project-features.light .feature-card h3{color:var(--color-text);}
.project-features.light .feature-card .ic{color:var(--color-primary);}
.project-features.light .feature-card p{color:var(--color-muted);}
.sustainability-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;flex-wrap:wrap;margin-bottom:36px;}
.sustainability-head .section-title{margin-bottom:0;}
.sustainability-head .btn{background:transparent;color:var(--color-text);border-color:rgba(0,0,0,.2);}
.sustainability-head .btn:hover{background:var(--color-dark);border-color:var(--color-dark);color:#fff;}
.feature-grid.cols-5{grid-template-columns:repeat(5,1fr);}
@media (max-width:900px){.feature-grid.cols-5{grid-template-columns:repeat(3,1fr);}}
@media (max-width:560px){.feature-grid.cols-5{grid-template-columns:repeat(2,1fr);}}

/* ---------- Galería simple (grid de fotos) ---------- */
.project-gallery{padding:80px 0;}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:8px;
}
.gallery-item{position:relative;border-radius:var(--radius-md);overflow:hidden;aspect-ratio:4/3;}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease;}
.gallery-item:hover img{transform:scale(1.04);}
.gallery-caption{
  position:absolute;left:0;right:0;bottom:0;
  padding:14px 16px;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.7));
  color:#fff;font-size:.78rem;font-weight:600;letter-spacing:.02em;
}
@media (max-width:760px){.gallery-grid{grid-template-columns:repeat(2,1fr);}}

.mini-gallery{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.mini-gallery .gallery-item{aspect-ratio:1/1;}

/* ---------- Video ---------- */
.project-video-section{padding:80px 0;background:var(--color-cream-alt);}
.video-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:48px;align-items:center;}
.project-video{width:100%;border-radius:var(--radius-md);background:#000;}
@media (max-width:860px){.video-grid{grid-template-columns:1fr;}}

/* ---------- Ubicación / mapa ---------- */
.project-location{padding:0;}
.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:460px;
}
.location-copy{
  background:var(--color-dark);
  color:var(--white);
  padding:64px 56px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.location-copy .eyebrow{color:var(--color-primary-light);}
.location-copy h2{color:var(--white);}
.location-copy p{color:rgba(255,255,255,.78);margin-top:14px;}
.location-points{display:flex;gap:24px;margin-top:22px;flex-wrap:wrap;}
.location-points li{display:flex;align-items:center;gap:8px;font-size:.82rem;color:rgba(255,255,255,.85);}
.location-points .ic{width:16px;height:16px;color:var(--color-primary-light);}
.location-copy .btn{margin-top:26px;align-self:flex-start;}
.location-media{position:relative;}
.location-media img{width:100%;height:100%;object-fit:cover;}
.map-tag{
  position:absolute;top:24px;right:24px;
  display:flex;align-items:center;gap:8px;
  background:var(--color-dark);color:#fff;
  font-family:var(--font-display);font-weight:600;font-size:.85rem;
  padding:10px 16px;border-radius:var(--radius-sm);
}
.map-tag .ic{width:15px;height:15px;color:var(--color-primary-light);}
.theme-country .location-copy{background:var(--color-cream);color:var(--color-text);}
.theme-country .location-copy h2{color:var(--color-text);}
.theme-country .location-copy p{color:var(--color-muted);}
.theme-country .location-copy .eyebrow{color:var(--color-primary-dark);}
.theme-country .location-points li{color:var(--color-text);}
.theme-country .location-points .ic{color:var(--color-primary-dark);}
@media (max-width:860px){.location-grid{grid-template-columns:1fr;}.location-copy{padding:48px 28px;}}

/* ---------- Reconocimiento / respaldo ---------- */
.recognition{padding:64px 0;background:var(--color-cream-alt);border-top:1px solid rgba(0,0,0,.06);}
.recognition-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  margin-top:28px;
  flex-wrap:wrap;
}
.recognition-logo{
  font-family:var(--font-body);
  font-weight:700;
  font-size:.82rem;
  letter-spacing:.03em;
  color:var(--color-muted);
  padding:10px 18px;
  border:1px solid rgba(0,0,0,.1);
  border-radius:var(--radius-sm);
}

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact{
  background:var(--color-dark);
  color:var(--white);
  padding:88px 0;
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.contact .eyebrow{color:var(--color-primary-light);}
.contact h2{color:var(--white);font-size:clamp(1.8rem,3vw,2.4rem);max-width:14ch;}
.contact-copy{color:rgba(255,255,255,.78);margin-top:14px;max-width:44ch;}
.contact .whatsapp-btn{margin-top:28px;background:var(--color-primary);border-color:var(--color-primary);}
.contact .whatsapp-btn:hover{background:var(--color-primary-dark);border-color:var(--color-primary-dark);}

.form{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-md);
  padding:32px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 16px;
}
.form label{
  grid-column:span 2;
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,.6);
  margin-bottom:-10px;
}
.form input,.form select{
  grid-column:span 2;
  background:transparent;
  border:none;
  border-bottom:1px solid rgba(255,255,255,.3);
  color:#fff;
  font-family:inherit;
  font-size:.92rem;
  padding:8px 2px;
}
.form input::placeholder{color:rgba(255,255,255,.4);}
.form select{color:#fff;}
.form select option{color:#111;}
.form input:focus,.form select:focus{outline:none;border-bottom-color:var(--color-primary-light);}
.form .btn{grid-column:span 2;margin-top:12px;justify-content:center;}
.form .message{grid-column:span 2;font-size:.82rem;color:var(--color-primary-light);min-height:1em;}
@media (max-width:860px){.contact-grid{grid-template-columns:1fr;}}
@media (max-width:520px){
  .form{grid-template-columns:1fr;padding:24px;}
  .form label,.form input,.form select,.form .btn,.form .message{grid-column:1;}
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer{
  background:var(--color-darker);
  color:rgba(255,255,255,.62);
  padding:56px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:32px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
footer .brand{color:#fff;}
.footer-desc{margin-top:14px;font-size:.85rem;max-width:32ch;}
.footer-grid h4{
  color:#fff;font-family:var(--font-body);font-size:.76rem;
  letter-spacing:.06em;text-transform:uppercase;margin-bottom:14px;font-weight:600;
}
.footer-grid a,.footer-grid p{display:block;font-size:.86rem;margin-bottom:10px;color:rgba(255,255,255,.62);}
.footer-grid a:hover{color:#fff;}
.footer-social{display:flex;gap:10px;margin-top:16px;}
.footer-social a{
  width:32px;height:32px;border:1px solid rgba(255,255,255,.25);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.footer-social svg{width:15px;height:15px;}
.footer-social a:hover{border-color:#fff;}
.legal{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;
  padding-top:20px;font-size:.72rem;letter-spacing:.03em;color:rgba(255,255,255,.4);
}
@media (max-width:860px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:520px){.footer-grid{grid-template-columns:1fr;}}

/* ---------- Botón flotante WhatsApp ---------- */
.wa{
  position:fixed;right:20px;bottom:20px;z-index:40;
  width:54px;height:54px;border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}
.wa img{width:26px;height:26px;filter:invert(1) brightness(2);}

/* ---------- Nav responsive ---------- */
@media (max-width:860px){
  .nav-links{
    position:absolute;top:100%;left:0;right:0;
    background:var(--color-darker);
    flex-direction:column;
    align-items:flex-start;
    padding:18px 28px;
    gap:16px;
    display:none;
  }
  .nav-links.open{display:flex;}
  .menu{display:flex;align-items:center;justify-content:center;}
  .nav .btn{display:none;}
}
/* ==========================================================================
   VISTA ESMERALDA — MODIFICACIONES ESPECÍFICAS
   Estas reglas no deben afectar a otras páginas/proyectos.
   ========================================================================== */
   /* ==========================================================================
   VISTA ESMERALDA — CARRUSEL Y LOGO
   BLOQUE AISLADO — NO AFECTA A OTROS PROYECTOS
   ========================================================================== */

/* --------------------------------------------------------------------------
   LOGO
   -------------------------------------------------------------------------- */

.esmeralda-brand-logo {
  display: flex;
  align-items: center;
  height: 80%;
  padding: 0;
}

.esmeralda-brand-logo img {
  width: 300px;
  height: auto;
  display: block;
}

.theme-esmeralda .esmeralda-footer-logo {
  display: inline-flex;
  align-items: center;
}

.theme-esmeralda .esmeralda-footer-logo img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 180px;
  object-fit: contain;
}


/* --------------------------------------------------------------------------
   HERO — CARRUSEL
   -------------------------------------------------------------------------- */

.theme-esmeralda .project-hero-esmeralda {
  overflow: hidden;
  background-image: none;
}


/* Imágenes del carrusel */

.theme-esmeralda .project-hero-esmeralda .esmeralda-hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.theme-esmeralda .project-hero-esmeralda .esmeralda-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

.theme-esmeralda .project-hero-esmeralda .esmeralda-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.theme-esmeralda .project-hero-esmeralda .esmeralda-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* Overlay del hero por encima de las imágenes */

.theme-esmeralda .project-hero-esmeralda::before {
  z-index: 1;
}


/* Contenido del hero */

.theme-esmeralda .project-hero-esmeralda .container {
  position: relative;
  z-index: 2;
}


/* --------------------------------------------------------------------------
   CONTROLES DEL CARRUSEL
   -------------------------------------------------------------------------- */

.theme-esmeralda .project-hero-esmeralda .esmeralda-hero-carousel-controls {
  position: absolute;
  right: 32px;
  bottom: 30px;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-esmeralda .project-hero-esmeralda
.esmeralda-hero-carousel-prev,

.theme-esmeralda .project-hero-esmeralda
.esmeralda-hero-carousel-next {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;

  background: rgba(0,0,0,.18);
  color: #fff;

  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  backdrop-filter: blur(5px);

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.theme-esmeralda .project-hero-esmeralda
.esmeralda-hero-carousel-prev:hover,

.theme-esmeralda .project-hero-esmeralda
.esmeralda-hero-carousel-next:hover {
  background: rgba(0,0,0,.38);
  border-color: rgba(255,255,255,.9);
  transform: scale(1.05);
}


/* --------------------------------------------------------------------------
   INDICADORES
   -------------------------------------------------------------------------- */

.theme-esmeralda .project-hero-esmeralda
.esmeralda-hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.theme-esmeralda .project-hero-esmeralda
.esmeralda-hero-carousel-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(255,255,255,.55);

  cursor: pointer;

  transition:
    width .25s ease,
    background .25s ease;
}

.theme-esmeralda .project-hero-esmeralda
.esmeralda-hero-carousel-dot.is-active {
  width: 22px;
  border-radius: 10px;
  background: #fff;
}


/* --------------------------------------------------------------------------
   MOBILE
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {

  .theme-esmeralda .esmeralda-brand-logo img {
    height: 48px;
    max-width: 155px;
  }

  .theme-esmeralda .project-hero-esmeralda
  .esmeralda-hero-carousel-controls {
    right: 18px;
    bottom: 20px;
    gap: 8px;
  }

  .theme-esmeralda .project-hero-esmeralda
  .esmeralda-hero-carousel-prev,

  .theme-esmeralda .project-hero-esmeralda
  .esmeralda-hero-carousel-next {
    width: 36px;
    height: 36px;
    font-size: 23px;
  }

  .theme-esmeralda .project-hero-esmeralda
  .esmeralda-hero-carousel-dot {
    width: 6px;
    height: 6px;
  }

  .theme-esmeralda .project-hero-esmeralda
  .esmeralda-hero-carousel-dot.is-active {
    width: 18px;
  }

  .theme-esmeralda .esmeralda-footer-logo img {
    height: 45px;
    max-width: 155px;
  }

}


/* --------------------------------------------------------------------------
   REDUCIR ANIMACIONES SI EL USUARIO LO SOLICITA
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .theme-esmeralda .project-hero-esmeralda
  .esmeralda-hero-slide {
    transition: none;
  }

}
/* =========================================================
   VIDEO — VISTA ESMERALDA
   Estilos exclusivos de esta página
   ========================================================= */

.theme-esmeralda .esmeralda-video-section {
  padding: 100px 0;
  background: #f7f7f5;
}

.theme-esmeralda .esmeralda-video-heading {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.theme-esmeralda .esmeralda-video-heading .section-eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
}

.theme-esmeralda .esmeralda-video-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  color: #1d1d1b;
}

.theme-esmeralda .esmeralda-video-heading p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: #666;
}

/* Contenedor del video */
.theme-esmeralda .esmeralda-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Video */
.theme-esmeralda .esmeralda-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .theme-esmeralda .esmeralda-video-section {
    padding: 80px 0;
  }

  .theme-esmeralda .esmeralda-video-heading {
    margin-bottom: 35px;
    padding: 0 20px;
  }

  .theme-esmeralda .esmeralda-video-wrapper {
    border-radius: 14px;
  }

}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .theme-esmeralda .esmeralda-video-section {
    padding: 65px 0;
  }

  .theme-esmeralda .esmeralda-video-heading {
    margin-bottom: 28px;
    padding: 0 18px;
  }

  .theme-esmeralda .esmeralda-video-heading h2 {
    font-size: 32px;
  }

  .theme-esmeralda .esmeralda-video-heading p {
    font-size: 15px;
    line-height: 1.6;
  }

  .theme-esmeralda .esmeralda-video-wrapper {
    border-radius: 10px;
  }

}
/* =========================================================
   VIDEO — VISTA ESMERALDA
   ========================================================= */

.theme-esmeralda .esmeralda-video-section {
  padding: 100px 0;
  background: #e7f3f2;
}

.theme-esmeralda .esmeralda-video-heading {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.theme-esmeralda .esmeralda-video-heading .section-eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3f9c9a;
}

.theme-esmeralda .esmeralda-video-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  color: #1d1d1b;
}

.theme-esmeralda .esmeralda-video-heading p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: #666;
}

.theme-esmeralda .esmeralda-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.theme-esmeralda .esmeralda-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}

@media (max-width: 900px) {
  .theme-esmeralda .esmeralda-video-section {
    padding: 80px 0;
  }

  .theme-esmeralda .esmeralda-video-heading {
    margin-bottom: 35px;
    padding: 0 20px;
  }

  .theme-esmeralda .esmeralda-video-wrapper {
    border-radius: 14px;
  }
}

@media (max-width: 600px) {
  .theme-esmeralda .esmeralda-video-section {
    padding: 65px 0;
  }

  .theme-esmeralda .esmeralda-video-heading {
    margin-bottom: 28px;
    padding: 0 18px;
  }

  .theme-esmeralda .esmeralda-video-heading h2 {
    font-size: 32px;
  }

  .theme-esmeralda .esmeralda-video-heading p {
    font-size: 15px;
    line-height: 1.6;
  }

  .theme-esmeralda .esmeralda-video-wrapper {
    border-radius: 10px;
  }
}
/* =========================================================
   OVERVIEW — VISTA ESMERALDA
   Ajuste específico para "Un entorno extraordinario"
   ========================================================= */

.theme-esmeralda .project-overview {
  padding: 110px 0;
}

.theme-esmeralda .project-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
}

/* Texto */

.theme-esmeralda .project-overview-grid > div:first-child {
  max-width: 620px;
}

.theme-esmeralda .project-overview .eyebrow {
  margin-bottom: 16px;
}

.theme-esmeralda .project-overview .section-title {
  max-width: 600px;
  margin-bottom: 28px;
}

.theme-esmeralda .project-overview .project-description {
  max-width: 570px;
  margin-bottom: 35px;
}

.theme-esmeralda .project-overview .project-description p {
  line-height: 1.75;
}

/* Imagen */

.theme-esmeralda .project-overview .overview-media {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  border-radius: 18px;
}

.theme-esmeralda .project-overview .overview-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .theme-esmeralda .project-overview {
    padding: 85px 0;
  }

  .theme-esmeralda .project-overview-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .theme-esmeralda .project-overview-grid > div:first-child {
    max-width: 720px;
  }

  .theme-esmeralda .project-overview .overview-media {
    height: 520px;
  }

}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .theme-esmeralda .project-overview {
    padding: 65px 0;
  }

  .theme-esmeralda .project-overview-grid {
    gap: 35px;
  }

  .theme-esmeralda .project-overview .section-title {
    margin-bottom: 22px;
  }

  .theme-esmeralda .project-overview .project-description {
    margin-bottom: 28px;
  }

  .theme-esmeralda .project-overview .project-description p {
    font-size: 15px;
    line-height: 1.7;
  }

  .theme-esmeralda .project-overview .overview-media {
    height: 390px;
    border-radius: 12px;
  }

}
/* VISTA ESMERALDA — 5 AMENIDADES A TODO EL ANCHO */
.theme-esmeralda .amenities-grid{
  grid-template-columns:repeat(5, minmax(0, 1fr));
  width:100%;
}

.theme-esmeralda .amenity-card{
  width:100%;
  min-width:0;
}

@media (max-width:900px){
  .theme-esmeralda .amenities-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}

@media (max-width:540px){
  .theme-esmeralda .amenities-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}
/* VISTA ESMERALDA — EYEBROW SUSTENTABILIDAD */
.theme-esmeralda .project-features.light .eyebrow{
  color:var(--color-primary);
}
/* =========================================
   VISTA ESMERALDA — RESPALDO Y RECONOCIMIENTO
   ========================================= */

.theme-esmeralda .recognition{
  background:#f3f0e8;
  color:var(--color-dark);
  padding:100px 0;
}

.theme-esmeralda .recognition-header{
  width:100%;
  max-width:900px;
  margin:0 auto 55px;
  padding:0 20px;
  text-align:center;
  box-sizing:border-box;
}

.theme-esmeralda .recognition-header .eyebrow,
.theme-esmeralda .recognition-header .section-title{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.theme-esmeralda .recognition-header .eyebrow{
  color:var(--color-primary);
  margin-bottom:16px;
}

.theme-esmeralda .recognition-header .section-title{
  color:var(--color-dark);
  margin-bottom:0;
}


/* BLOQUES SUPERIORES */

.theme-esmeralda .recognition-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:24px;
}


/* BLOQUE LEY */

.theme-esmeralda .recognition-main{
  position:relative;
  padding:55px;
  background:var(--color-primary-dark);
  color:#fff;
  border-radius:var(--radius-sm);
  overflow:hidden;
}

.theme-esmeralda .recognition-number{
  font-size:clamp(3rem,6vw,5.5rem);
  line-height:1;
  letter-spacing:-.06em;
  font-weight:500;
  color:var(--color-primary-light);
  margin-bottom:45px;
}

.theme-esmeralda .recognition-main .eyebrow{
  color:rgba(255,255,255,.6);
  margin-bottom:12px;
}

.theme-esmeralda .recognition-main h3{
  color:#fff;
  font-size:clamp(1.6rem,3vw,2.35rem);
  line-height:1.15;
  font-weight:500;
  margin:0 0 20px;
}

.theme-esmeralda .recognition-main > p:not(.eyebrow){
  color:rgba(255,255,255,.75);
  font-size:.9rem;
  line-height:1.75;
  margin-bottom:28px;
  max-width:520px;
}

.theme-esmeralda .recognition-main .text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-size:.78rem;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.35);
  padding-bottom:6px;
}


/* BLOQUE PREMIO */

.theme-esmeralda .recognition-award{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:55px;
  background:#fff;
  border:1px solid rgba(20,35,32,.08);
  border-radius:var(--radius-sm);
}

.theme-esmeralda .recognition-award .eyebrow{
  color:var(--color-primary);
  margin-bottom:14px;
}

.theme-esmeralda .recognition-award h3{
  color:var(--color-dark);
  font-size:clamp(1.55rem,2.5vw,2.15rem);
  line-height:1.2;
  font-weight:500;
  margin:0 0 18px;
  max-width:500px;
}

.theme-esmeralda .award-text{
  color:rgba(20,35,32,.65);
  font-size:.85rem;
  line-height:1.7;
  max-width:470px;
  margin:0 0 30px;
}

.theme-esmeralda .award-logo{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-height:90px;
}

.theme-esmeralda .award-logo img{
  display:block;
  max-width:210px;
  max-height:90px;
  width:auto;
  height:auto;
  object-fit:contain;
}


/* SEPARADOR */

.theme-esmeralda .recognition-divider{
  height:1px;
  background:rgba(20,35,32,.12);
  margin:55px 0 35px;
}


/* FRANJA INSTITUCIONAL */

.theme-esmeralda .recognition-institutions{
  width:100%;
}

.theme-esmeralda .recognition-institutions > .eyebrow{
  color:var(--color-primary);
  text-align:center;
  margin-bottom:25px;
}

.theme-esmeralda .recognition-institutions .certification-logos{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}

.theme-esmeralda .recognition-institutions .certification-logo{
  min-height:100px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 20px;
  background:#fff;
  border:1px solid rgba(20,35,32,.08);
  border-radius:6px;
}

.theme-esmeralda .recognition-institutions .certification-logo img{
  display:block;
  width:auto;
  height:auto;
  max-width:145px;
  max-height:58px;
  object-fit:contain;
}


/* TABLET */

@media (max-width:900px){

  .theme-esmeralda .recognition{
    padding:75px 0;
  }

  .theme-esmeralda .recognition-grid{
    grid-template-columns:1fr;
  }

  .theme-esmeralda .recognition-main,
  .theme-esmeralda .recognition-award{
    padding:45px;
  }

  .theme-esmeralda .recognition-institutions .certification-logos{
    grid-template-columns:repeat(3,1fr);
  }

}


/* MÓVIL */

@media (max-width:540px){

  .theme-esmeralda .recognition{
    padding:60px 0;
  }

  .theme-esmeralda .recognition-header{
    margin-bottom:40px;
  }

  .theme-esmeralda .recognition-main,
  .theme-esmeralda .recognition-award{
    padding:35px 28px;
  }

  .theme-esmeralda .recognition-number{
    margin-bottom:35px;
  }

  .theme-esmeralda .recognition-institutions .certification-logos{
    grid-template-columns:repeat(2,1fr);
    gap:8px;
  }

  .theme-esmeralda .recognition-institutions .certification-logo{
    min-height:90px;
    padding:14px;
  }

  .theme-esmeralda .recognition-institutions .certification-logo img{
    max-width:110px;
    max-height:50px;
  }

}
/* Logo Vista Esmeralda en el footer */
.theme-esmeralda .footer-esmeralda-logo{
  display:inline-flex;
  align-items:center;
}

.theme-esmeralda .footer-esmeralda-logo img{
  display:block;
  width:auto;
  height:105px;
  max-width:220px;
  object-fit:contain;
}
#video-esmeralda {
  scroll-margin-top: 180px;
}
/* ---------- FORMULARIO PREMIUM VISTA ESMERALDA ---------- */

.contact .form {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  padding: 42px 40px;
  border-radius: 4px;
  border: 1px solid rgba(31, 58, 43, 0.16);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Línea superior decorativa */
.contact .form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: var(--color-primary);
}

/* Etiquetas */
.contact .form label {
  display: block;
  margin-bottom: 9px;
  color: #17251d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Campos */
.contact .form input,
.contact .form select {
  width: 100%;
  height: 52px;
  box-sizing: border-box;
  margin-bottom: 22px;
  padding: 0 16px;

  background: #f7f8f6;
  border: 1px solid rgba(23, 37, 29, 0.16);
  border-radius: 3px;

  color: #17251d;
  font-family: inherit;
  font-size: 0.92rem;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

/* Placeholder */
.contact .form input::placeholder {
  color: #7c837e;
}

/* Campo activo */
.contact .form input:focus,
.contact .form select:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(31, 58, 43, 0.07);
}

/* Botón */
.contact .form button {
  width: 100%;
  min-height: 54px;
  margin-top: 3px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: none;
  border-radius: 3px;

  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact .form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

/* Mensaje */
.contact .form .message {
  margin-top: 16px;
  color: #34483b;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 760px) {
  .contact .form {
    padding: 32px 24px;
  }
}
/* =========================================================
   VISTA ESMERALDA
   PERSONALIZACIÓN DEL TEXTO SEGÚN CADA FOTO DEL HERO
   ========================================================= */

.project-hero-esmeralda .hero-title-esmeralda {
  transition:
    color 0.4s ease,
    text-shadow 0.4s ease,
    transform 0.4s ease;
}


/* FOTO 1
   Foto principal de Vista Esmeralda
--------------------------------------------------------- */

.project-hero-esmeralda.hero-slide-1
.hero-title-esmeralda {
  color: #ffffff;
  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.75),
    0 8px 30px rgba(0, 0, 0, 0.45);
}

.project-hero-esmeralda.hero-slide-1
.hero-title-esmeralda em {
  color: #dce8c8;
}


/* FOTO 2
   portada-vista-esmeralda-2.jpg
--------------------------------------------------------- */

.project-hero-esmeralda.hero-slide-2
.hero-title-esmeralda {
  color: #ffffff;
  text-shadow:
    0 3px 16px rgba(0, 0, 0, 0.85),
    0 8px 30px rgba(0, 0, 0, 0.55);
}

.project-hero-esmeralda.hero-slide-2
.hero-title-esmeralda em {
  color: #e3edcf;
}


/* FOTO 3
   carrusel-1.png
--------------------------------------------------------- */

.project-hero-esmeralda.hero-slide-3
.hero-title-esmeralda {
  color: #263b31;
  text-shadow:
    0 2px 8px rgba(255, 255, 255, 0.9),
    0 4px 18px rgba(255, 255, 255, 0.6);
}

.project-hero-esmeralda.hero-slide-3
.hero-title-esmeralda em {
  color: #4f705b;
}


/* FOTO 4
   carrusel-2.png
--------------------------------------------------------- */

.project-hero-esmeralda.hero-slide-4
.hero-title-esmeralda {
  color: #ffffff;
  text-shadow:
    0 3px 15px rgba(0, 0, 0, 0.85),
    0 8px 30px rgba(0, 0, 0, 0.55);
}

.project-hero-esmeralda.hero-slide-4
.hero-title-esmeralda em {
  color: #dfeccf;
}
/* ===== ETIQUETA PROYECTO ACTUAL · LONGOTOMA ===== */

@media (max-width: 768px) {

  .project-hero-esmeralda .hero-location {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;

    padding: 8px 14px !important;
    margin-bottom: 16px !important;

    color: #ffffff !important;
    background: rgba(15, 28, 23, 0.82) !important;

    border: 1px solid rgba(255,255,255,0.65) !important;
    border-radius: 999px !important;

    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.15em !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;

    text-shadow: 0 2px 5px rgba(0,0,0,0.5) !important;

    box-shadow: 0 5px 18px rgba(0,0,0,0.30) !important;

    position: relative !important;
    z-index: 50 !important;
  }

  /* FOTO 1 */
  .project-hero-esmeralda.hero-slide-1 .hero-location {
    background: rgba(15, 30, 24, 0.82) !important;
    color: #ffffff !important;
  }

  /* FOTO 2 */
  .project-hero-esmeralda.hero-slide-2 .hero-location {
    background: rgba(8, 20, 18, 0.88) !important;
    color: #ffffff !important;
  }

  /* FOTO 3 */
  .project-hero-esmeralda.hero-slide-3 .hero-location {
    background: rgba(255, 255, 255, 0.92) !important;
    color: #263b31 !important;
    text-shadow: none !important;
  }

  /* FOTO 4 */
  .project-hero-esmeralda.hero-slide-4 .hero-location {
    background: rgba(8, 20, 17, 0.88) !important;
    color: #ffffff !important;
  }

}
/* =========================================================
   ENTORNO EXTRAORDINARIO — 2 COLUMNAS x 3 FILAS
   ========================================================= */

.extraordinary-interactive {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 55px;
  align-items: stretch;
}

/* COLUMNA IZQUIERDA */

.extraordinary-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 0 18px;
  height: 100%;
}

.extraordinary-point {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 25px 20px;
  border-top: 1px solid rgba(30, 40, 30, 0.12);

  cursor: pointer;

  transition:
    background 0.35s ease,
    padding 0.35s ease,
    transform 0.35s ease;
}

.extraordinary-point:nth-child(5),
.extraordinary-point:nth-child(6) {
  border-bottom: 1px solid rgba(30, 40, 30, 0.12);
}

.extraordinary-point:hover,
.extraordinary-point.is-active {
  background: #ffffff;
  transform: translateY(-2px);
}

/* Línea lateral activa */

.extraordinary-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;

  width: 2px;
  height: 0;

  background: #283c2c;

  transition: height 0.4s ease;
}

.extraordinary-point.is-active::before {
  height: 100%;
}

/* NÚMERO */

.extraordinary-number {
  display: block;

  margin-bottom: 12px;

  font-size: 11px;
  letter-spacing: 0.14em;
  color: #8b8e87;
}

/* TÍTULO */

.extraordinary-point strong {
  display: block;

  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;

  color: #20251f;
}

/* DESCRIPCIÓN */

.extraordinary-point p {
  margin: 8px 0 0;

  font-size: 13px;
  line-height: 1.55;

  color: #73766f;
}

/* =========================================================
   IMAGEN
   ========================================================= */

.extraordinary-visual {
  height: 100%;
  min-height: 600px;
}

.extraordinary-image-wrap {
  position: relative;

  width: 100%;
  height: 100%;
  min-height: 600px;

  overflow: hidden;

  background: #ddd;
}

.extraordinary-image {
  width: 100%;
  height: 100%;
  min-height: 600px;

  display: block;

  object-fit: cover;

  transition:
    opacity 0.45s ease,
    transform 1s cubic-bezier(.2,.7,.2,1);
}

.extraordinary-image.is-changing {
  opacity: 0;
  transform: scale(1.04);
}

/* Degradado elegante sobre la imagen */

.extraordinary-image-wrap::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.30),
    transparent 38%
  );

  pointer-events: none;
}

/* INFORMACIÓN SOBRE LA FOTO */

.extraordinary-image-label {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 25px;

  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #ffffff;

  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.extraordinary-image-counter {
  opacity: 0.8;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .extraordinary-interactive {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .extraordinary-visual {
    min-height: 500px;
  }

  .extraordinary-image-wrap,
  .extraordinary-image {
    min-height: 500px;
  }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {

  .extraordinary-interactive {
    display: flex;
    flex-direction: column;
  }

  .extraordinary-visual {
    order: -1;
    min-height: 390px;
  }

  .extraordinary-image-wrap,
  .extraordinary-image {
    min-height: 390px;
  }

  /* En móvil también dejamos 2 columnas */

  .extraordinary-points {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0 10px;
  }

  .extraordinary-point {
    padding: 18px 12px;
    min-height: 180px;
  }

  .extraordinary-point:hover,
  .extraordinary-point.is-active {
    padding-left: 16px;
  }

  .extraordinary-point strong {
    font-size: 15px;
  }

  .extraordinary-point p {
    font-size: 12px;
    line-height: 1.5;
  }

  .extraordinary-number {
    margin-bottom: 8px;
  }

  .extraordinary-image-label {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 9px;
  }

}
/* =========================================================
   ENTORNO EXTRAORDINARIO — IMAGEN ÚNICA
   ========================================================= */

.extraordinary-section .extraordinary-interactive {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}

/* 6 elementos: 2 columnas x 3 filas */
.extraordinary-section .extraordinary-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 0 18px;
  height: 100%;
}

/* Una sola área de imagen */
.extraordinary-section .extraordinary-visual {
  min-height: 560px;
  height: 100%;
}

.extraordinary-section .extraordinary-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}

.extraordinary-section .extraordinary-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

/* Mantener la transición de una imagen a otra */
.extraordinary-section .extraordinary-image.is-changing {
  opacity: 0;
  transform: scale(1.04);
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 900px) {

  .extraordinary-section .extraordinary-interactive {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .extraordinary-section .extraordinary-visual {
    min-height: 500px;
  }

  .extraordinary-section .extraordinary-image-wrap,
  .extraordinary-section .extraordinary-image {
    min-height: 500px;
  }

}

@media (max-width: 600px) {

  .extraordinary-section .extraordinary-interactive {
    display: flex;
    flex-direction: column;
  }

  .extraordinary-section .extraordinary-visual {
    order: -1;
    min-height: 390px;
  }

  .extraordinary-section .extraordinary-image-wrap,
  .extraordinary-section .extraordinary-image {
    min-height: 390px;
  }

  .extraordinary-section .extraordinary-points {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 0 10px;
  }

}
/* =========================================================
   BOTÓN PLAY — VIDEO PREMIUM
   ========================================================= */

.video-section .video-play,
.video-section .play-button,
.video-section button[aria-label*="play" i],
.video-section button[aria-label*="reproduc" i] {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;

  width: 86px !important;
  height: 86px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50% !important;

  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.28),
    0 0 0 10px rgba(255, 255, 255, 0.12) !important;

  z-index: 10 !important;

  cursor: pointer !important;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease !important;
}

.video-section .video-play:hover,
.video-section .play-button:hover,
.video-section button[aria-label*="play" i]:hover,
.video-section button[aria-label*="reproduc" i]:hover {
  transform: translate(-50%, -50%) scale(1.08) !important;

  background: #ffffff !important;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.32),
    0 0 0 14px rgba(255, 255, 255, 0.14) !important;
}
/* =========================================================
   BOTÓN PREMIUM DE REPRODUCCIÓN — VIDEO VISTA ESMERALDA
   ========================================================= */

.esmeralda-video-wrapper {
  position: relative;
}

.esmeralda-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 96px;
  height: 96px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.94);
  color: #283c2c;

  cursor: pointer;
  z-index: 5;

  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.25),
    0 0 0 12px rgba(255, 255, 255, 0.12);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.25s ease;
}

.esmeralda-video-play svg {
  width: 32px;
  height: 32px;

  fill: currentColor;

  margin-left: 4px;
}

.esmeralda-video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);

  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.30),
    0 0 0 16px rgba(255, 255, 255, 0.14);
}

.esmeralda-video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* MOBILE */

@media (max-width: 600px) {

  .esmeralda-video-play {
    width: 76px;
    height: 76px;
  }

  .esmeralda-video-play svg {
    width: 27px;
    height: 27px;
  }

}
/* =========================================================
   ENTORNO EXTRAORDINARIO — ALINEACIÓN PERFECTA
   ========================================================= */

.extraordinary-points {
  align-items: stretch;
}

.extraordinary-point {
  min-height: 190px;
  box-sizing: border-box;
}

/* Mantiene el contenido de cada cuadro alineado */
.extraordinary-point > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Todos los títulos parten a la misma altura */
.extraordinary-point strong {
  min-height: 43px;
  display: flex;
  align-items: flex-start;
}

/* Las descripciones quedan alineadas */
.extraordinary-point p {
  margin-top: 8px;
}

/* En móvil */
@media (max-width: 600px) {

  .extraordinary-point {
    min-height: 190px;
  }

  .extraordinary-point strong {
    min-height: 42px;
  }

}
/* =========================================================
   ENTORNO EXTRAORDINARIO — ALINEACIÓN DEL CONTENIDO
   ========================================================= */

.extraordinary-points {
  align-items: stretch;
}

.extraordinary-point {
  justify-content: flex-start;
  box-sizing: border-box;
}

/* El contenido interno ocupa toda la altura disponible */
.extraordinary-point > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Números perfectamente alineados */
.extraordinary-number {
  height: 16px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

/* Los títulos parten siempre desde la misma línea */
.extraordinary-point strong {
  min-height: 43px;
}

/* Las descripciones comienzan a la misma altura */
.extraordinary-point p {
  margin-top: 8px;
}

/* MOBILE */
@media (max-width: 600px) {

  .extraordinary-point {
    justify-content: flex-start;
  }

  .extraordinary-number {
    height: auto;
    min-height: 14px;
    margin-bottom: 8px;
  }

  .extraordinary-point strong {
    min-height: 42px;
  }

}
/* =========================================================
   PROYECTO ACTUAL · LONGOTOMA
   Contraste para todas las imágenes del hero
   ========================================================= */

.hero-location {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  margin-bottom: 18px;

  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.38);

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;

  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;

  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* Título del hero: blanco, con sombra pero sin brillo */
.theme-esmeralda .project-hero-esmeralda .hero-title-esmeralda {
  color: #fff !important;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.55) !important;
  filter: none !important;
  opacity: 1 !important;
}

.theme-esmeralda .project-hero-esmeralda .hero-title-esmeralda em {
  color: #fff !important;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.55) !important;
  filter: none !important;
  opacity: 1 !important;
}