
/* ============================================
    FUENTES LOCALES
============================================ */

    /* Nunito */
    @font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Regular.woff2') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    }
    @font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Medium.woff2') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    }
    @font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-SemiBold.woff2') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    }
    @font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Bold.woff2') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    }
    @font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-ExtraBold.woff2') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    }
    @font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Black.woff2') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    }

    /* Inter */
    @font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_18pt-Regular.woff2') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    }
    @font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_18pt-Medium.woff2') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    }
    @font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_18pt-SemiBold.woff2') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    }

/* ============================================
   CSS VARIABLES — Paleta Figma
============================================ */
:root {
  --purple:      #464692;
  --purple-dk:   #35356e;
  --red:         #E73851;
  --yellow:      #FDE74C;
  --cream:       #FFFBF1;
  --dark:        #1B1B1B;
  --white:       #FFFFFF;
  --navy:        #052E47;
  --sol-gray-bg:  #F7F7F7;
  --cyan   : #01A9DD;
  --font   : 'Nunito', sans-serif;
  --radius-pill: 100px;
  --radius-card: 16px;
  --sol-radius:   16px;
  --shadow-soft: 0 9px 40px rgba(181, 181, 181, 0.15);
  --shadow-dark: 0 18px 40px rgba(0, 0, 0, 0.12);
  --transition:  0.3s ease;
}


/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

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

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

a {
  text-decoration: none;
  color: inherit;
}

.btn,
.social-btn,
.navbar-links a,
.mobile-nav-links a {
  min-height: 48px;
  min-width: 48px;
}

.pt-120{padding-top:120px !important ;}

/* ============================================
   NAVBAR GENERAL
============================================ */
#navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  max-width: 1900px;
  z-index: 1000;
  transition: top var(--transition), box-shadow var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px 10px 0px 30px;
  box-shadow:
    0 37px  81px  rgba(0, 0, 0, 0.010),
    0 147px 147px rgba(0, 0, 0, 0.008),
    0 332px 199px rgba(0, 0, 0, 0.0025),
    0 590px 236px rgba(0, 0, 0, 0.0001);
}

.navbar-logo img {
  height: 53px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding-top: 20px;
}

.navbar-links a {
  font-weight: 700;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: -0.02em;
  color: #1B1B1B;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background-color 0.2s ease,
              box-shadow 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.navbar-links a:hover {
  color: var(--cream);
  background-color: #EAB230;
  box-shadow: 0 2px 10px rgba(234, 178, 48, 0.35);
  transform: scale(1.02);
}

.btn-nav-cta {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: #c82d42;
  transform: translateY(-1px);
}

/* Hamburger toggle */
.navbar-toggler-custom {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar-toggler-custom span {
  display: block;
  width: 24px;
  height: 4px;
  background: var(--purple);
  margin: 5px 0;
  transition: var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
  display: block;
  position: fixed;
  inset: 0;
  background: var(--purple-dk);
  z-index: 1001;
  display: flex;
  flex-direction: column;

  /* Animación de apertura tipo ripple desde el botón hamburguesa */
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}

.mobile-nav.open {
  clip-path: circle(150% at calc(100% - 44px) 44px);
  pointer-events: all;
}

/* Cabecera del nav */
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
}

.mobile-nav-logo {
  height: 60px;
  width: auto;
  opacity: 0;
  transition: opacity 0.3s 0.35s;
  filter: brightness(0) invert(1); /* convierte cualquier logo oscuro a blanco */
}

.mobile-nav.open .mobile-nav-logo { opacity: 1; }

/* Botón cerrar — círculo refinado */
.mobile-nav-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,251,241,0.3);
  background: none;
  color: var(--cream);
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.mobile-nav-close:hover {
  border-color: var(--red);
  background: rgba(231, 56, 81, 0.15);
}

/* Línea roja divisora */
.mobile-nav-divider {
  height: 1px;
  margin: 0 24px;
  background: linear-gradient(90deg, var(--red) 72px, rgba(255,251,241,0.1) 72px);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-nav.open .mobile-nav-divider { transform: scaleX(1); }

/* Links */
.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 28px;
  gap: 0;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,251,241,0.07);

  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.35s, transform 0.35s;
}

/* Stagger de entrada */
.mobile-nav.open .mobile-nav-links a:nth-child(1) { opacity:1; transform:none; transition-delay:0.35s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { opacity:1; transform:none; transition-delay:0.40s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { opacity:1; transform:none; transition-delay:0.45s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { opacity:1; transform:none; transition-delay:0.50s; }
.mobile-nav.open .mobile-nav-links a:nth-child(5) { opacity:1; transform:none; transition-delay:0.55s; }
.mobile-nav.open .mobile-nav-links a:nth-child(6) { opacity:1; transform:none; transition-delay:0.60s; }
.mobile-nav.open .mobile-nav-links a:nth-child(7) { opacity:1; transform:none; transition-delay:0.65s; }
.mobile-nav.open .mobile-nav-links a:nth-child(8) { opacity:1; transform:none; transition-delay:0.75s; }


.mobile-nav-links .nav-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  transition: color 0.2s;
}

.mobile-nav-links .nav-arrow {
  margin-left: auto;
  color: rgba(255,251,241,0.2);
  font-size: 22px;
  transition: color 0.2s, transform 0.2s;
}

.mobile-nav-links a:hover .nav-label { color: var(--yellow); }
.mobile-nav-links a:hover .nav-arrow { color: var(--yellow); transform: translateX(5px); }

/* Footer con CTA */
.mobile-nav-footer {
  padding: 16px 28px 40px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s 0.72s, transform 0.35s 0.72s;
}

.mobile-nav.open .mobile-nav-footer { opacity: 1; transform: none; }

.mobile-nav-footer .btn-pill {
  display: block;
  text-align: center;
  margin-bottom: 70px;
  width: 200px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 9999;
  transition: transform var(--transition);
  border: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* ============================================
HOME PAGE — ESTILOS 
============================================ */
/* ============================================
   HERO
============================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Poster — carga primero, performance */
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Video — reemplaza al poster tras carga */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-video.loaded { opacity: 1; }

/* Overlay oscuro */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.40);
  z-index: 2;
}

/* Contenido del hero */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 220px 80px 60px;
    text-align: center;
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 1;
    color: var(--white);
    max-width: 1100px;
    margin-bottom: 30px;
    text-align: center;
}

.hero-title strong {
  display: block;
  font-size: 60px;
  font-weight: 800;
}

.hero-title span {
  font-weight: 900;
}

.hero-title .highlight { color: var(--yellow); }

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.hero-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-arrow-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
  transform: none;
}


/* ============================================
   UTILIDADES GLOBALES
============================================ */
.section-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--red);
  text-align: center;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 35px);
  line-height: 1.05;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}

.section-title.white  { color: var(--white); }
.section-title.purple { color: var(--purple); }

/* Botones pill */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.02em;
  padding: 15px 12px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-pill:hover { transform: translateY(-2px); }

.btn-red           { background: var(--red);    color: var(--white);  }
.btn-red:hover     { background: #c82d42;        color: var(--white);  }

.btn-white         { background: var(--white);  color: var(--purple); }
.btn-white:hover   { background: #f0f0f0;        color: var(--purple); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); }

.btn-yellow        { background: var(--yellow); color: var(--purple); font-weight: 800;}
.btn-yellow:hover  { background: #f8d800;        color: var(--purple); }

/* Highlight de texto */
.highlight { color: var(--yellow); }


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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animaciones hero — sin esperar scroll */
.hero-content .hero-title     { animation: fadeUp 0.8s ease 0.2s both; }
.hero-content .hero-cta-group { animation: fadeUp 0.8s ease 0.5s both; }


/* ============================================
   SECCIÓN: AMENIDADES PREVIEW
============================================ */
.amenidades {
  background: var(--purple);
  padding: 80px 50px;
}

.amenidades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;

}

.amenidades-image {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.amenidades-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.amenidades-main-slideshow {
  aspect-ratio: 400 / 220;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.amenidades-secondary-card .amenidades-main-slideshow {
  aspect-ratio: 400 / 230;

}
.amenidades-card {
  background: var(--red);
  border-radius: var(--radius-card);
  padding: 40px 35px;
  color: var(--white);
  height: 100%;
}

.amenidades-card-title {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--white);
}

.amenidades-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 32px;
}

.amenidad-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.amenidad-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenidad-item span {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--white);
}


/* ============================================
   SECCIÓN: BENEFICIOS
============================================ */
.section-beneficios .container {
  background: var(--cream);
  padding: 80px 100px;
  border-radius: 60px;
  position: relative;
}

.beneficios-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.beneficios-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

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

/* --- Items --- */
.beneficio-item {
  margin-bottom: 0px;
}

.beneficio-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* --- Botón header --- */
.beneficio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  gap: 16px;
  text-align: left;
}

