/* =========================================================
   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: 8px;
  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);
}




















/* CONTENEDOR PRINCIPAL */
.page-wrap {
  max-width: 1200px;
  margin: 140px auto 80px;
  padding: 0 20px 60px;
}

/* UTILIDADES */
.hero-mini,
.section-mini {
  font-size: 13px;
  color: #3783d5;
  font-style: italic;
}

.hero-pill,
.pill-title {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background: #008d5b;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
}

/* HERO INMOBILIARIAS */
.hero-inmo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.hero-subtitle {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
}

.hero-note {
  font-size: 13px;
  color: #df4646;
  font-weight: 700;
  text-transform: uppercase;
}



















/* ===============================
   BENEFICIOS 3 x 2 PERFECTO
=============================== */

.benefits-section {
  width: 100%;
  margin-bottom: 90px;
}

.benefits-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ← AQUÍ ESTÁ LA CLAVE */
  gap: 32px;
}

/* TARJETA */
.benefit-card {
  background: #ffffff;
  padding: 40px 28px 36px;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

/* ICONO SUPERIOR */
.benefit-icon {
  width: 64px;
  height: 64px;
  background: #0f2e25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-icon img {
  width: 30px;
}

/* TEXTO */
.benefit-card p {
  margin: 0;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.55;
  color: #142822;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 x 3 en móvil */
  }
}

@media (max-width: 520px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* 1 columna */
  }
}




















/* PASOS + CARRUSEL */
.steps-section {
  margin-top: 30px;
  margin-bottom: 60px;
}

.steps-section h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: flex-start;
}

.steps-intro {
  margin-bottom: 18px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px 18px;
}

.step-card {
  background: #f8c97b;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-card.soft {
  background: #fbe0a6;
}
.step-card.soft-green {
  background: #d9efe6;
}

.step-number {
  font-weight: 700;
}
.step-title {
  font-weight: 600;
}

.step-link {
  font-size: 12px;
  color: #3a76d1;
  text-decoration: underline;
}

/* PANEL VÍDEO / CARRUSEL */
.carousel-column {
  display: flex;
  justify-content: center;
}

.video-panel {
  width: 100%;
  min-height: 260px;
  background: #c3dbf7;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.video-caption {
  font-size: 14px;
  color: #3a76d1;
}

.play-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle at 30% 30%, #86a7ff, #5673d9);
  position: relative;
  cursor: pointer;
}
.play-button::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 23px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #fff;
}

/* CTA DESCUBRIR */
.cta-discover {
  margin-top: 26px;
}
.cta-discover-box {
  background: #d5ebe4;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
}
.cta-discover-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: #3a76d1;
  text-decoration: underline;
}

/* PLANES / PRICING */
.pricing-section {
  margin-top: 40px;
  margin-bottom: 70px;
}

.pricing-section h2 {
  margin-top: 6px;
  font-size: 22px;
  text-align: center;
}

.plans-bar {
  display: flex;
  justify-content: center;
  margin: 22px 0;
}

.plans-pill {
  padding: 10px 26px;
  border-radius: 999px;
  background: #008d5b;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 16px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.plan-card {
  border-radius: 18px;
  background: #ffffff;
  padding: 18px 18px 22px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
}

.plan-free .plan-header {
  background: #f8c242;
  border-radius: 14px;
  padding: 8px 10px;
}
.plan-tag {
  font-weight: 800;
}
.plan-sub {
  margin-top: 4px;
}

.plan-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.plan-name {
  font-weight: 800;
  text-transform: uppercase;
}
.plan-price {
  font-weight: 700;
  font-size: 14px;
}

.plan-features {
  margin-top: 10px;
  margin-left: 16px;
}
.plan-features li {
  margin-bottom: 6px;
}

.plan-highlight {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #e0f1ea;
  font-size: 13px;
}

.plan-note {
  font-size: 12px;
  color: #555;
  margin-top: 4px;
}

.plan-btn {
  margin-top: 8px;
  align-self: flex-start;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  background: #008d5b;
  color: #fff;
}
.plan-btn-yellow {
  background: #f8c242;
  color: #fff;
}

/* TABLA COMPARATIVA */
.comparison-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.comparison-table thead {
  background: #f5f5f5;
}
.comparison-table th,
.comparison-table td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid #e3e3e3;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}
.comparison-table tbody tr:nth-child(even) {
  background: #f9faf9;
}

/* PLAN DETAIL SECTIONS */
.plan-detail-section {
  margin-bottom: 70px;
}

