:root {
  --blue-main: #142B4D;
  --blue-dark: #0D1F38;
  --gold: #D4A63D;
  --gold-light: #E7C46A;
  --white: #FFFFFF;
  --gray-bg: #F5F5F5;
  --gray-text: #6B7280;
  --dark-text: #1F2937;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 8px 24px rgba(20, 43, 77, 0.12);
  --radius: 12px;
  --radius-lg: 18px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-light {
  background: var(--white);
  padding: 70px 0;
}

.section-dark {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  padding: 70px 0;
}

.center {
  text-align: center;
}

.light-text h2,
.light-text p {
  color: var(--white);
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  color: var(--blue-main);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-heading p {
  color: var(--gray-text);
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

/* =========================================================
   BOTONES
   ========================================================= */

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 8px;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-dark);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 24px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  background: url("hero-plaza-manantial.webp") center center / cover no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13, 31, 56, 0.88) 0%,
    rgba(20, 43, 77, 0.72) 42%,
    rgba(20, 43, 77, 0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 90vh;
  padding: 60px 0;
}

.hero-text {
  max-width: 720px;
  color: var(--white);
  text-align: left;
}

.logo,
.hero .logo {
  width: 240px;
  margin-bottom: 34px;
}

.hero-text h1,
.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-text p,
.hero-subtitle {
  max-width: 520px;
  font-size: 18px;
  margin: 0 0 32px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.hero-btn {
  background: var(--gold);
  color: var(--blue-main);
  padding: 16px 30px;
  border-radius: 12px;
  font-weight: 700;
}

.hero-btn:hover {
  background: var(--gold-light);
}

/* =========================================================
   HERO BENEFITS
   ========================================================= */

.hero-benefits {
  background: linear-gradient(90deg, #0D1F38 0%, #142B4D 100%);
  color: var(--white);
  padding: 22px 0;
}

.benefits-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
  flex-wrap: wrap;
}

.benefit-item {
  font-size: 1.05rem;
  font-weight: 600;
  position: relative;
  text-align: center;
}

.benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
}

/* =========================================================
   SECCIÓN: CRECER REQUIERE MÁS QUE UNA BUENA UBICACIÓN
   ========================================================= */

.growth-risks {
  background: var(--white);
  padding: 76px 0 70px;
}

.growth-risks .section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
}

.growth-risks .section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.15;
  color: var(--blue-main);
  margin-bottom: 16px;
}

.growth-risks .section-heading p {
  max-width: 720px;
  color: var(--gray-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.growth-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 56px;
}

.growth-card {
  flex: 0 1 calc(25% - 24px);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(20, 43, 77, 0.08);
  box-shadow: var(--shadow-card);
  padding: 30px 20px 28px;
  text-align: center;
  min-height: 255px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.growth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(20, 43, 77, 0.16);
}

.growth-icon-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(212, 166, 61, 0.25);
}

.growth-icon-circle img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.growth-card h3 {
  color: var(--blue-main);
  font-size: 1.02rem;
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: 800;
}

.growth-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.growth-transition {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  padding: 42px 54px;
  box-shadow: 0 18px 44px rgba(13, 31, 56, 0.18);
}

.growth-transition-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.growth-transition-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--white);
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.12;
  margin-bottom: 16px;
  max-width: 620px;
}

.growth-transition-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 650px;
}

.growth-transition-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.growth-transition-action .btn {
  text-align: center;
  white-space: normal;
  max-width: 360px;
}

.growth-watermark {
  position: absolute;
  right: -22px;
  bottom: -32px;
  width: 240px;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}

.growth-watermark img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   SECCIÓN: SISTEMA DE ARRANQUE Y CRECIMIENTO
   ========================================================= */

.growth-system {
  background: var(--white);
  padding: 82px 0 74px;
}

.system-heading {
  max-width: 920px;
  margin: 0 auto 48px;
}

.system-decorator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin-bottom: 18px;
}

.system-decorator span {
  width: 95px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 166, 61, 0), rgba(212, 166, 61, 0.85));
}

.system-decorator span:last-child {
  background: linear-gradient(90deg, rgba(212, 166, 61, 0.85), rgba(212, 166, 61, 0));
}

.system-decorator svg {
  width: 54px;
  height: auto;
  display: block;
}

