/* =========================================================
   RESET GENERAL
========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica", "Arial", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #eae7e4;
  background: linear-gradient(to bottom, #f5f3ef, #f0ede8);
  color: #3f5146;
}

/* Contenedor central */
.container {
  width: min(1150px, 100% - 3rem);
  margin: 0 auto;
}






/* ===============================
   NAV DOBLE — VISITIA
=============================== */

.double-nav {
  width: 100%;
  position: relative;
  z-index: 1200;
}

/* ===============================
   PISO SUPERIOR (YA EXISTENTE)
=============================== */

.top-nav {
  /*background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);*/
  border-radius: 999px;
  margin: 18px auto 6px auto;
  width: 96%;
  /*box-shadow:
    0 10px 26px rgba(0,0,0,0.10);*/
}

/* ===============================
   PISO INFERIOR (SUBNAV)
=============================== */

.bottom-subnav {
  width: 100%;
  margin-top: 18px;
  margin-left: 50px;
  display: flex;
  justify-content: center;
}

.subnav-wrapper {
  /*backdrop-filter: blur(12px);*/
  border-radius: 999px;
  padding: 10px 28px;
  display: flex;
  gap: 22px;
}

/* Links inferior */
.subnav-link {
  font-size: 15px;
  font-weight: 600;
  color: #2b3f3a;
  text-decoration: none;
  position: relative;
  transition: 0.25s ease;
}

/* Hover underline */
.subnav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #1d7a67, #6fdac0);
  border-radius: 99px;
  transition: 0.25s ease;
}

.subnav-link:hover::after {
  width: 100%;
}

.subnav-link:hover {
  color: #0f2f28;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 900px) {

  .bottom-subnav {
    display: none; /* ocultamos el subnav en móvil */
  }

  .top-nav {
    border-radius: 0;
    width: 100%;
  }
}








/* ============================
   NAVBAR — DOS BLOQUES
============================ */

.site-header {
  position: fixed;
  top: 20px;
  width: 100%;
  z-index: 1000;
}

/* LOS DOS BLOQUES EN UNA SOLA LÍNEA */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BLOQUES REDONDEADOS */
.nav-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3f2f0;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0px 4px 12px rgba(47, 82, 72, 0.15);
}

/* BLOQUE IZQUIERDO */
.nav-left {
  padding-right: 26px;
}

.logo-img {
  height: 32px;
}

/* MENÚ */
.main-nav {
  display: flex;
  gap: 6px;
}

.nav-btn {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: transparent;
  color: #3f5146;
  font-weight: 600;
  font-size: 0.88rem;
  transition: 0.25s ease;
}

.nav-btn:hover {
  background: #2e7a69;
  color: white;
}

.nav-btn--active {
  background: #5f9f8e;
  color: white;
}

/* BLOQUE DERECHO */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* SELECTOR IDIOMA */
.lang-wrapper {
  position: relative;
}

.lang-select {
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: #3f5146;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.25s ease;
}

.lang-select:hover {
  background: #2e7a69;
  color: white;
}

.lang-dropdown {
  position: absolute;
  top: 46px;
  left: 0;
  background: #f3f2f0;
  width: 110%;
  border-radius: 14px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
  z-index: 1000;
}

.lang-wrapper.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  padding: 10px 14px;
  font-weight: 600;
  color: #3f5146;
  cursor: pointer;
}

.lang-dropdown li:hover {
  background: #2e7a69;
  color: white;
}

/* ENTRAR */
.login-btn {
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  font-weight: 600;
  color: #3f5146;
  transition: 0.25s ease;
  text-decoration: none;
}

.login-btn:hover {
  background: #2e7a69;
  color: white;
}

/* CTA */
.cta-btn {
  padding: 10px 20px;
  background: #2e7a69;
  color: white;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(46, 122, 105, 0.25);
  transition: 0.25s ease;
}

.cta-btn:hover {
  background: #266a5b;
  transform: translateY(-2px);
}