.beneficio-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.beneficio-header[aria-expanded="true"] .beneficio-title {
  color: var(--purple);
}

.beneficio-header:hover .beneficio-title {
  color: var(--red);
}

/* --- Icono y título --- */
.beneficio-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.beneficio-title {
  font-weight: 900;
  font-size: 20px;
  line-height: 29px;
  color: var(--purple);
  transition: color 0.3s ease;
}

/* --- Chevron --- */
.beneficio-chevron {
  display: flex;
  flex-shrink: 0;
}

.chevron-plus path,
.chevron-minus path {
  fill: var(--red);
  transition: fill 0.3s ease;
}

.beneficio-header:hover .chevron-plus path,
.beneficio-header:hover .chevron-minus path {
  fill: var(--red);
}

.beneficio-header[aria-expanded="true"] .chevron-plus path,
.beneficio-header[aria-expanded="true"] .chevron-minus path {
  fill: var(--red);
}

.chevron-minus { display: none; }

.beneficio-header[aria-expanded="true"] .chevron-plus  { display: none; }
.beneficio-header[aria-expanded="true"] .chevron-minus { display: block; }

/* --- Cuerpo acordeón --- */
.beneficio-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.beneficio-body.open {
  grid-template-rows: 1fr;
}

/* El overflow va en el hijo directo, no en p o ul */
.beneficio-body > div {
  overflow: hidden;
  padding: 0 0 0 40px;
}

.beneficio-body.open > div {
  padding: 0 0 20px 40px;
}

.beneficio-body > ul {
    padding-left: 75px;
}


.beneficio-desc {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
}

.beneficio-desc span {
  font-weight: 900;
}

/* --- Imagen derecha --- */
.beneficios-image {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.beneficios-image img {
  width: 100%;
  height: 578px;
  object-fit: cover;
  border-radius: var(--radius-card);
}


/* ============================================
   SECCIÓN: PLANOS / APARTAMENTO
============================================ */
.section-planos{
    padding: 80px 50px;
}

.planos-content{
    max-width:100%; 
    margin:0 auto;
}


.apartamento-media{
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apartamento-media img {
  width: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius-card) - 4px);
  display: block;
}
.planos-title {
  font-weight: 800;
  font-size: 35px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 40px;
}


.apartamento-card {
  background: var(--purple);
  border-radius: var(--radius-card);
  padding: 53px 30px;
  box-shadow: var(--shadow-dark);
}

.apartamento-price , .price-sub {
  font-weight: 400;
  font-size: 35px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}

.price-highlight { color: var(--yellow); font-weight: 800;}

.feature-pills-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.btn-planes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-top: 16px;
  margin-right: 12px;
  transition: background var(--transition);
}

.btn-planes:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #EAB230;
  border-radius: var(--radius-pill);
  padding: 11px 21px;
  margin-bottom: 12px;
}

.feature-pill-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.feature-pill-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  color: var(--white);
  letter-spacing: -0.03em;
}

/* ===================================================
RECORRIDO 360° 
=================================================== */



/* ── Sección ── */
.section-recorrido360 {
  background: var(--cream);
  padding: 80px 100px;
  border-radius: 60px;
  overflow: hidden;
  position: relative;
}



.recorrido360-inner {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* ── Encabezado ── */
.recorrido360-header {
  text-align: center;
  max-width: 600px;
}

.recorrido360-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.recorrido360-header .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--purple);
  line-height: 1.1;
  margin: 0 0 14px;
}

.highlight-360 {
  color: var(--red);
  position: relative;
  display: inline-block;
}

/* Subrayado animado en el "360°" */
.highlight-360::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 4px;
  background: var(--purple);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 0.6s 0.4s ease forwards;
}

@keyframes underlineReveal {
  to { transform: scaleX(1); }
}

.recorrido360-subtitle {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Stage (contenedor iframe) ── */
.recorrido360-stage {
  width: 100%;
  position: relative;
  border-radius: var(--radius-pill);
  overflow: visible; /* para que los anillos decorativos sobresalgan */
}

/* Detalles decorativos */
.deco-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--purple);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.deco-ring--tl { top: -30px; left: -30px; }
.deco-ring--br { bottom: -30px; right: -30px; border-color: var(--red); }

.deco-dots {
  position: absolute;
  top: -20px; right: 40px;
  width: 60px; height: 60px;
  background-image: radial-gradient(var(--purple) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

/* Badge flotante "Vista 360°" */
.badge-360 {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--purple-dk);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  pointer-events: none;
}

/* Wrapper iframe con aspect-ratio y sombra */
.iframe-wrapper {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(45, 27, 107, 0.18),
    0 4px 16px rgba(0,0,0,0.10);
  border: 3px solid var(--purple-dk);
  height: 640px;
  background: var(--purple-dk); /* color mientras carga */
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ── CTA inferior ── */
.recorrido360-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.recorrido360-cta p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.btn-cta-360 {
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(232, 52, 74, 0.35);
}
.btn-cta-360:hover {
  background: var(--purple-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(74, 45, 156, 0.4);
}

/* ── Animate-on-scroll (usa las mismas clases del sitio) ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}




/* ============================================
   SECCIÓN: UBICACIÓN
============================================ */
.section-ubicacion {
  padding: 80px 50px 90px;
  position: relative;
  overflow: hidden;
}

.section-ubicacion > * {
  position: relative;
  z-index: 1;
}

/* === LAYOUT INNER === */
.ubicacion-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 100%;
  margin: 0 auto;
}

/* === IZQUIERDA: TEXTO === */
.ubicacion-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}

.ubicacion-title {
  font-weight: 800;
  font-size:70px;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
  text-align: left;
}

.ubicacion-title-highlight {
  color: var(--yellow);
}

.ubicacion-btn {
  position: static;           /* anula el absolute anterior */
  transform: none;
  white-space: nowrap;
}

.ubicacion-btn:hover {
  transform: translateY(-2px);
}

/* === DERECHA: SLIDESHOW === */
.ubicacion-right {
  flex: 1.2;
}

.ubicacion-slideshow {
  aspect-ratio: 640 / 420;
  border-radius: var(--radius-card);
  overflow: hidden;
}

/* === WAVE PARALLAX === */
.parrallax {
  position: relative;
  overflow: hidden;
  background: var(--color-third);
}
.parrallax > *:not(.parrallax__wave) {
  position: relative;
  z-index: 1;
}
.parrallax__wave {
  position: absolute;
  top: -60%;
  left: 0;
  right: 0;
  bottom: -30%;
  background-image: url(https://staging.yosolemio.com/wp-content/uploads/2026/04/wave.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: center center;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}


/* ============================================
   SECCIÓN: NOVEDADES / BLOG
============================================ */
.section-novedades{
  background: var(--cream);
  padding: 40px 50px 80px;
  position: relative;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.novedades-header {
  max-width:1340px; 
  margin:0 auto;
}

.novedades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1340px;
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-dark);
}

.blog-card-img {
  width: 100%;
  height: 202px;
  object-fit: cover;
  display: block;
}

.blog-card-body { padding: 30px; }

.blog-card-title {
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  color: var(--navy);
  margin-bottom: 12px;
}

.blog-card-desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--navy);
  margin-bottom: 20px;
}