.plan-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.plan-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.plan-detail-text p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.plan-detail-text ul {
  margin-top: 4px;
  margin-left: 18px;
  font-size: 14px;
}
.plan-detail-text li {
  margin-bottom: 8px;
}

/* VR blocks */
.vr-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
}
.vr-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vr-block {
  background: #d9efe6;
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 14px;
}

.steps-row-heading {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.steps-row-heading.split {
  display: flex;
  justify-content: space-between;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px 16px;
  margin-bottom: 20px;
}

.plan-detail-cta {
  display: flex;
  justify-content: center;
}

/* VR FOOTER TEXT */
.vr-footer-text {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 12px;
}

/* TUTORIALES */
.tutorials-section {
  margin-bottom: 70px;
}

.tutorials-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tutorials-note {
  margin-top: 10px;
  font-size: 13px;
  color: #3a76d1;
}

.tutorial-block {
  margin-top: 28px;
}
.tutorial-block h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px 14px;
}
.tutorial-card {
  background: #d9efe6;
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 13px;
}

/* PROYECTO A MEDIDA / FAQ */
.custom-project-section {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 30px;
}

.custom-block ul {
  margin-top: 10px;
  margin-left: 18px;
  font-size: 14px;
}
.faq-note {
  margin-top: 10px;
  font-size: 13px;
  color: #3a76d1;
}













/* =========================================================
   FOOTER VISITIA — Premium
========================================================= */

.visitia-footer {
  background: #1e2926;
  /* Verde oscuro Visitia */
  color: #f5f3f0;
  padding: 60px 0 30px;
  margin-top: 90px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.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) {
  .nav-container {
    width: 90%;
    justify-content: space-between;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #f3f0eb;
    border-radius: 26px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    border-radius: 0;
    padding: 10px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .page-wrap {
    margin-top: 120px;
    padding: 0 16px 50px;
  }

  .hero-inmo {
    flex-direction: column;
    gap: 8px;
  }

  .benefits-section,
  .steps-layout,
  .plan-detail-layout,
  .custom-project-section {
    grid-template-columns: 1fr;
  }

  .video-panel {
    min-height: 220px;
  }

  .comparison-table-wrap {
    margin-top: 20px;
  }

  .footer-container {
    padding: 0 20px 10px;
  }
}
































































































/* =========================================================
   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: #3f5146;
}

/* Contenedor central */
.container {
  width: min(1150px, 100% - 3rem);
  margin: 0 auto;
}

/* No tocamos HEADER ni FOOTER para mantener coherencia */


/* =========================================================
   PAGE WRAPPER
========================================================= */
.page-wrap {
  max-width: 1200px;
  margin: 200px auto 80px;
  padding: 0 0px 0px;
}

.hero-mini,
.section-mini {
  font-size: 13px;
  color: #3783d5;
  font-style: italic;
}

.hero-pill,
.pill-title {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background: #1d7a67;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
}


/* =========================================================
   HERO INMOBILIARIAS
========================================================= */
.hero-inmo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.hero-subtitle {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 600;
  color: #2f423c;
}



/* ===============================
   BENEFICIOS 3 x 2 PERFECTO
=============================== */

.benefits-section {
  width: 100%;
  margin-bottom: 90px;
}

.benefits-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ← AQUÍ ESTÁ LA CLAVE */
  gap: 32px;
}

/* TARJETA */
.benefit-card {
  background: #ffffff;
  padding: 40px 28px 36px;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

/* ICONO SUPERIOR */
.benefit-icon {
  width: 64px;
  height: 64px;
  background: #0f2e25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-icon img {
  width: 30px;
}

/* TEXTO */
.benefit-card p {
  margin: 0;
  font-size: 15.5px;
  font-weight: 200;
  line-height: 1.55;
  color: #142822;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 x 3 en móvil */
  }
}

@media (max-width: 520px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* 1 columna */
  }
}

















/* ===============================
   VISOR DE PASOS ESTILO VISITIA
=============================== */

.steps-section {
  margin: 140px auto;
  max-width: 1100px;
  text-align: center;
}

.steps-section h2 {
  font-size: 36px;
  font-weight: 900;
  color: #0f2f28;
  margin-bottom: 18px;
}

.steps-intro {
  font-size: 18px;
  color: #2a4a42;
  font-weight: 600;
  margin-bottom: 40px;
}

/* VISOR GRANDE */
.steps-viewer {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 34px;
  overflow: hidden;
  background: black;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  margin-bottom: 26px;
}