.system-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  color: var(--blue-main);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.system-heading p {
  max-width: 740px;
  margin: 0 auto;
  color: var(--gray-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.system-timeline {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 34px;
}

.system-timeline::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 86px;
  bottom: 86px;
  width: 1px;
  background: rgba(212, 166, 61, 0.45);
}

.system-phase {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(20, 43, 77, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 46px 36px;
  margin-bottom: 34px;
}

.phase-marker {
  position: absolute;
  left: -9px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 166, 61, 0.14);
}

.phase-header {
  margin-bottom: 24px;
}

.phase-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(212, 166, 61, 0.75);
  background: rgba(212, 166, 61, 0.06);
  border-radius: 999px;
  padding: 5px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.phase-header h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1;
  color: var(--blue-main);
  margin-bottom: 10px;
}

.phase-header p {
  color: var(--gray-text);
  font-size: 1.04rem;
}

.phase-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.phase-card {
  background: var(--white);
  border: 1px solid rgba(20, 43, 77, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 26px 22px 28px;
  min-height: 270px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(20, 43, 77, 0.15);
}

.phase-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--blue-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(212, 166, 61, 0.24);
}

.phase-icon-circle svg {
  width: 36px;
  height: 36px;
  display: block;
}

.phase-card h4 {
  color: var(--blue-main);
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 14px;
  font-weight: 800;
}

.phase-card p {
  color: var(--gray-text);
  font-size: 0.94rem;
  line-height: 1.55;
}

.system-cta {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  border-radius: var(--radius-lg);
  padding: 48px 32px 44px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(13, 31, 56, 0.18);
}

.system-cta h3 {
  position: relative;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--white);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  max-width: 790px;
  margin: 0 auto 16px;
}

.system-cta p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 26px;
}

.system-cta .btn {
  position: relative;
  z-index: 2;
}

.system-cta-lines {
  position: absolute;
  width: 260px;
  height: 180px;
  opacity: 0.18;
  pointer-events: none;
}

.system-cta-lines::before,
.system-cta-lines::after {
  content: "";
  position: absolute;
  border: 1px solid var(--gold);
  border-color: var(--gold) transparent transparent transparent;
  width: 280px;
  height: 140px;
  border-radius: 50%;
}

.system-cta-lines.left {
  left: -90px;
  top: -35px;
  transform: rotate(-22deg);
}

.system-cta-lines.right {
  right: -100px;
  bottom: -55px;
  transform: rotate(155deg);
}

.system-cta-lines::after {
  top: 22px;
  left: 16px;
}

/* =========================================================
   DIFERENCIAL
   ========================================================= */

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.split-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.check-list {
  list-style: none;
  margin-bottom: 32px;
}

.check-list li {
  color: var(--white);
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
  font-size: 1.06rem;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: bold;
}

.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.video-real {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 31, 56, 0.16) 0%, rgba(13, 31, 56, 0.62) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px;
  text-align: center;
}

.video-card-text h3,
.video-card-text p {
  color: var(--white);
}

.video-card-text h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.12;
}

.video-card-text p {
  font-size: 1.08rem;
  margin-top: 6px;
  line-height: 1.5;
}

.play-btn {
  margin-top: 24px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.play-btn.small {
  width: 58px;
  height: 58px;
  font-size: 1.2rem;
  position: absolute;
  inset: 0;
  margin: auto;
}

/* =========================================================
   AMENIDADES
   ========================================================= */

.amenities-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--gray-bg);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 43, 77, 0.08);
}

.amenity-item {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
  font-weight: 700;
  color: var(--blue-main);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   BRANDS
   ========================================================= */

.brands {
  position: relative;
  background: url("brands-plaza-manantial.webp") center center / cover no-repeat;
  padding: 70px 0;
}

.brands-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 56, 0.65);
}

.brands-content {
  position: relative;
  z-index: 2;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.brand-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 10px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand-box img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* =========================================================
   TESTIMONIOS
   ========================================================= */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20, 43, 77, 0.08);
  width: 100%;
}

.testimonial-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #000;
  overflow: hidden;
}

.testimonial-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.caption {
  background: var(--blue-main);
  color: var(--white);
  text-align: center;
  padding: 14px;
  font-weight: bold;
}

/* =========================================================
   ESPACIOS / CARRUSELES
   ========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.space-carousel {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f5f5f5;
}

.carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.carousel-track img.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(20, 43, 77, 0.85);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn:hover {
  background: rgba(13, 31, 56, 0.95);
}

/* =========================================================
   FAQ / OBJECIONES
   ========================================================= */

.faq-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 82px 0 74px;
}

.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 220px;
  border: 1px solid rgba(212, 166, 61, 0.18);
  border-color: rgba(212, 166, 61, 0.18) transparent transparent transparent;
  border-radius: 50%;
  pointer-events: none;
}