/* TOP BUTTONS */
.top-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 140px 0 40px;
}

.top-btn {
    background: #027A57;
    color: white;
    padding: 14px 30px;
    border-radius: 15px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}




















/* ==============================
   HERO — OBRA NUEVA (GLOW UP)
============================== */

.section-hero {
  padding: 180px 0 90px;
}

.section-title {
  background: linear-gradient(135deg, #1d7a67, #3fb6a0);
  padding: 14px 36px;
  color: white;
  font-weight: 900;
  border-radius: 999px;
  font-size: 1.05rem;
  letter-spacing: 1.4px;
  box-shadow: 0 8px 30px rgba(29,122,103,0.35);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.6rem;
  margin: 18px 0 60px;
  color: #1e2926;
  max-width: 820px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

/* TARJETA PRINCIPAL TEXTO */
.card-green-light {
  background: linear-gradient(180deg, #ffffff, #eaf6f2);
  padding: 42px;
  border-radius: 28px;
  line-height: 1.7;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.08);
}

.card-green-light ul {
  margin-left: 18px;
  margin-bottom: 18px;
}

.card-green-light li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* VIDEO HERO */
.video-box {
  background: radial-gradient(circle at top, #223e36, #0f1f1b);
  border-radius: 32px;
  padding: 46px;
  color: #dff3ee;
  text-align: center;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.45);
}

.video-label {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 26px;
  letter-spacing: 0.3px;
}

.play-circle {
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, #2fdac2, #1d7a67);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 14px 34px rgba(47,218,194,0.45);
  transition: 0.35s ease;
}

.play-circle:hover {
  transform: scale(1.12);
}

.play-circle::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 34px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent white;
}

/* FRASE SELLING */
.hero-footer-text {
  margin-top: 52px;
  text-align: center;
  font-style: italic;
  line-height: 1.75;
  font-size: 1.05rem;
  color: #2f423c;
}

/* ==============================
   PROMOTORAS — GLOW UP
============================== */

.section-block {
  margin: 90px 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 56px;
}

/* BOTONES PREMIUM */
.btn-yellow {
  background: linear-gradient(135deg, #f8c242, #ffd36d);
  padding: 14px 40px;
  border-radius: 999px;
  display: inline-block;
  color: #1b1b1b;
  font-weight: 900;
  margin: 18px 0;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 10px 28px rgba(248,194,66,0.45);
}

.btn-yellow:hover {
  transform: translateY(-3px) scale(1.05);
}

.btn-green {
  background: linear-gradient(135deg, #1d7a67, #33b89e);
  padding: 14px 40px;
  border-radius: 999px;
  display: inline-block;
  color: white;
  font-weight: 900;
  margin-top: 18px;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 12px 32px rgba(29,122,103,0.45);
}

.btn-green:hover {
  transform: translateY(-3px) scale(1.06);
}

/* ==============================
   DOBLE BLOQUE — GLOW UP
============================== */

.section-double {
  margin: 110px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.double-card {
  background: linear-gradient(180deg, #ffffff, #f0faf6);
  border-radius: 32px;
  padding: 46px;
  box-shadow:
    0 18px 46px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.section-title.small {
  background: none;
  color: #1d7a67;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.double-card ul {
  margin-left: 20px;
}

.double-card li {
  margin-bottom: 14px;
  line-height: 1.65;
}

/* ==============================
   CTA FINAL
============================== */

.center {
  text-align: center;
  margin: 90px 0 120px;
}

.btn-yellow.big {
  padding: 18px 58px;
  font-size: 1.25rem;
}














/* ========================= */
/* CONTENEDOR GLOBAL         */
/* ========================= */

.container {
    max-width: 1200px;    /* mismo ancho que Inicio e Inmobiliarias */
    margin: 0 auto;       /* centra todo */
    padding: 0 25px;      /* padding lateral uniforme */
    box-sizing: border-box;
}

/* ========================= */
/* TITULOS DE SECCIÓN       */
/* ========================= */
.section-title {
    background: #02865A;
    color: #fff;
    padding: 12px 28px;
    font-size: 22px;
    border-radius: 15px;
    width: fit-content;
    font-weight: bold;
    margin-bottom: 25px;
}

.section-title.small {
    font-size: 20px;
}

/* ========================= */
/* LAYOUT 2 COLUMNAS        */
/* ========================= */
.two-col {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* ========================= */
/* CAJA VERDE LIGERA        */
/* ========================= */
.card-green-light {
    background: #D9EFE8;
    padding: 30px;
    border-radius: 18px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
    line-height: 1.6;
}

/* LISTAS */
.card-green-light ul,
.double-card ul {
    margin-top: 10px;
    padding-left: 20px;
}

.card-green-light li,
.double-card li {
    margin-bottom: 12px;
    font-size: 17px;
}

/* ========================= */
/* VIDEO BOX (AZUL)         */
/* ========================= */
.video-box {
    background: #CDE1F1;
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.video-label {
    font-size: 16px;
    color: #4E8CD0;
    margin-bottom: 25px;
}

/* ICONO PLAY */
.play-circle {
    width: 80px;
    height: 80px;
    background: #80A9F5;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}
.play-circle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent white;
}

/* ========================= */
/* BOTONES                  */
/* ========================= */
.btn-yellow {
    background: #F8C36A;
    padding: 12px 32px;
    color: white;
    font-weight: bold;
    border-radius: 15px;
    display: inline-block;
    text-decoration: none;
    margin: 12px 0;
    font-size: 18px;
}

.btn-green {
    background: #02865A;
    padding: 12px 32px;
    color: white;
    font-weight: bold;
    border-radius: 15px;
    display: inline-block;
    text-decoration: none;
    margin-top: 12px;
    font-size: 18px;
}

/* ========================= */
/* DOBLE TARJETA (DOS COL)  */
/* ========================= */
.section-double {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

.double-card {
    flex: 1;
    min-width: 300px;
    background: #CFE6DF;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
}

/* LINKS */
.link {
    color: #1A5ED8;
    font-style: italic;
}

.orange-link {
    color: #E58A2A;
    font-weight: bold;
}








/* =========================================================
   FOOTER VISITIA — Premium
========================================================= */

.visitia-footer {
  width: 100vw;              /* ✅ Fuerza ancho total */
  margin-left: calc(-50vw + 50%); /* ✅ Rompe el centrado del container */
  background: #1e2926;
  color: #f5f3f0;
  padding: 80px 0 30px;
  margin-top: 120px;
  border-radius: 30px 30px 0 0;       /* ✅ El footer no debe ser redondeado en ancho total */
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
}

.footer-inner {
  max-width: 1300px;        /* ✅ Control del contenido interno */
  margin: 0 auto;
  padding: 0 40px;         /* ✅ Espaciado lateral elegante */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}


.footer-col {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
  opacity: 0.9;
  font-size: 0.95rem;
}

.footer-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px !important;
  font-size: 1rem;
  opacity: 1;
}

/* Hover elegante */
.footer-col li:hover {
  color: #ffffff;
  cursor: pointer;
  opacity: 1;
}

/* Línea inferior */
.footer-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}












/* ========================= */
/* RESPONSIVE               */
/* ========================= */
@media (max-width: 900px) {

    .section-title {
        font-size: 20px;
    }

    .section-title.small {
        font-size: 18px;
    }

    .btn-yellow,
    .btn-green {
        font-size: 16px;
    }

    .play-circle {
        width: 60px;
        height: 60px;
    }

    .play-circle::before {
        border-width: 10px 0 10px 16px;
    }
}




















/* =========================================================
   RESET GENERAL
========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica", "Arial", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to bottom, #f5f3ef, #ece9e4);
  color: #1e2926;
}

.container {
  width: min(1150px, 100% - 3rem);
  margin: 0 auto;
  padding: 0 25px;
}




/* =========================================================
   NAVBAR — SE RESPETA (NO MODIFICADO)
========================================================= */
/* (Tus estilos del navbar permanecen intactos) */



/* =========================================================
   TOP BUTTONS
========================================================= */
.top-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 150px 0 40px;
  flex-wrap: wrap;
}

.top-btn {
  padding: 12px 28px;
  background: #1d7a67;
  color: white;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.top-btn:hover {
  background: #166353;
  transform: translateY(-2px);
}














/* =========================================================
   HERO — VISITIA OBRA NUEVA (GLOW UP FINAL)
========================================================= */
.section-hero {
  margin-bottom: 90px;
}

/* ===== TÍTULO MODERNO ===== */
.section-title.modern {
  background: linear-gradient(135deg, #1d7a67, #3fc7ad);
  padding: 14px 40px;
  font-size: 22px;
  font-weight: 900;
  color: white;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 18px;
  letter-spacing: 1.2px;
  box-shadow: 0 12px 30px rgba(29,122,103,0.45);
}

/* ===== SUBTÍTULO ===== */
.hero-sub {
  margin-top: 8px;
  font-size: 1.3rem;
  color: #2f423c;
  max-width: 850px;
  line-height: 1.4;
}

/* ===== GRID PRINCIPAL (PROPORCIÓN CORREGIDA) ===== */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 48px;
  margin-top: 40px;
  align-items: center;
}

/* ===== CARD IZQUIERDA (MÁS COMPACTA Y PREMIUM) ===== */
.card-green-light {
  background: linear-gradient(180deg, #c9efe6, #b3e5da);
  padding: 26px 28px;
  border-radius: 26px;
  line-height: 1.55;
  max-width: 560px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

.card-green-light ul {
  margin-left: 18px;
}

.card-green-light li {
  margin-bottom: 10px;
}

/* ===== CARRUSEL ===== */
.video-box.image-carousel {
  position: relative;
  background: #151f1d;
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  height: 360px;              /* MÁS PROTAGONISTA */
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
}

/* TEXTO SOBRE CARRUSEL */
.video-label {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 13px;
  color: #7fcfc0;
  z-index: 3;
  background: rgba(0,0,0,0.35);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* TRACK */
.carousel-track {
  position: absolute;
  inset: 0;
}

.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-img.active {
  opacity: 1;
}

/* BOTÓN PLAY */
.play-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at center, #42ffd7, #1d7a67);
  border-radius: 50%;
  z-index: 3;
  box-shadow:
    0 0 0 16px rgba(66,255,215,0.12),
    0 20px 50px rgba(0,0,0,0.45);
}

.play-circle::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 32px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent white;
}

/* ===== FRASE BAJO EL CARRUSEL (MEJOR INTEGRADA) ===== */
.hero-footer-text.under-carousel {
  margin-top: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #2f423c;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* =========================================================
   RESPONSIVE — MOBILE REFINADO
========================================================= */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .card-green-light {
    max-width: 100%;
  }

  .video-box.image-carousel {
    height: 260px;
  }

  .section-title.modern {
    font-size: 18px;
    padding: 12px 28px;
  }

  .hero-sub {
    font-size: 1.1rem;
  }

  .hero-footer-text.under-carousel {
    font-size: 0.85rem;
  }
}





















/* =========================================================
   CARD VERDE (Texto principal)
========================================================= */
.card-green-light {
  background: white;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  line-height: 1.6;
}

.card-green-light ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.card-green-light li {
  margin-bottom: 10px;
  font-size: 1rem;
}


/* =========================================================
   VIDEO BOX
========================================================= */
.video-box {
  background: #1e2926;
  border-radius: 26px;
  padding: 32px;
  color: #e7f3ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.video-label {
  font-size: 15px;
  opacity: 0.9;
}

.play-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff20;
  border: 2px solid #ffffff60;
  position: relative;
  margin: 0 auto;
}

.play-circle::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 30px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent white;
}

.hero-footer-text {
  margin-top: 22px;
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: #2f423c;
}


















/* =========================================================
   PROMOTORAS — FULL WIDTH PREMIUM CON VIDEO
========================================================= */

.promotoras-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 140px 0;
  background: radial-gradient(circle at top left, #1f9f88, #0f3c34 70%);
  position: relative;
  overflow: hidden;
}

/* Patrón suave de fondo */
.promotoras-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1e2926;
  background-size: 28px 28px;
  pointer-events: none;
}

/* Layout */
.promotoras-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 80px;
  z-index: 2;
}

/* Invertido */
.promotoras-layout.reverse {
  grid-template-columns: 1.25fr 1fr;
}

/* ================= VIDEO ================= */

.promotoras-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.promotoras-video {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 330px;
  background: linear-gradient(160deg, #0d0d0d, #1c332d);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0,0,0,0.7);
}

.promotoras-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(63,199,173,0.25), transparent 65%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Botón play */
.play-btn {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at center, #42ffd7, #1d7a67);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 16px rgba(66,255,215,0.12);
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 36px;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent white;
}

/* ================= TARJETA ================= */

.promotoras-glass-card {
  background: rgba(255,255,255,0.95);
  border-radius: 36px;
  padding: 58px 56px;
  box-shadow:
    0 45px 90px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.45);
  backdrop-filter: blur(16px);
}

/* Título */
.promotoras-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  color: #1d7a67;
  margin-bottom: 22px;
}

/* Lead */
.promotoras-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1f2f2b;
  margin-bottom: 24px;
}

/* Lista */
.promotoras-features {
  margin-left: 20px;
  margin-bottom: 26px;
}

.promotoras-features li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #1e2e2a;
}

/* Impacto */
.promotoras-impact {
  margin-top: 20px;
  font-size: 1.05rem;
  color: #1f423b;
  font-weight: 600;
  line-height: 1.6;
}

/* Acciones */
.promotoras-actions {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================= BOTONES ================= */

.btn-yellow {
  background: linear-gradient(135deg, #f8c242, #ffe28a);
  color: #1b1b1b;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(248,194,66,0.45);
}

.btn-yellow:hover {
  transform: translateY(-3px);
}

.btn-green {
  background: linear-gradient(135deg, #1d7a67, #3fc7ad);
  color: white;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(29,122,103,0.45);
}

.btn-green:hover {
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .promotoras-layout,
  .promotoras-layout.reverse {
    grid-template-columns: 1fr;
  }

  .promotoras-video {
    height: 260px;
  }

  .promotoras-band {
    padding: 90px 0;
  }

  .promotoras-glass-card {
    padding: 42px 38px;
  }
}










/* =========================================================
   DOBLE SECCIÓN — ESTILO EDITORIAL
========================================================= */

.section-double.editorial-double {
  margin: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

/* Tarjetas base */
.editorial-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f3f3f3);
  border-radius: 40px;
  padding: 54px 46px;
  box-shadow: 0 35px 90px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Variante verde arquitectura */
.editorial-card.architecture {
  background: linear-gradient(135deg, #e9f8f4, #cfeee7);
}

/* Variante cálida reformas */
.editorial-card.reforms {
  background: linear-gradient(135deg, #fff3e2, #ffe1b0);
}

/* ================= CABECERA EDITORIAL ================= */

.editorial-header {
  margin-bottom: 30px;
  position: relative;
}

.editorial-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: white;
  background: #1d7a67;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.editorial-title {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #1e2926;
}

.editorial-sub {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1d7a67;
}

/* ================= LISTA ================= */

.editorial-list {
  margin-left: 18px;
  margin-top: 24px;
}

.editorial-list li {
  margin-bottom: 14px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #1f2f2b;
}

/* =========================================
   BOTÓN
========================================= */

.center {
  text-align: center;
  margin: 70px 0 90px;
}

.btn-yellow.big {
  padding: 18px 46px;
  font-size: 1.15rem;
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(248,194,66,0.45);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .section-double.editorial-double {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .editorial-title {
    font-size: 1.8rem;
  }

  .editorial-card {
    padding: 42px 34px;
  }
}




/* =========================================================
   SECCIONES MINI
========================================================= */
.section-mini {
  margin-bottom: 60px;
}

.section-mini ul {
  margin-left: 18px;
  margin-top: 10px;
}

.link-blue {
  text-decoration: underline;
  color: #2e7a69;
}

.orange-link {
  color: #d08900;
  cursor: pointer;
}

.link {
  color: #1a5ed8;
  text-decoration: underline;
}











/* =========================================================
   PROYECTO A MEDIDA / FAQ — CLON PREMIUM DEL INDEX
========================================================= */

.custom-project-section {
  margin: 140px auto;
  max-width: 1100px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* ===== BLOQUE PROYECTO A MEDIDA (NEGRO PREMIUM) ===== */

.custom-block.featured {
  background: #1a4d42;
  border-radius: 32px;
  padding: 90px 60px;
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.6);
}

/* Contenedor interno tipo index */
.custom-block.featured .custom-card {
  background: none;
  box-shadow: none;
  padding: 0;
  max-width: 820px;
  text-align: left;
}

/* ===== TÍTULO tipo barra verde ===== */

.custom-block.featured .pill-title {
  background: none;
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 700;
  padding: 0;
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}

/* Quitar estilo tipo cápsula del título "Proyecto a medida" */
.custom-block.featured .pill-title {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;

  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 28px;
  display: inline-block;
}

/* Eliminar cualquier pseudo-elemento decorativo si existiera */
.custom-block.featured .pill-title::before,
.custom-block.featured .pill-title::after {
  display: none !important;
}


/* ===== TEXTO BLANCO SUAVE ===== */

.custom-block.featured p {
  font-size: 1.17rem;
  line-height: 1.75;
  color: #e9f3ef;
  margin-bottom: 40px;
  max-width: 820px;
}

/* ===== BOTÓN BLANCO INVERTIDO ===== */

.custom-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 44px;
  border-radius: 999px;

  background: #ffffff;
  color: #0f0f0f;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;

  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}

.custom-cta:hover {
  background: #eaeaea;
  transform: translateY(-3px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.45);
}

/* =========================================================
   BLOQUE FAQ — LIMPIO, CLEAR, DE SOPORTE
========================================================= */

.custom-block:not(.featured) {
  text-align: center;
}

.custom-block:not(.featured) .pill-title {
  background: linear-gradient(135deg, #1d7a67, #6fdac0);
  color: white;
  padding: 8px 22px;
  font-size: 12px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow:
    0 10px 28px rgba(29,122,103,0.45);
}

.custom-card.simple {
  background: linear-gradient(180deg, #ffffff, #f6fbf9);
  border-radius: 22px;
  padding: 34px 36px;
  margin-top: 22px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;

  box-shadow:
    0 18px 50px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(0,0,0,0.04);
}

/* ===== FAQ LINK ===== */

.faq-link {
  font-size: 16px;
  color: #2f9f8a;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
  border-bottom: 2px solid rgba(47,159,138,0.4);
  padding-bottom: 2px;
}

.faq-link:hover {
  color: #186b5a;
  border-bottom-color: #186b5a;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .custom-project-section {
    margin: 100px auto;
    gap: 80px;
  }

  .custom-block.featured {
    padding: 60px 26px;
  }

  .custom-block.featured .pill-title {
    font-size: 1.6rem;
  }

  .custom-block.featured p {
    font-size: 15.5px;
  }
}







/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  
  .top-buttons { margin-top: 130px; }

  .hero-grid,
  .two-col,
  .section-double {
    grid-template-columns: 1fr;
  }

  .video-box {
    min-height: 220px;
  }

  .btn-yellow,
  .btn-green {
    font-size: 0.95rem;
  }

  .play-circle {
    width: 60px;
    height: 60px;
  }

  .play-circle::before {
    border-width: 10px 0 10px 16px;
    left: 22px;
    top: 18px;
  }
}