.steps-viewer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXTO SOBRE LA IMAGEN */
.steps-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.0),
    rgba(0,0,0,0.75)
  );
  display: flex;
  align-items: flex-end;
  padding: 30px 34px;
}

.steps-overlay span {
  font-size: 28px;
  font-weight: 900;
  color: white;
  text-align: left;
  line-height: 1.2;
}

.steps-overlay span::first-line {
  color: #2fdac2;
}

/* MINIATURAS */
.steps-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.steps-thumbnails img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  opacity: 0.6;
  transform: scale(0.95);
  transition: 0.3s ease;
}

.steps-thumbnails img:hover {
  opacity: 1;
}

.steps-thumbnails img.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  outline: 3px solid #2fdac2;
}

/* =========================================
   CTA DESCUBRIR — PREMIUM
========================================= */

.cta-discover {
  margin-top: 90px;
  display: flex;
  justify-content: center;
}

.cta-discover-box {
  background: linear-gradient(
    135deg,
    #1d7a67,
    #2fdac2
  );
  color: white;
  padding: 26px 36px;
  border-radius: 32px;
  font-size: 16px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.25);
  text-align: center;
  max-width: 820px;
}

.cta-discover-link {
  margin-top: 12px;
  display: inline-block;
  font-size: 15px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  position: relative;
}

.cta-discover-link::after {
  content: "→";
  margin-left: 8px;
  transition: 0.3s ease;
}

.cta-discover-link:hover::after {
  margin-left: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-viewer {
    height: 260px;
  }

  .steps-overlay span {
    font-size: 20px;
  }
}





























/* =========================================
   PRICING HEADER — PREMIUM
========================================= */

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #1d7a67;
  margin-bottom: 12px;
}

.pricing-title {
  font-size: 34px;
  font-weight: 900;
  color: #1e2926;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}

.pricing-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #4b5f58;
}


/* =========================================================
   PRICING — GLOW UP PREMIUM
========================================================= */

.pricing-section {
  margin-top: 70px;
  margin-bottom: 90px;
  text-align: center;
}

.pricing-section h2 {
  font-size: 30px;
  margin-bottom: 18px;
  color: #1e2926;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.plans-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.plans-pill {
  padding: 14px 36px;
  background: linear-gradient(135deg, #1d7a67, #2e9c86);
  color: white;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.6px;
  box-shadow: 0 12px 30px rgba(29, 122, 103, 0.25);
}

/* GRID DE PLANES */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
  align-items: stretch;
}

/* TARJETA BASE */
.plan-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 28px 26px 30px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.16);
}

/* PLAN DESTACADO (PRO) */
.plan-pro {
  background: linear-gradient(180deg, #1e2926, #16201d);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.plan-pro .plan-name,
.plan-pro .plan-price,
.plan-pro .plan-sub,
.plan-pro li,
.plan-pro .plan-note {
  color: #ffffff;
}

.plan-pro .plan-highlight {
  background: rgba(255, 255, 255, 0.08);
}

/* CABECERA */
.plan-header {
  margin-bottom: 14px;
}

.plan-tag {
  font-weight: 900;
  font-size: 18px;
  color: #1d7a67;
}

.plan-name {
  font-weight: 900;
  font-size: 20px;
  color: #1e2926;
}

.plan-price {
  font-weight: 800;
  font-size: 16px;
  color: #1d7a67;
}

.plan-sub {
  margin: 10px 0 4px;
  font-size: 14px;
  opacity: 0.85;
}

/* FEATURES */
.plan-features {
  margin: 16px 0 14px 18px;
  text-align: left;
}

.plan-features li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

/* BLOQUE DESTACADO */
.plan-highlight {
  background: #d9efe6;
  padding: 12px 14px;
  border-radius: 14px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
}

/* NOTA */
.plan-note {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 10px;
}

/* BOTONES */
.plan-btn {
  margin-top: 18px;
  padding: 14px 34px;
  background: linear-gradient(135deg, #1d7a67, #2e9c86);
  border-radius: 999px;
  font-weight: 800;
  color: white;
  cursor: pointer;
  border: none;
  transition: 0.25s ease;
}

.plan-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.plan-btn-yellow {
  background: linear-gradient(135deg, #f2b646, #ffd27a);
  color: #fff;
}

/* =========================================================
   TABLA COMPARATIVA — GLOW UP
========================================================= */

.comparison-table-wrap {
  margin-top: 50px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 38px rgba(0,0,0,0.08);
  font-size: 14px;
}

.comparison-table thead {
  background: #1e2926;
  color: white;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f8faf9;
}

.comparison-table tbody tr:hover {
  background: #e8f3ef;
}


















/* =========================================================
   PLAN DETAIL SECTION — PREMIUM FINAL LIMPIO
========================================================= */

.plan-detail-section {
  margin: 90px 0;
  padding: 40px 0;
}

/* =========================================================
   NUEVO SISTEMA DE TÍTULO EDITORIAL (REEMPLAZA PÍLDORA)
========================================================= */

.plan-editorial-header {
  text-align: center;
  margin-bottom: 50px;
}

.plan-editorial-header h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6px;
}

.plan-editorial-header p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #6fdac0;
}

/* =========================================================
   HEADER ORIGINAL (SE CONSERVA POR COMPATIBILIDAD)
========================================================= */

.plan-detail-header {
  margin-bottom: 34px;
  display: flex;
  justify-content: center;
}

.pill-title {
  background: linear-gradient(135deg, #1d7a67, #2e9b84, #6fdac0);
  color: white;
  padding: 18px 54px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow:
    0 20px 45px rgba(29,122,103,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.pill-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transform: translateX(-100%);
  animation: titleShine 5s infinite;
}

@keyframes titleShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(120%); }
}

/* =========================================================
   LAYOUT PRINCIPAL
========================================================= */

.plan-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  margin-bottom: 50px;
}

/* =========================================================
   TEXTO PRINCIPAL
========================================================= */

.plan-detail-text {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.96),
    rgba(246,250,248,0.96)
  );
  padding: 40px 40px;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.05);
}