.faq-section::before {
  top: -90px;
  left: -120px;
  transform: rotate(-18deg);
}

.faq-section::after {
  top: 40px;
  right: -150px;
  transform: rotate(165deg);
}

.faq-heading {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto 42px;
}

.faq-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 166, 61, 0.85);
  color: var(--gold);
  background: rgba(212, 166, 61, 0.06);
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.faq-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-main);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.faq-separator {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.faq-separator span {
  position: relative;
  width: 72px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}

.faq-separator span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.faq-heading p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--gray-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(20, 43, 77, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(20, 43, 77, 0.14);
}

.faq-item-highlight {
  border-color: rgba(212, 166, 61, 0.55);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 24px;
  text-align: left;
  cursor: pointer;
}

.faq-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 166, 61, 0.24), rgba(231, 196, 106, 0.42));
  color: var(--blue-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-circle svg {
  width: 36px;
  height: 36px;
  display: block;
}

.faq-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.faq-title-row h3 {
  color: var(--blue-main);
  font-size: 1.02rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-arrow {
  flex: 0 0 auto;
  color: var(--blue-main);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-content p {
  color: var(--dark-text);
  font-size: 0.94rem;
  line-height: 1.6;
  opacity: 0.9;
}

.faq-item.is-open .faq-arrow {
  transform: rotate(180deg);
}

.faq-cta {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  border-radius: var(--radius-lg);
  padding: 34px 42px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 18px 44px rgba(13, 31, 56, 0.18);
  overflow: hidden;
}

.faq-cta::before,
.faq-cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 160px;
  border: 1px solid rgba(212, 166, 61, 0.18);
  border-color: rgba(212, 166, 61, 0.18) transparent transparent transparent;
  border-radius: 50%;
  pointer-events: none;
}

.faq-cta::before {
  left: -110px;
  top: -50px;
  transform: rotate(-18deg);
}

.faq-cta::after {
  right: -100px;
  bottom: -70px;
  transform: rotate(165deg);
}

.faq-cta-left,
.faq-cta-right {
  position: relative;
  z-index: 2;
}

.faq-cta-left {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  align-items: center;
}

.faq-cta-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(212, 166, 61, 0.75);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-cta-icon svg {
  width: 40px;
  height: 40px;
}

.faq-cta-left span {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.96rem;
  display: block;
  margin-bottom: 6px;
}

.faq-cta-left h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--white);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.12;
  max-width: 620px;
  margin-bottom: 18px;
}

.faq-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.faq-cta-points p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  position: relative;
  padding-left: 22px;
}

.faq-cta-points p::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 900;
}

.faq-cta-right {
  text-align: center;
}

.faq-whatsapp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  margin-bottom: 16px;
}

.whatsapp-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.faq-cta-right p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 360px;
  margin: 0 auto;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.final-cta {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  padding: 70px 0;
}

.cta-grid {
  align-items: center;
}

.cta-image-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-soft);
}