.blog-card-link {
  font-weight: 800;
  font-size: 14px;
  line-height: 23px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.blog-card-link:hover { color: var(--red); }


/* ============================================
   SECCIÓN: CTA FINAL + FORMULARIO
============================================ */
.section-contacto {
  background: var(--cream);
  position: relative;
 
}

.cta-final-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  max-width: 100%;
  margin: 0 ;
  border-radius:  60px 60px 0 0 ;
  background: var(--red); 
  padding: 80px 50px;
}

.cta-final-left{
  padding-top: 40px;
}

.cta-final-title {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 40px;
  color: var(--white);
  margin-bottom: 40px;
}

.cta-final-actions {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
/* ============================================
   SECCIÓN: GALERÍA SLIDER
============================================ */
.section-galeria {
  padding: 80px 50px 90px;
}

.galeria-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--cream);
  text-align: center;
  margin-bottom: 48px;
}

.galeria-carousel {
  max-width: 1100px;
  margin: 0 auto;
}

.galeria-inner {
  border-radius: 20px;
  overflow: hidden;
}

.galeria-img {
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
}

/* === FLECHAS === */
.galeria-arrow {
  width: 48px;
  height: 48px;
  background: var(--white) !important;
  border-radius: 50% !important;
  border: 2px solid var(--purple) !important;
  color: var(--purple) !important;
  opacity: 1 !important;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.galeria-arrow:hover {
  background: var(--purple) !important;
  color: var(--white) !important;
}

.galeria-arrow--prev {
  left: -64px;
}

.galeria-arrow--next {
  right: -64px;
}

/* === DOTS === */
.galeria-dots {
  bottom: -40px !important;
}

.galeria-dots button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: var(--purple) !important;
  opacity: 0.35 !important;
  border: none !important;
}

.galeria-dots button.active {
  opacity: 1 !important;
}


/* ============================================
   FORMULARIO DE CONTACTO
============================================ */

/* Tarjeta contenedora */
.modal-card {
  background: var(--purple);
  border-radius: var(--radius-card);
  padding: 60px 44px 25px 40px;
  box-shadow: var(--shadow-dark);
}

.modal-card-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #FFFDF2;
  margin-bottom: 30px;
}


.modal-card .form-field .wpcf7-form-control,
.modal-card .wpcf7-form-control-wrap input,
.modal-card .wpcf7-form-control-wrap .wpcf7-text,
.modal-card .wpcf7-form-control-wrap .wpcf7-tel,
.modal-card .wpcf7-form-control-wrap .wpcf7-email {
  background: rgba(255, 255, 255, 0.10);
  border: none;
  border-radius: var(--radius-card);
  padding: 14px 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  width: 100%;
  outline: none;
  transition: background var(--transition);
}


.modal-card .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-bottom: 0; 
}


.modal-card .wpcf7 form.wpcf7-form > p {
  margin: 0 ;
  padding: 0;
}

.form-input-custom::placeholder,
.modal-card .form-field input::placeholder,
.modal-card .form-field .wpcf7-form-control::placeholder { color: rgba(255, 255, 255, 0.7); }

.form-input-custom:focus,
.modal-card .form-field input:focus,
.modal-card .form-field .wpcf7-form-control:focus { background: rgba(255, 255, 255, 0.18); }



/* Fila de dos columnas (HTML estático) */
.form-row {
  display: flex;
  gap: 22px;
  margin-bottom: 22px;
}

.form-group { flex: 1; }

/* Política de privacidad — HTML estático */
.form-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
  margin-top: 22px;
}

.form-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--red);
  cursor: pointer;
  margin-top: 2px;
}