.plan-detail-text p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #2f423c;
  line-height: 1.75;
}

.plan-detail-text ul {
  margin-top: 12px;
  margin-left: 18px;
  font-size: 15px;
  color: #2f423c;
}

.plan-detail-text li {
  margin-bottom: 10px;
  line-height: 1.65;
}

/* =========================================================
   VIDEO
========================================================= */

.plan-detail-video .video-panel {
  background: radial-gradient(circle at top, #203c35, #0f1f1b);
  border-radius: 34px;
  padding: 0;
  min-height: 320px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.plan-detail-video .video-panel iframe {
  width: 100%;
  height: 320px;
  border-radius: 34px;
  border: none;
}

/* =========================================================
   TIMELINE
========================================================= */

.steps-row-heading {
  margin-top: 60px;
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: 900;
  color: #1d7a67;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.visitia-timeline-horizontal {
  position: relative;
  margin-top: 70px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
}

.visitia-timeline-track {
  position: absolute;
  top: 26px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1d7a67, #6fdac0);
  opacity: 0.75;
  border-radius: 8px;
}

.visitia-timeline-item {
  position: relative;
  text-align: center;
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visitia-timeline-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d7a67, #2e9b84);
  color: white;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 12px rgba(111,218,192,0.35),
    0 8px 25px rgba(0,0,0,0.35);
  z-index: 2;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s ease;
}

.visitia-timeline-dot:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 16px rgba(29,122,103,0.25);
}

.visitia-timeline-title {
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: white;
  max-width: 180px;
  line-height: 1.3;
}

/* ================= HOVER CARD ================= */

/* TARJETA HOVER */
.visitia-timeline-hover-card {
  position: absolute;
  top: -140px;
  width: 280px;
  background: linear-gradient(180deg, #ffffff, #f6faf8);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 5;
}

.visitia-timeline-hover-card {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: auto;
  transition: 0.35s ease;
}

.visitia-timeline-item:hover .visitia-timeline-hover-card,
.visitia-timeline-hover-card:hover {
  opacity: 1;
  transform: translateY(0);
}


.visitia-timeline-hover-card p {
  font-size: 14px;
  color: #4b5f58;
  line-height: 1.5;
  margin-bottom: 10px;
}

.visitia-timeline-hover-card a {
  color: #1d7a67;
  font-weight: 800;
  font-size: 13px;
  text-decoration: underline;
}

/* ACTIVACION HOVER */
.visitia-timeline-item:hover .visitia-timeline-hover-card {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================================================
   CTA FINAL
========================================================= */

.plan-detail-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.plan-detail-cta .plan-btn {
  padding: 18px 54px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.8px;
  background: linear-gradient(135deg, #1d7a67, #2e9b84);
  box-shadow: 0 18px 40px rgba(29,122,103,0.45);
}

.plan-detail-cta .plan-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(29,122,103,0.60);
}

/* =========================================================
   FONDOS FULL WIDTH
========================================================= */

.bg-plan-basic,
.bg-plan-vr {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 110px 0;
}

.bg-plan-basic {
  background: linear-gradient(180deg, #1e2926, #163b32);
}

.bg-plan-vr {
  background: radial-gradient(circle at top, #1b1b1b, #050505);
}

.bg-plan-basic > *,
.bg-plan-vr > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .plan-detail-layout {
    grid-template-columns: 1fr;
  }

  .visitia-timeline-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .visitia-timeline-track {
    display: none;
  }

  .visitia-timeline-item {
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
  }

  .visitia-timeline-title {
    margin-left: 16px;
    margin-top: 0;
    text-align: left;
  }

  .visitia-timeline-hover-card {
    position: relative;
    top: 14px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-left: 68px;
  }
}

/* =========================================================
   AJUSTES FINOS DE CONTRASTE POR PLAN
   (NO rompe lo anterior)
========================================================= */

/* ========== PLAN BÁSICO (FONDO VERDE OSCURO) ========== */

.bg-plan-basic .steps-row-heading {
  color: #7ff2d6;
  text-shadow: 0 0 8px rgba(127,242,214,0.25);
}

.bg-plan-basic .visitia-timeline-title {
  color: #e9fffa;
}

.bg-plan-basic .visitia-timeline-track {
  background: linear-gradient(90deg, #58e1c1, #9cf5e0);
}

/* ========== PLAN PRO (FONDO CLARO) ========== */

.plan-detail-section:not(.bg-plan-basic):not(.bg-plan-vr) .steps-row-heading {
  color: #1d7a67;
  text-shadow: none;
}

.plan-detail-section:not(.bg-plan-basic):not(.bg-plan-vr) 
.visitia-timeline-title {
  color: #203732;
}

.plan-detail-section:not(.bg-plan-basic):not(.bg-plan-vr) 
.visitia-timeline-track {
  background: linear-gradient(90deg, #1d7a67, #6fdac0);
}

/* ========== PLAN REALIDAD VIRTUAL (FONDO NEGRO) ========== */

.bg-plan-vr .steps-row-heading {
  color: #6fdac0;
  text-shadow: 0 0 10px rgba(111,218,192,0.35);
}

.bg-plan-vr .visitia-timeline-title {
  color: #ffffff;
}

.bg-plan-vr .visitia-timeline-track {
  background: linear-gradient(90deg, #6fdac0, #3bbfa1);
}

/* ===============================
   PLAN PRO — TÍTULO UNIFICADO CON LOS DEMÁS
=============================== */

.plan-pro-titulo {
  text-align: center;
  margin-bottom: 50px;
}

/* TÍTULO PRINCIPAL (misma escala que Plan Básico y VR) */
.plan-pro-titulo h2 {
  font-size: 36px;        /* iguala jerarquía visual */
  font-weight: 900;
  color: #1e2926;        /* neutro premium para fondo claro */
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

/* SUBTÍTULO (misma escala que los otros) */
.plan-pro-titulo p {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1d7a67;        /* verde Visitia limpio */
  text-shadow: none;    /* sin glow en fondo claro */
}




















/* ===============================
   TUTORIALES — CARRUSELES PRO
=============================== */

.tutorials-section {
  margin: 40px 0;
  padding: 0px 0;
}

.tutorials-note {
  max-width: 780px;
  margin: 30px auto 90px auto;
  font-size: 15px;
  color: #4f6660;
  line-height: 1.75;
  text-align: center;
}

/* ========= BLOQUE ========= */

.tutorial-block {
  margin-bottom: 140px;
  position: relative;
}

.tutorial-block h3 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 0px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0f2f28;
  position: relative;
}

.tutorial-block h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1d7a67, #6fdac0);
  margin-top: 14px;
  border-radius: 99px;
}

/* ========= CARRUSEL FULL WIDTH ========= */

.tutorial-carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 40px 80px 60px 80px;
  scroll-behavior: smooth;
  cursor: grab;

  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tutorial-carousel::-webkit-scrollbar {
  display: none;
}

.tutorial-carousel:active {
  cursor: grabbing;
}

/* ========= SLIDE ========= */

.tutorial-slide {
  flex: 0 0 420px;
  height: 260px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 
    0 22px 50px rgba(0,0,0,0.32),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  text-decoration: none;
  transition: 0.4s cubic-bezier(.2,.8,.2,1);
}

.tutorial-slide:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 
    0 34px 70px rgba(0,0,0,0.42);
}

.tutorial-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========= OVERLAY ========= */

.tutorial-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.08),
    rgba(0,0,0,0.88)
  );
  z-index: 1;
  pointer-events: none;
}

/* ========= BADGE DEL TÍTULO (CONTENEDOR VISUAL) ========= */

.tutorial-slide span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;

  background: linear-gradient(135deg, #1d7a67, #2e9b84);
  padding: 10px 14px;
  border-radius: 14px;

  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: white;
  line-height: 1.35;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.18);
}

/* ========= FLECHAS ========= */

.tutorial-nav {
  position: absolute;
  top: 95%;
  transform: translateY(-20%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15,15,15,0.55);
  backdrop-filter: blur(6px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.35s ease;
  opacity: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.tutorial-nav:hover {
  background: rgba(15,15,15,0.75);
  transform: translateY(-50%) scale(1.18);
}

.tutorial-block:hover .tutorial-nav {
  opacity: 1;
}

.tutorial-nav.left { left: 20px; }
.tutorial-nav.right { right: 20px; }

/* ========= RESPONSIVE ========= */

@media (max-width: 900px) {
  .tutorial-carousel {
    padding: 30px 20px 50px 20px;
  }

  .tutorial-slide {
    flex: 0 0 260px;
    height: 170px;
  }

  .tutorial-block h3 {
    font-size: 28px;
  }
}

/* ========= CONTENEDOR DE FLECHAS ABAJO ========= */

.tutorial-nav-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

/* ========= FLECHAS LIMPIAS ABAJO ========= */

.tutorial-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d7a67, #2e9b84);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: 0.35s ease;
  box-shadow: 0 10px 24px rgba(29,122,103,0.35);
  border: none;
}

.tutorial-nav:hover {
  transform: scale(1.2);
  box-shadow: 0 16px 36px rgba(29,122,103,0.55);
}

.tutorial-nav.dark {
  background: linear-gradient(135deg, #111, #333);
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
}



/* ===============================
   UNIFICADOR VISUAL DE LA SECCIÓN
=============================== */
/* CENTRADO REAL DE LOS BLOQUES */
.tutorial-block {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* TÍTULOS MÁS EDITORIALES */
.tutorial-block h3 {
  text-align: center;
  font-size: 36px;
  letter-spacing: 2px;
}

.tutorial-block h3::after {
  margin-left: auto;
  margin-right: auto;
}

/* CARRUSELES VISUALMENTE CENTRADOS */
.tutorial-carousel {
  justify-content: center;
  padding-left: 120px;
  padding-right: 120px;
}

/* RESPIRACIÓN MÁS UNIFICADA ENTRE FILAS */
.tutorial-block:not(:last-child) {
  padding-bottom: 90px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* TÍTULOS DE CADA TARJETA MÁS VISITIA */
.tutorial-slide span {
  background: linear-gradient(
    135deg,
    rgba(20, 150, 125, 0.95),
    rgba(40, 190, 160, 0.95)
  );

  border-left: 4px solid rgba(255,255,255,0.8);
  padding-left: 18px;
}

/* REDUCCIÓN DE SOMBRA SUCIA */
.tutorial-slide {
  box-shadow:
    0 14px 36px rgba(0,0,0,0.22);
}

.tutorial-slide:hover {
  box-shadow:
    0 28px 64px rgba(0,0,0,0.35);
}




/* =====================================
   TÍTULO TIPO HERO DENTRO DE CADA SLIDE
===================================== */

.tutorial-slide span {
  position: absolute;
  bottom: 0;
  left: -4px;
  right: 0;

  padding: 22px 26px 26px 26px;

  background: linear-gradient(
    60deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.92) 100%
  );

  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: #ffffff;
  line-height: 1.15;

  text-shadow: 
    0 6px 20px rgba(0,0,0,0.85),
    0 2px 6px rgba(0,0,0,0.6);

  border-radius: 0 0 30px 30px;
  z-index: 2;
}

/* Número destacado en color Visitia */
.tutorial-slide span::first-line {
  color: #2fdac2;
  font-weight: 900;
}

/* Hover más cinematográfico */
.tutorial-slide:hover span {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.75) 45%,
    rgba(0,0,0,0.98) 100%
  );
}

















/* =========================================================
   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) {
  .page-wrap {
    margin-top: 120px;
  }

  .benefits-section,
  .steps-layout,
  .plan-detail-layout,
  .custom-project-section {
    grid-template-columns: 1fr;
  }

  .video-panel {
    min-height: 220px;
  }
}