.cta-image-card img {
  border-radius: 12px;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.final-cta .split-text h2 {
  color: var(--white);
}

.final-cta .split-text p {
  color: #E5E7EB;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

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

@media (max-width: 1024px) {
  .cards-grid.four,
  .amenities-bar,
  .brands-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1,
  .hero-title {
    font-size: 2.7rem;
  }

  .growth-card {
    flex: 0 1 calc(50% - 24px);
  }

  .growth-transition-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .growth-transition-action {
    justify-content: flex-start;
  }

  .growth-system {
    padding: 70px 0 62px;
  }

  .system-phase {
    padding: 30px 32px 34px;
  }

  .phase-cards-grid {
    grid-template-columns: 1fr;
  }

  .phase-card {
    min-height: auto;
  }

  .system-timeline::before,
  .phase-marker {
    display: none;
  }

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

  .faq-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-cta-right {
    text-align: left;
  }
}

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

@media (max-width: 768px) {
  .container {
    width: 90%;
    max-width: 100%;
  }

  .section-light,
  .section-dark,
  .final-cta,
  .brands {
    padding: 55px 0;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    min-height: 620px;
    padding: 48px 0;
  }

  .logo,
  .hero .logo {
    width: 190px;
  }

  .hero-text h1,
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text p,
  .hero-subtitle {
    font-size: 1rem;
  }

  .section-heading h2,
  .split-text h2,
  .video-card-text h3 {
    font-size: 1.8rem;
  }

  .cards-grid.four,
  .amenities-bar,
  .brands-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .benefits-row {
    gap: 18px;
    flex-direction: column;
  }

  .benefit-item:not(:last-child)::after {
    display: none;
  }

  .gallery-grid img {
    height: 220px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .video-card img {
    min-height: 280px;
  }

  .growth-risks {
    padding: 58px 0 55px;
  }

  .growth-risks .section-heading {
    max-width: 100%;
    margin-bottom: 34px;
  }

  .growth-risks .section-heading h2 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .growth-risks .section-heading p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .growth-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 42px;
  }

  .growth-card {
    width: 100%;
    max-width: 100%;
    flex: none;
    min-height: auto;
    padding: 28px 22px 26px;
  }

  .growth-card h3 {
    font-size: 1.15rem;
    line-height: 1.3;
  }

  .growth-card p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .growth-icon-circle {
    width: 70px;
    height: 70px;
  }

  .growth-icon-circle img {
    width: 34px;
    height: 34px;
  }

  .growth-transition {
    padding: 32px 22px;
    border-radius: 16px;
  }

  .growth-transition-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .growth-transition-text h2 {
    font-size: 1.85rem;
    line-height: 1.15;
  }

  .growth-transition-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .growth-transition-action {
    justify-content: flex-start;
  }

  .growth-transition-action .btn {
    width: 100%;
    text-align: center;
  }

  .growth-watermark {
    width: 170px;
    right: -36px;
    bottom: -22px;
  }

  .growth-system {
    padding: 58px 0 55px;
  }

  .system-decorator span {
    width: 58px;
  }

  .system-decorator svg {
    width: 44px;
  }

  .system-heading {
    margin-bottom: 36px;
  }

  .system-heading h2 {
    font-size: 2rem;
  }

  .system-heading p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .system-phase {
    padding: 26px 20px 28px;
    margin-bottom: 26px;
    border-radius: 16px;
  }

  .phase-label {
    font-size: 0.72rem;
    padding: 5px 15px;
  }

  .phase-header h3 {
    font-size: 2.25rem;
  }

  .phase-header p {
    font-size: 1rem;
  }

  .phase-card {
    padding: 25px 18px 26px;
  }

  .phase-icon-circle {
    width: 66px;
    height: 66px;
  }

  .phase-icon-circle svg {
    width: 33px;
    height: 33px;
  }

  .system-cta {
    padding: 38px 22px 36px;
    border-radius: 16px;
  }

  .system-cta h3 {
    font-size: 1.9rem;
  }

  .system-cta p {
    font-size: 1rem;
  }

  .system-cta .btn {
    width: 100%;
  }

  .system-cta-lines {
    width: 190px;
    height: 130px;
  }

  .faq-section {
    padding: 58px 0 55px;
  }

  .faq-heading {
    max-width: 100%;
    margin-bottom: 34px;
  }

  .faq-label {
    font-size: 0.76rem;
    padding: 7px 18px;
  }

  .faq-heading h2 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .faq-heading p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-item {
    width: 100%;
  }

  .faq-question {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .faq-icon-circle {
    width: 66px;
    height: 66px;
  }

  .faq-icon-circle svg {
    width: 34px;
    height: 34px;
  }

  .faq-title-row {
    gap: 12px;
  }

  .faq-title-row h3 {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .faq-content p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .faq-cta {
    grid-template-columns: 1fr;
    padding: 32px 22px;
    border-radius: 16px;
    gap: 24px;
  }

  .faq-cta-left {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-cta-left h3 {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .faq-cta-points {
    flex-direction: column;
    gap: 10px;
  }

  .faq-cta-right {
    text-align: left;
  }

  .faq-whatsapp-btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

/* =========================================================
   RESPONSIVE MOBILE PEQUEÑO
   ========================================================= */

@media (max-width: 480px) {
  .growth-risks .section-heading h2,
  .faq-heading h2,
  .system-heading h2 {
    font-size: 1.75rem;
  }

  .growth-icon-circle {
    width: 68px;
    height: 68px;
  }

  .growth-icon-circle img {
    width: 31px;
    height: 31px;
  }

  .growth-card h3,
  .faq-title-row h3,
  .phase-card h4 {
    font-size: 1rem;
  }

  .growth-card p,
  .faq-content p,
  .phase-card p {
    font-size: 0.93rem;
  }

  .phase-header h3 {
    font-size: 2rem;
  }

  .system-cta h3,
  .faq-cta-left h3 {
    font-size: 1.55rem;
  }
}