.form-acceptance label {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.form-acceptance label a {
  color: var(--yellow);
  text-decoration: underline;
  transition: color var(--transition);
}

.form-acceptance label a:hover { color: var(--white); }

/* Política de privacidad — CF7 */
.modal-card .form-field--check,
.modal-card .wpcf7-acceptance {
  margin-bottom: 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.modal-card .form-field--check a,
.modal-card .wpcf7-acceptance a {
  color: var(--yellow);
  text-decoration: underline;
  transition: color var(--transition);
}

.modal-card .form-field--check a:hover,
.modal-card .wpcf7-acceptance a:hover { color: var(--white); }

/* Botón enviar — aplica al HTML estático y a CF7 */
.btn-submit,
.modal-card .wpcf7-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: var(--radius-pill);
  padding: 15px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
}

.btn-submit:hover,
.modal-card .wpcf7-submit:hover {
  background: #c82d42;
  transform: translateY(-1px);
}

/* CF7 — mensajes de validación y respuesta */
.modal-card .wpcf7-not-valid-tip {
    color: var(--yellow);
    font-size: 12px;
    margin-top: 2px;
    padding-left: 7px;
}

.modal-card .wpcf7-response-output {
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  font-size: 14px;
  margin-top: 16px;
  border: none !important;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* CF7 — neutralizar estilos propios */
.modal-card .wpcf7-form p { margin: 0; padding: 0; }
.modal-card .wpcf7-form .wpcf7-form-control-wrap { display: block; width: 100%; }

.modal-card .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.modal-card .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.modal-card .wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Fix: el span wrapper de CF7 debe ser block y ancho completo */
.modal-card .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Fix: apuntar al input dentro del wrapper de CF7 */
.modal-card .wpcf7-form-control-wrap .wpcf7-form-control {
  background: rgba(255, 255, 255, 0.10);
  border: none;
  border-radius: var(--radius-card);
  padding: 13px 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  width: 100%;
  outline: none;
  transition: background var(--transition);
}

.modal-card .wpcf7-form-control-wrap .wpcf7-form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.modal-card .wpcf7-form-control-wrap .wpcf7-form-control:focus {
  background: rgba(255, 255, 255, 0.18);
}

.modal-card .wpcf7-form-control-wrap .wpcf7-acceptance {
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: auto;
}

.modal-card .wpcf7-form-control-wrap .wpcf7-acceptance input[type="checkbox"] {
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--red);
}
/* ============================
   WAVE SUPERIOR DE SECCIÓN CONTACTO
============================ */
.section-wave-top {
  position: absolute;
  top: 412px;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.section-beneficios .section-wave-top{
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.section-novedades .section-wave-top {
  position: absolute;
  top: -150px;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.section-wave-top img {
  display: block;
  width: 100%;
  height: auto; 
}

.section-wave-bottom {
  position: absolute;
  bottom: 0;
  right: 160px;
  pointer-events: none;
  z-index: 0;
}

.section-beneficios .section-wave-top .wave-color-overlay img {
filter: brightness(0) saturate(100%) invert(56%) sepia(18%) saturate(2600%) hue-rotate(213deg) brightness(96%) contrast(92%);
}

.section-contacto .section-wave-top .wave-color-overlay img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(92%) saturate(5000%) hue-rotate(350deg) brightness(55%) contrast(115%);
}


/* ============================================
   FOOTER- GENERAL 
============================================ */
.section-footer {
  background: var(--red);
  padding: 0;
  position: relative;
}
.bg-purple {
  background: var(--purple) ;
}
.footer-inner {
  background: var(--white);
  max-width: 100%;
  margin: 0;
  border-radius: 60px 60px 0 0;
  padding: 40px 50px 5px;
}

.footer-top {
  margin-bottom: 64px;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-logo {
  height: 99px;
  width: auto;
  object-fit: contain;
}

.footer-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge-fiducia,
.badge-banco {
  border-radius: 4px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  height: 30px;
  width: 45%;
  text-align: center;
}

.badge-fiducia { background: #E7E7E7; }
.badge-banco   { background: #010101; }
.badge-fiducia img,
.badge-banco img { height: 22px; width: auto; margin: 0 auto; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-nav-title {
  font-weight: 800;
  font-size: 18px;
  color: #1E1E1E;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-links a {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  transition: color var(--transition);
}

.footer-nav-links a:hover { color: var(--red); }
.contact-text {
  font-family: 'Inter', sans-serif;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-title {
  font-weight: 800;
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 8px;
  list-style:none; 
  padding:0; 
  margin:0;
}

.social-btn {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.social-btn:hover {
  background: #c82d42;
  transform: scale(1.1);
}

.social-btn svg { width: 16px; height: 16px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 16px; height: 16px; }

.contact-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: var(--dark);
}

.footer-divider {
  border: none;
  border-top: 1px solid #E7E7E7;
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom span,
.footer-bottom a {
  font-weight: 500;
  font-size: 12px;
  color: #1E1E1E;
  
}

.footer-bottom a:hover { color: var(--red); }

.contact-text a {
	display: block !important;
	/* cada número en su propia línea */
	padding: 14px 0;
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 59px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}

.sticky-bar.is-docked {
  position: absolute; /* deja de ser sticky, se queda en su lugar */
}

.bar-text {
  font-family: var(--font);
  font-size: 35px;
  font-weight: 800;
  color: var(--purple-dk);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bar-text .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.bar-address {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--purple-dk);
  opacity: 0.75;
}

.bar-cta {
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.bar-cta:hover {
  background:var(--purple-dk);
  transform: translateY(-1px);
  color: var(--yellow);
}
/* ============================================
AMENIDADES PAGE — ESTILOS 
============================================ */

    /* ---- HERO ---- */
    .amenidades-hero {
      position: relative;
      width: 100%;
      height: 437px;
      overflow: hidden;
      border-radius: var(--radius-card);
      margin: 0 auto;
      max-width: 100%;
    }

    .amenidades-hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .amenidades-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 60%,
        rgba(0,0,0,0.1) 100%
      );
    }

    .amenidades-hero-content {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      padding: 0 60px;
      justify-content: center;
    }

    .amenidades-hero-badge {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .amenidades-hero-num {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: clamp(80px, 12vw, 153px);
      line-height: 1;
      color: var(--yellow);
      letter-spacing: -0.02em;
    }

    .amenidades-hero-text {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: clamp(32px, 5vw, 59px);
      line-height: 1.05;
      color: var(--yellow);
    }

    /* ---- PAGE WRAPPER ---- */
    .amenidades-page {
      background: var(--purple);
      padding-top: 100px; /* espacio para navbar */
    }

    .amenidades-page-inner {
      max-width:100%;
      margin: 0 auto;
      padding: 120px 50px 0;
    }

    /* ---- TARJETA ROJA — AMENIDADES PRINCIPALES ---- */
    .amenidades-main-card {
      background: var(--red);
      border-radius: var(--radius-card);
      padding: 35px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      margin-top: 40px;
    }

    .amenidades-main-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  list-style: none;  
  padding: 0;       
  margin: 0;        
}

.amenidad-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

    .amenidad-icon-wrap {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .amenidad-label {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 20px;
      line-height: 1.3;
      color: var(--white);
    }

    .amenidades-main-img {
      width: 570px;
      object-fit: cover;
      border-radius: var(--radius-card);
      flex-shrink: 0;
    }

    /* ---- TARJETA CYAN — AMENIDADES SECUNDARIAS ---- */
    .amenidades-secondary-card {
      background: #01A9DD;
      border-radius: var(--radius-card);
      padding: 41px 35px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 24px;
      align-items: center;
      margin-top: 24px;
    }

    .amenidades-secondary-img {
      width: 570px;
      height: 303px;
      object-fit: cover;
      border-radius: var(--radius-card);
      flex-shrink: 0;
    }

    .amenidades-secondary-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 40px;
    }

    /* ---- SECCIÓN APARTAMENTO ---- */
    .section-apartamento-page {
      background: var(--purple);
      padding: 80px 0px;
    }

    .apartamento-page-inner {
      max-width:100%;
      margin: 0 auto;
    }

    .apartamento-page-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 25px;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 40px;
    }

    .apartamento-page-title .highlight {
      color: var(--yellow);
    }


    /* Lista de características del apartamento */
    .apt-features-list {
      box-shadow: var(--shadow-dark);
      border-radius: var(--radius-card);
      padding: 53px 30px;
      background: var(--purple);

    }

    .apt-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      border-radius: var(--radius-pill);
      padding: 11px 21px;
    }

    .apt-feature-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .apt-feature-text {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.35;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .apt-feature-text.highlight-yellow {
      color: var(--yellow);
    }

    .apartamento-page-img {
      width: 760px;
      height: 606px;
      object-fit: cover;
      border-radius: var(--radius-card);
    }

    /* === SLIDESHOW === */

    .apt-slideshow {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .apt-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
      pointer-events: none;
    }

    .beneficios-image .apt-slideshow {
    aspect-ratio: 613 / 578; /* las dimensiones que ya usabas */
}

    .apt-slide.active {
      opacity: 1;
      pointer-events: auto;
    }

    .apt-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.08);
      transition: transform 4s ease-in-out;
    }

    .apt-slide.active img {
      transform: scale(1.15);
    }

    /* === ASPECT RATIO POR SECCIÓN === */
    .apartamento-page-img {
      aspect-ratio: 656 / 620;
    }

    /*Formulario*/
    .contacto-amenidades{
      background-color: var(--purple);
    }

/* ============================================
   ENTORNO PAGE — ESTILOS 
   ============================================ */

    /* ---- PAGE WRAPPER ---- */
    .entorno-page {
      background: var(--purple);
      padding-top: 100px;
    }

    .entorno-page-inner {
      max-width: 100%;
      margin: 0 auto;
      padding: 160px 50px 0;
    }

    /* ---- HERO HEADER ---- */
    .entorno-hero-header {
      margin-bottom: 48px;
    }

    .entorno-hero-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: clamp(28px, 5.5vw, 32px);
      line-height: 1;
      color: var(--white);
      margin-bottom: 20px;
    }

    .entorno-hero-desc {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.6;
      color: rgba(255,255,255,0.85);
      max-width: 775px;
    }

    /* ---- CATEGORY CARDS ---- */
    
    .entorno-card  .container{
      border-radius: var(--radius-card);
      padding: 41px 35px;
      margin-bottom: 24px;

    }

    .entorno-card--cyan .container { background: #01A9DD; }
    .entorno-card--white .container { background: var(--white); }

    .entorno-card-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: clamp(22px, 2.5vw, 30px);
      line-height: 1;
      margin-bottom: 32px;
      text-align: center;
    }

    .entorno-card--cyan  .entorno-card-title { color: var(--white); }
    .entorno-card--white .entorno-card-title { color: var(--purple); }

    /* Card layout: imagen + lista */
    .entorno-card-body {
      display: grid;
      grid-template-columns: 670fr 500fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 36px;
    }

    .entorno-card-body ul {
      padding-left: 6px;
    }

    .entorno-card-img {
      width: 100%;
      height: 344px;
      object-fit: cover;
      border-radius: var(--radius-card);
      display: block;
    }

    /* Placeholder gris cuando no hay imagen */
    .entorno-img-placeholder {
      width: 90%;
      height: 344px;
      border-radius: var(--radius-card);
      background: rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .entorno-card--white .entorno-img-placeholder {
      background: rgba(70,70,146,0.08);
    }

    .entorno-img-placeholder svg {
      opacity: 0.35;
    }

    /* Lista de items */
    .entorno-items-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .entorno-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .entorno-item-icon {
      flex-shrink: 0;
      margin-top: 2px;
    }

    .entorno-item-text {
      font-family: 'Nunito', sans-serif;
      font-weight: 600;
      font-size: 16px;
      line-height: 1.4;
    }

    .entorno-card--cyan  .entorno-item-text { color: var(--white); }
    .entorno-card--white .entorno-item-text { color: var(--dark); }

    /* Sección "Por qué es importante" (tarjetas cyan y white) */
    .entorno-why {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding-top: 8px;
      border-top: 1px solid rgba(255,255,255,0.25);
      flex-direction: column;
    }

    .entorno-card--cyan .entorno-why,
    .entorno-card--white .entorno-why {
      flex-direction: row;
      gap: 40px;
    }

    .entorno-card--white .entorno-why {
      border-top-color: rgba(70,70,146,0.15);
    }

    .entorno-why-label {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 30px;
      line-height: 1.2;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .entorno-card--cyan  .entorno-why-label { color: var(--white); }
    .entorno-card--white .entorno-why-label { color: var(--dark); }

    .entorno-why-text {
      font-family: 'Nunito', sans-serif;
      font-weight: 600;
      font-size: 16px;
      line-height: 1.65;
    }

    .entorno-card--cyan  .entorno-why-text { color: rgba(255,255,255,0.9); }
    .entorno-card--white .entorno-why-text { color: var(--dark); }

    /* ---- SEGUNDA SECCIÓN: tarjeta púrpura con varias categorías ---- */
    .entorno-card--purple .container {
      background: var(--purple-dk);
      border-radius: var(--radius-card);
      padding: 41px 25px;
      margin-bottom: 70px;
    }

    .entorno-card--purple .entorno-card-title   { color: var(--white); }
    .entorno-card--purple .entorno-item-text     { color: var(--white); }
    .entorno-card--purple .entorno-why-label     { color: var(--white); }
    .entorno-card--purple .entorno-why-text      { color: rgba(255,255,255,0.85); }
    .entorno-card--purple .entorno-why           { border-top-color: rgba(255,255,255,0.2); }
    .entorno-card--purple .entorno-img-placeholder { background: rgba(255,255,255,0.08); }

    /* Layout: columna izquierda (categorías) + columna derecha (imagen) */
    .entorno-card--purple .entorno-card-layout {
      display: grid;
      grid-template-columns: 1fr 780px;
      gap: 0;
      min-height: 480px;
    }

    .entorno-card--purple .entorno-left-col {
      display: flex;
      flex-direction: column;
    }

    .entorno-card--purple .entorno-right-col {
      margin-left: 40px;
      border-radius: var(--radius-card);
      overflow: hidden;
      flex-shrink: 0;
    }

    /* Imagen lateral (ocupa toda la altura de la columna) */
    .entorno-card--purple .entorno-right-col .entorno-card-img-full,
    .entorno-card--purple .entorno-right-col .entorno-img-placeholder-full {
      width: 100%;
      height: 100%;
      min-height: 300px;
      object-fit: cover;
      border-radius: var(--radius-card);
      display: block;
      margin-bottom: 0;
    }

    /* Categorías apiladas dentro de la columna izquierda */
    .entorno-category-block {
      padding: 20px 0;
      border-bottom: 1px solid #03a9dd;
    }

    .bg-azul {
      background-color: #03a9dd;
      border-radius: 60px 60px 0 0;
    }


    .entorno-category-block:first-child { padding-top: 0; }
    .entorno-category-block:last-child  { border-bottom: none; padding-bottom: 0; }

    .entorno-category-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: clamp(16px, 1.5vw, 30px);
      color: var(--white);
      margin-bottom: 16px;
      white-space: nowrap;
    }

    .entorno-card--white .entorno-category-name { color: var(--purple); }

    /* Botón colapsable "Por qué es importante" (tarjeta púrpura) */
    .entorno-why-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px 0 0;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: var(--yellow);
      letter-spacing: 0.04em;
      transition: color 0.15s;
    }

    .entorno-why-toggle svg {
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }

    .entorno-why-toggle.is-open svg {
      transform: rotate(90deg);
    }

    /* Panel colapsable */
    .entorno-why-collapsible {
      display: none;
      padding-top: 10px;
    }

    .entorno-why-collapsible.is-open {
      display: block;
    }

    .entorno-card--purple .entorno-why-collapsible .entorno-why-text {
      font-family: 'Nunito', sans-serif;
      font-weight: 600;
      font-size: 15px;
      line-height: 1.65;
      color: rgba(255,255,255,0.8);
      margin: 0;
    }

    /* ---- CHECK ICON SVG reutilizable ---- */
    .check-icon-yellow svg path { fill: #FDE74C; }
    .check-icon-cyan   svg path { fill: #01A9DD; }


/* ============================================
EQUIPO PAGE — ESTILOS 
============================================ */

    body {
      font-family: var(--font);
      background-color: var(--purple);
      color: var(--white);
      margin: 0;
    }

    /* ── Layout wrapper ── */
    .page-wrap {
      max-width: 100%;
      margin: 0 auto;
    }

    /* ── Animate on scroll ── */
    .anim {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .anim.visible        { opacity: 1; transform: none; }
    .anim.d1             { transition-delay: .08s; }
    .anim.d2             { transition-delay: .16s; }
    .anim.d3             { transition-delay: .24s; }

    /* ============================================================
       SECTION HEADER — "Equipo de ventas y trámites"
       y reutilizado para "Equipo de Trámites y Negocios"
    ============================================================ */
    .section-pg-header {
      padding: 50px 50px 56px;
    }

    .pg-header-title {
      font-size: clamp(1.8rem, 3.8vw, 2rem);
      font-weight: 900;
      line-height: 1.08;
      color: var(--white);
      margin: 0;
    }

    .pg-header-sub {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.6;
      color: var(--white);
      opacity: .9;
      padding-top: 6px;
      margin: 0;
      margin-top: 20px;
    }

    /* ============================================================
       TEAM GRID — 4 tarjetas comerciales
    ============================================================ */

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      align-items: stretch;
      max-height: 730px;
    }

    /* ─ Card individual ─ */
    .team-card {
      display: flex;
      flex-direction: column;
      gap: 5px;
      height: 70%;
    }

    /* Foto cuadrada */
    .team-card__photo {
      width: 100%;
      height: 600px;
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255,255,255,.1);
      position: relative;
    }
    .team-card__photo--cyan {
      outline: 3px solid var(--cyan);
    }
    .team-card__photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    /* Placeholder cuando falla img */
    .photo-ph {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      opacity: .3;
    }

    /* Info */
    .team-card__body { display: flex; flex-direction: column; gap: 12px; height: 100%; padding-top: 20px;}

    .team-card__name  { font-size: .95rem; font-weight: 400; line-height: 1.3; margin: 0; }
    .team-card__role  { font-size: .95rem; font-weight: 800; line-height: 1.3; margin: 0; }
    .team-card__role--cy { color: var(--cyan); }
    .team-card__phone { font-size: .88rem; font-weight: 400; color: rgba(255,255,255,.65); margin: 0; }
    .team-card__desc  { font-size: .83rem; font-weight: 400; line-height: 1.65; color: rgba(255,255,255,.88); margin: 0; }

    .team-card__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

    /* ── Botones tarjetas ── */
    /* Outline blanco */
    .btn-ow {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      padding: 11px 16px;
      border: 2px solid var(--white); border-radius: 50px;
      background: transparent; color: var(--white);
      font-family: var(--font); font-size: .85rem; font-weight: 700;
      text-decoration: none; cursor: pointer;
      transition: background .18s;
    }
    .btn-ow:hover, .btn-ow:focus-visible {
      background: rgba(255,255,255,.12); color: var(--white);
      outline: 2px solid var(--white); outline-offset: 2px;
    }
    /* Outline cyan (Solemí "Iniciar chat") */
    .btn-oc {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      padding: 11px 16px;
      border: 2px solid var(--cyan); border-radius: 50px;
      background: transparent; color: var(--cyan);
      font-family: var(--font); font-size: .85rem; font-weight: 700;
      text-decoration: none; cursor: pointer;
      transition: background .18s;
    }
    .btn-oc:hover, .btn-oc:focus-visible {
      background: rgba(1,169,221,.12); color: var(--cyan);
      outline: 2px solid var(--cyan); outline-offset: 2px;
    }

        .btn-oc-two {
      border: 2px solid var(--cream); border-radius: 50px;
      background: transparent; color: var(--cream);
      font-family: var(--font); font-size: .85rem; font-weight: 700;
      text-decoration: none; cursor: pointer;
      transition: background .18s;
    }
    .btn-oc-two:hover, .btn-oc-two:focus-visible {
      background: rgba(1,169,221,.12); color: var(--cream);
      outline: 2px solid var(--cream); outline-offset: 2px;
    }
    /* Solid amarillo */
    .btn-sy {
      display: flex; align-items: center; justify-content: center;
      padding: 11px 16px;
      border: none; border-radius: 50px;
      background: var(--yellow); color: var(--dark);
      font-family: var(--font); font-size: .85rem; font-weight: 700;
      text-decoration: none; cursor: pointer;
      transition: opacity .18s, transform .15s;
    }
    .btn-sy:hover, .btn-sy:focus-visible {
      opacity: .9; color: var(--dark); transform: translateY(-1px);
    }
    /* Solid cyan (Solemí "Recibir info") */
    .btn-sc {
      display: flex; align-items: center; justify-content: center;
      padding: 11px 16px;
      border: none; border-radius: 50px;
      background: var(--cyan); color: var(--white);
      font-family: var(--font); font-size: .85rem; font-weight: 700;
      text-decoration: none; cursor: pointer;
      transition: opacity .18s, transform .15s;
    }
    .btn-sc:hover, .btn-sc:focus-visible {
      opacity: .88; color: var(--white); transform: translateY(-1px);
    }

     .btn-sc-two {
      background: var(--cream); 
      color: var(--cyan);
      font-family: var(--font); font-size: .85rem; font-weight: 700;

    }


    /* WhatsApp icon */
    .ico-wa { width: 15px; height: 15px; flex-shrink: 0; }
    .whatsapp-float{bottom: 80px;}

    /* ============================================================
       TRAMITES SECTION HEADER
    ============================================================ */
    .section-tram-header { padding: 56px 0 44px; }

    /* ============================================================
       TRAMITES CARD — horizontal cyan
    ============================================================ */
    .section-tram-card { padding-bottom: 88px; }

    .tram-card {
      background: var(--cyan);
      border-radius: 20px;
      padding: 40px;
      display: flex;
      flex-direction: row;
      gap: 40px;
      align-items: center;
    }

    .tram-card__photo {
      flex: 0 0 260px;
      width: 260px; height: 260px;
      border-radius: 14px;
      overflow: hidden;
      background: rgba(255,255,255,.18);
      position: relative;
    }
    .tram-card__photo img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block;
    }

    .tram-card__content {
      flex: 1;
      display: flex; flex-direction: column; gap: 18px;
    }

    .tram-card__name  { font-size: .95rem; font-weight: 400; line-height: 1.3; margin: 0; }
    .tram-card__role  { font-size: 1rem;   font-weight: 800; line-height: 1.3; margin: 0; }
    .tram-card__phone { font-size: .88rem; font-weight: 400; color: rgba(255,255,255,.72); margin: 0; }
    .tram-card__desc  { font-size: .85rem; font-weight: 400; line-height: 1.65; color: rgba(255,255,255,.92); margin: 0; }

    .tram-card__actions { display: flex; flex-direction: column; gap: 12px; }

    /* Botón outline blanco WIDE (tramites) */
    .btn-tow {
      display: flex; align-items: center; justify-content: center; gap: 7px;
      padding: 13px 22px; width: 100%;
      border: 2px solid var(--white); border-radius: 50px;
      background: transparent; color: var(--white);
      font-family: var(--font); font-size: .92rem; font-weight: 700;
      text-decoration: none; cursor: pointer;
      transition: background .18s;
    }
    .btn-tow:hover, .btn-tow:focus-visible {
      background: rgba(255,255,255,.14); color: var(--white);
      outline: 2px solid var(--white); outline-offset: 2px;
    }
    /* Botón solid blanco WIDE (tramites) */
    .btn-tsw {
      display: flex; align-items: center; justify-content: center;
      padding: 13px 22px; width: 100%;
      border: none; border-radius: 50px;
      background: var(--white); color: var(--cyan);
      font-family: var(--font); font-size: .92rem; font-weight: 700;
      text-decoration: none; cursor: pointer;
      transition: opacity .18s;
    }
    .btn-tsw:hover, .btn-tsw:focus-visible { opacity: .9; color: var(--cyan); }

/* ============================================
RESPALDO PAGE — ESTILOS 
============================================ */


    /* ── Hero Section ── */
    .respaldo-hero {
      background-color: var(--purple);
      padding: 160px 50px 80px;
      position: relative;
      overflow: hidden;
    }


    .respaldo-hero-inner {
      max-width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .respaldo-hero-title {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(2rem, 2.5vw, 3rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin: 0;
    }

    .respaldo-hero-desc {
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.6;
      margin: 0;
    }

    /* ── Hero Banner Image ── */
    .respaldo-banner {
      max-width: 100%;
      margin: 0 auto;
      padding: 60px 50px 80px;
      margin-top: -20px;
      position: relative;
      z-index: 2;
      background: var(--purple);
    }

    .respaldo-banner-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 1340 / 437;
      background: #2a2a6a;
    }

    .respaldo-banner-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .respaldo-banner-logos {
      position: absolute;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .respaldo-logo-badge {
      border-radius: 10px;
      padding: 8px 14px;
      display: flex;
      align-items: center;
      min-height: 48px;
    }

    .respaldo-logo-badge.bg-light-gray {
      background: #e7e7e7;
    }

    .respaldo-logo-badge.bg-black {
      background: #000;
    }

    .respaldo-logo-badge img {
      height: 30px;
      width: auto;
      display: block;
    }

    /* ── Acordeón Section (cream) ── */
    .section-respaldo-acordeon {
      background-color: var(--cream);
      border-radius: 50px;
      padding: 80px 50px 80px;
      margin-top: -30px;
      position: relative;
      z-index: 3;
    }

    .respaldo-acordeon-inner {
      max-width: 100%;
      margin: 0 auto;
    }

    .respaldo-acordeon-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .respaldo-acordeon-heading {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.2;
    }

    .respaldo-acordeon-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    /* Accordion items */
    .respaldo-faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .respaldo-faq-item {
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .respaldo-faq-item:first-child {
      border-top: 1px solid rgba(0,0,0,0.1);
    }

    .respaldo-faq-btn {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 0;
      display: flex;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      text-align: left;
    }

    .respaldo-faq-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .respaldo-faq-icon svg path {
      fill: var(--red);
      transition: all 0.3s ease;
    }

    .respaldo-faq-btn.open .respaldo-faq-icon .plus-icon {
      display: none;
    }

    .respaldo-faq-btn.open .respaldo-faq-icon .minus-icon {
      display: block;
    }

    .respaldo-faq-btn:not(.open) .respaldo-faq-icon .minus-icon {
      display: none;
    }

    .respaldo-faq-title-text {
      font-family: 'Nunito', sans-serif;
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--dark);
      line-height: 1.3;
      transition: color 0.3s;
    }

    .respaldo-faq-btn.open .respaldo-faq-title-text {
      color: var(--red);
    }

    .respaldo-faq-body {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.35s ease;
    }

    .respaldo-faq-body.open {
      grid-template-rows: 1fr;
    }

    .respaldo-faq-body-inner {
      overflow: hidden;
    }

    .respaldo-faq-desc {
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem;
      color: var(--dark);
      line-height: 1.7;
      padding: 0 0 20px 38px;
    }

    .respaldo-faq-desc strong {
      display: block;
      margin-bottom: 8px;
      margin-top: 12px;
    }

    .respaldo-faq-desc ul {
      margin: 8px 0 0 0;
      padding-left: 20px;
    }

    .respaldo-faq-desc ul li {
      margin-bottom: 4px;
    }

    /* Right image */
    .respaldo-acordeon-image {
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 513/578;
      background: #ddd;
    }

    .respaldo-acordeon-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── Confianza Section (purple) ── */
    .section-confianza {
      background-color: var(--purple);
      padding: 80px 50px 80px 50px;
      position: relative;
      overflow: hidden;
    }

    .confianza-inner {
      max-width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .confianza-text-col h2 {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(30px, 3.5vw, 32px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 24px;
    }

    .confianza-text-col p {
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
      max-width: 540px;
      margin: 0;
    }

    .confianza-logos-col {
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex-shrink: 0;
    }

    .confianza-logo-badge {
      border-radius: 10px;

      display: flex;
      align-items: center;
      min-height: 40px;
      min-width: 268px;
    }

    .confianza-logo-badge.bg-light-gray {
      background: #e7e7e7;
    }

    .confianza-logo-badge.bg-black {
      background: #000;
    }

    .confianza-logo-badge img {
      height: 34px;
      width: auto;
      display: block;
    }

    .confianza-logo-badge.bg-white-badge {
      background: var(--white);
    }

    

    /* ── CTA Section (cyan/teal) ── */
    .section-respaldo-cta {
      background-color: var(--purple);
      padding: 0 50px 80px;
    }

    .respaldo-cta-card {
      max-width: 100%;
      margin: 0 auto;
      background: #01a9dd;
      border-radius: 30px;
      padding: 70px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 28px;
    }

    .respaldo-cta-card h2 {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.25;
      max-width: 520px;
      margin: 0;
    }

    .respaldo-cta-card h2 .highlight-yellow {
      color: var(--yellow);
    }

/* ============================
   ACERCA DE ATTIA
============================ */

/* ── HERO ── */
.attia-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(rgb(25 25 70 / 14%), rgb(25 25 70 / 49%)),
              url(https://staging.yosolemio.com//wp-content/uploads/2026/04/acerca-de-attia.webp) center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cls-1 { fill: #fff; }
.attia-hero__logo-slot svg { width: 200px; height: auto; }
.attia-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 60px 24px;
}
.attia-hero__logo-slot { margin-bottom: 8px; }
.attia-hero__brand {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.attia-hero__title {
  font-family: var(--font);
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* ── BANDA PÚRPURA CONTINUA (wrapper nuevo) ── */
.attia-purple-band {
  background: var(--purple);
  padding: 52px 24px 64px;
}

/* ── QUIÉNES SOMOS ── */
/* CAMBIOS: background blanco, border-radius, shadow, overflow hidden, max-width, margin auto, colores de texto */
.attia-quienes {
  overflow: hidden;
  max-width: 100%;  
  margin: 0 auto;
  min-height: 380px;
}
.attia-quienes .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-dark);
}
.attia-quienes__text {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.attia-quienes__heading {
  font-family: var(--font);
  font-size: 35px;
  font-weight: 700;
  color: var(--dark);
}
.attia-quienes__body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}
.attia-quienes__cta {
  display: inline-block;
  margin-top: 6px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  width: fit-content;
  transition: opacity var(--transition);
}
.attia-quienes__cta:hover { opacity: 0.88; }
.attia-quienes__media { position: relative; overflow: hidden; padding: 40px 30px;}
.attia-quienes__media .amenidades-main-img { width: 100%; height: 100%; }
.attia-quienes__media .apt-slideshow { width: 100%; height: 100%; min-height: 340px; }

/* ── TAGLINE ── */
/* CAMBIO: se quita background propio, lo hereda del .attia-purple-band */
.attia-tagline {
  padding: 70px 48px 90px;
  text-align: center;
}
.attia-tagline__text {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  max-width: 900px;
  margin: 0 auto;
}

/* ── MISIÓN / VISIÓN ── */
/* CAMBIOS: gap, max-width, margin auto en el grid; border-radius y shadow en cada block */
.attia-mv {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
}

.attia-mv .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.attia-mv__block {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}
.attia-mv__block--mision { background: var(--cyan); }
.attia-mv__block--vision { background: var(--yellow); }
.attia-mv__body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color:#1E1E1E !important;
}
.attia-mv__label {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 16px;
}
.attia-mv__block--mision .attia-mv__label { color: var(--yellow); }
.attia-mv__block--vision .attia-mv__label { color: var(--red); }

/* ── CTA + FORM — sin cambios ── */
.attia-cta {
  background: var(--red);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.attia-cta__left { display: flex; flex-direction: column; gap: 24px; }
.attia-cta__title {
  font-family: var(--font);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}
.attia-cta__highlight { color: var(--yellow); }
.attia-cta__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.attia-cta__btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: opacity var(--transition);
}
.attia-cta__btn:hover { opacity: 0.88; }
.attia-cta__btn--solid { background: var(--white); color: var(--red); }
.attia-cta__btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
}




/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  #navbar { width: calc(100% - 40px); top: 12px; }
  .navbar-links { gap: 16px; }
  .navbar-links a { font-size: 15px; }

  .amenidades-grid,
  .beneficios-inner,
  .apartamento-inner,
  .cta-final-inner { grid-template-columns: 1fr; gap: 40px; }

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

  .section-beneficios .container { padding: 60px 40px; }

  .amenidades,
  .section-ubicacion,
  .section-novedades,
  .section-contacto{ padding: 60px 30px; }

  .section-footer { padding: 0; }
  .footer-inner{padding: 40px 30px;}

  /*VISTA AMENIDADES*/
  .amenidades-page-inner { padding: 40px 10px 0; }
  .amenidades-main-card,
  .amenidades-secondary-card { padding: 28px 24px; }
  .amenidades-main-img,
  .amenidades-secondary-img { width: 300px; height: 240px; }
  .section-apartamento-page { padding: 60px 30px; }
  .galeria-slide { min-width: calc(60% - 8px); height: 320px; }

   /*VISTA ENTORNO*/
  .entorno-page-inner { padding: 40px 30px 0; }
  .entorno-card-body  { grid-template-columns: 1fr; gap: 24px; }
  .entorno-card-img   { height: 260px; }
  .entorno-img-placeholder { height: 260px; }
  .entorno-category-row { grid-template-columns: 1fr; gap: 16px; }
  .entorno-why        { flex-direction: column; gap: 8px; }
}
@media (max-width: 1100px) {
      .team-grid { grid-template-columns: repeat(2,1fr); gap: 32px 24px; }
    }
@media (max-width: 991px) {
      .respaldo-hero {
        padding: 100px 10px 60px;
      }

      .respaldo-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
      }

      .respaldo-banner {
        padding: 40px 10px 60px;
      }

      .respaldo-banner-img-wrap {
        aspect-ratio: 16/9;
      }

      .section-respaldo-acordeon {
        padding: 60px 24px 60px;
        border-radius: 30px;
      }

      .respaldo-acordeon-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .respaldo-acordeon-image {
        aspect-ratio: 4/3;
        order: -1;
      }

      .section-confianza {
        padding: 60px 10px;
      }

      .confianza-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .confianza-logos-col {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .confianza-logo-badge {
        min-width: unset;
        flex: 1;
        min-width: 140px;
      }

      .section-respaldo-cta {
        padding: 0 10px 60px;
      }


     .footer-inner {
    border-radius: 40px 40px 0 0;
    padding: 32px 24px 16px;
  }

  .footer-top {
    margin-bottom: 32px;
  }

  /* Oculta solo el contenido, no el col que contiene la sticky-bar */
  .footer-nav,
  .footer-contact {
    display: none !important;
  }

  /* Elimina el espacio del col vacío de navegación */
  .footer-top .col-12.col-lg-4:has(.footer-nav) {
    display: none !important;
  }

  /* El col del contacto se queda pero sin padding/gap para no generar espacio */
  .footer-top .col-12.col-lg-4:has(.footer-contact) {
    padding: 0 !important;
    margin: 0 !important;
    height: 0;
    overflow: visible;
  }

  /* Brand centrado */
  .footer-brand {
    align-items: center;
    gap: 20px;
  }

  /* Badges en fila horizontal */
  .footer-trust-badges {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .badge-fiducia,
  .badge-banco {
    width: auto;
    flex: 1;
    max-width: 110px;
    justify-content: center;
    padding: 0 6px;
  }

  .badge-fiducia img,
  .badge-banco img {
    height: 16px;
    width: auto;
    max-width: 100%;
  }

  /* Footer bottom: 2 arriba, 1 abajo */
  .footer-bottom {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom span,
  .footer-bottom a {
    flex: 0 0 calc(50% - 4px);
    text-align: center;
    font-size: 11px;
    white-space: nowrap;
  }

  .footer-bottom span:last-child,
  .footer-bottom a:last-child {
    flex: 0 0 100%;
  }
    }
@media (max-width: 860px) {
      .page-wrap          { padding: 0 24px; }
      .pg-header-title    { flex: none; }
      .tram-card          { flex-direction: column; padding: 28px 24px; }
      .tram-card__photo   { flex: none; width: 100%; height: 300px; }
    }

@media (max-width: 768px) {
.section-title,
  .planos-title,.modal-card-title
   {
    font-size: 24px;
    font-weight: 800;
    text-align: center !important;
    line-height: 1;
  }
  .navbar-links,
  .btn-nav-cta { display: none; }

  .navbar-toggler-custom { display: block; }

  #navbar { width: calc(100% - 24px); top: 8px; }

  .section-wave-top , .section-wave-bottom{
    display: none;
  }
  .hero-content {
    padding: 100px 24px 60px;
  }

  .hero-title , .amenidades-card-title ,.ubicacion-title ,.cta-final-title   { font-size: 26px; text-align: center;      line-height: 1;}
  .hero-title strong { font-size: 36px; }

  .btn-pill,.feature-pill-text {
    font-size: 16px;
  }

  .beneficio-header{
    padding: 0;
  }
  .section-contacto{
    padding: 0;
  }

  .cta-final-inner{
    padding: 40px 20px;;
  }
  .apartamento-price, .price-sub{
    font-size: 24px;
  }
  .ubicacion-map img{
    object-fit: cover;
  }
   .badge-fiducia,
  .badge-banco {
    width: 70%;
  }
  .novedades-grid      { grid-template-columns: 1fr; }
  .footer-top          { margin-bottom: 32px;  }
  
  .amenidades-features { grid-template-columns: 1fr; }
  .form-row            { flex-direction: column; gap: 16px; }
  .cta-final-actions   { flex-direction: column; }

  .section-beneficios  .container { border-radius: 32px; padding: 50px 20px 48px; }

  .whatsapp-float { right: 16px; bottom: 115px; padding: 8px 16px 8px 16px; }
  .whatsapp-float img { width: 32px; height: 32px; }

  .amenidades,.section-planos,
  .section-ubicacion,
  .section-novedades
  { padding: 40px 10px; }

  .section-novedades{padding-top: 50px;}

  /*VISTA AMENIDADES*/
   .amenidades-page { padding-top: 80px; }
      .amenidades-page-inner { padding: 100px 10px 0; }
      .amenidades-hero { height: 260px; border-radius: 16px; }
      .amenidades-hero-content { padding: 0 24px; }
      .amenidades-hero-num { font-size: 72px; }
      .amenidades-hero-text { font-size: 28px; }

      .amenidades-main-card {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .amenidades-main-list { grid-template-columns: 1fr; gap: 16px; }
      .amenidades-main-img { width: 100%; height: 220px; }

      .amenidades-secondary-card {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .amenidades-secondary-list { grid-template-columns: 1fr; gap: 14px; }
      .amenidades-secondary-img { width: 100%; height: 220px; order: -1; }

      .amenidad-label { font-size: 16px; }
      .amenidades-main-slideshow{aspect-ratio: 200/200;}
      .amenidades-secondary-card .amenidades-main-slideshow{aspect-ratio: 200/200;}


      .section-apartamento-page { padding: 40px 10px; }
      .apartamento-page-title { font-size: 28px; }
      .apartamento-page-grid { grid-template-columns: 1fr; gap: 24px; }
      .apartamento-page-img { height: 280px; }
      .apt-feature-text { font-size: 16px; }
      .galeria-slide { min-width: calc(85% - 8px); height: 240px; }

      /*VISTA ENTORNO*/
      .entorno-page       { padding-top: 80px; }
      .entorno-page-inner { padding: 100px 20px 0; }
      .entorno-hero-title { font-size: 25px;  text-align: center;}
      .entorno-hero-desc  { font-size: 15px;text-align: center;}
      .entorno-card .container      { padding: 28px 20px; }
      .entorno-card-img   {  height: 220px; }
      .entorno-img-placeholder {width: 100%; height: 220px; }
      .entorno-card--purple .entorno-card-img-full { height: 220px; }
      .entorno-card--purple .entorno-img-placeholder-full { height: 220px; }
      .entorno-item-text  { font-size: 14px; }
      .entorno-why-label  { font-size: 16px; white-space: normal; margin-top: 12px;}
      .entorno-why-text   { font-size: 14px; }
      .entorno-category-name {white-space: normal;}
      .entorno-card--cyan .entorno-why{ flex-direction: column; gap: 10px;}
      .entorno-card--white .entorno-why{ flex-direction: column; gap: 10px;}
      .entorno-card--purple .entorno-card-layout { display: flex;flex-direction: column-reverse;}
      .entorno-card--purple .entorno-right-col {margin-left: 0; margin-bottom: 28px; height: 220px;}
      .entorno-card--purple .entorno-left-col {padding-right: 0;border-right: none;}
      .entorno-category-name {white-space: normal;}

      /*VISTA 360° */
      .section-recorrido360 {padding: 56px 16px 64px;}
      .deco-ring { display: none; }
      .badge-360 { font-size: 0.7rem; padding: 5px 10px; }

      /*VISTA SLIDER*/

      .section-galeria {padding: 60px 10px 80px;}
      .galeria-img {height: 280px;}
      .galeria-arrow--prev {left: 8px;}
      .galeria-arrow--next {right: 8px;}

      /*VISTA ACERCA DE*/
      .attia-purple-band { padding: 36px 20px 48px; }
      .attia-quienes .container,
      .attia-mv .container,
      .attia-cta .container{ grid-template-columns: 1fr; }
      .attia-quienes__media { min-height: 260px; padding: 20px 10px;}
      .attia-quienes__media .apt-slideshow { min-height: 260px; }
      .attia-quienes__text,
      .attia-mv__block { padding: 36px 24px; align-items: center; text-align: center;}
      .attia-tagline { padding: 60px 0px; }
      .attia-cta { padding: 36px 24px; }
      .attia-tagline__text{font-size: 16px; font-width: 100%;}

      /*BARRA STICKY*/

  .sticky-bar {flex-direction: column; align-items: center; justify-content: center; height: auto; padding: 7px 20px 12px; gap: 6px;}
  .bar-text {font-size: 14px;}
  .bar-address {font-size: 12px;}
  .bar-cta {width: 100%;justify-content: center;font-size: 13px;padding: 9px 16px;margin-top: 2px;
  }

  /*wave*/
  .parrallax__wave{background-repeat: no-repeat;}

  /*form*/

  .modal-card {padding: 40px 30px 25px 30px;}

    }

@media (max-width: 600px) {
      .team-grid    { grid-template-columns: 1fr; gap: 70px; align-items: start; max-height: 100%;}
      .section-pg-header      { padding: 90px 0 36px; }
      .section-tram-header    { padding: 40px 0 30px; }
      .team-card{height: auto;}
      .team-card__photo{height: 400px;}
      .section-tram-card      { padding-bottom: 56px; }
      .section-team           { padding-bottom: 48px; }
      .pg-header-sub{margin-top: 0;}
      .pg-header-sub, .pg-header-title {text-align: center;}

      /*VISTA RESPALDO*/
      .respaldo-hero-title {font-size: 2rem;}
      .respaldo-banner-logos {bottom: 12px; right: 12px; gap: 6px;}
      .respaldo-logo-badge img {height: 22px;}
      .confianza-logos-col {flex-direction: column;}

      /*vista ubicacion*/
      .section-ubicacion {
    padding: 60px 10px 70px;
  }

  .ubicacion-inner {
    flex-direction: column;
    gap: 36px;
  }

  .ubicacion-left {
    align-items: center;
    text-align: center;
  }

  .ubicacion-title {
    text-align: center;
  }

  .ubicacion-right {
    width: 100%;
  }
      }