/* ============================================================
   RINCÓN DEPARTAMENTOS — CSS PERSONALIZADO
   Identidad visual: Patagonia + alojamiento moderno + Neuquén
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* --- Variables de color --- */
:root {
  --rd-primary:      #123B4A;
  --rd-dark:         #0B2733;
  --rd-accent:       #C7A77A;
  --rd-gold:         #D5B06A;
  --rd-bg:           #F8F7F3;
  --rd-muted:        #66727A;
  --rd-white:        #FFFFFF;
  --rd-border:       #E2DDD8;

  /* Override Bootstrap primary */
  --bs-primary:      #123B4A;
  --bs-primary-rgb:  18, 59, 74;
}

/* --- Tipografía base --- */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--rd-bg);
  color: #2C3E45;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* ============================================================
   NAVBAR / HEADER
   ============================================================ */

/* ============================================================
   NAVBAR / HEADER
   ============================================================ */

.site-nav {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  margin: 0;
}

.site-nav.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.menu-bg-wrap {
  width: 100%;
  background: rgba(11, 39, 51, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(199, 167, 122, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0;
}

.site-navigation {
  padding: 14px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo tipográfico */
.logo-rincon {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--rd-white) !important;
  text-decoration: none !important;
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s ease;
}

.logo-rincon .logo-top {
  font-size: 1.35rem;
  color: var(--rd-white);
  letter-spacing: -0.01em;
}

.logo-rincon .logo-bottom {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--rd-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-rincon:hover {
  opacity: 0.9;
}

/* Menú de navegación */
.site-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-menu li a {
  color: rgba(255,255,255,0.88) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  padding: 6px 2px;
  text-decoration: none !important;
}

.site-menu li a:hover,
.site-menu li.active > a {
  color: var(--rd-accent) !important;
}

/* Botón CTA del header */
.btn-consultar-header {
  background: var(--rd-accent);
  color: var(--rd-dark) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  border: 2px solid var(--rd-accent);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-consultar-header:hover {
  background: var(--rd-gold);
  border-color: var(--rd-gold);
  color: var(--rd-dark) !important;
}

/* Burger mobile */
.burger span,
.burger span::before,
.burger span::after {
  background: var(--rd-white);
}

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

.hero {
  position: relative;
  width: 100%;
  height: 82vh !important;
  min-height: 520px !important;
  max-height: 720px !important;
  overflow: hidden;
  background-color: var(--rd-dark);
}

.hero-slide {
  width: 100%;
  height: 100%;
}

.hero-slide-item {
  position: relative;
  width: 100%;
  height: 82vh !important;
  min-height: 520px !important;
  max-height: 720px !important;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 39, 51, 0.75) 0%,
    rgba(18, 59, 74, 0.55) 50%,
    rgba(11, 39, 51, 0.82) 100%
  );
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding-top: 185px; /* Offset for header */
  
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero-slide-content .hero-pretitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rd-accent);
  margin-bottom: 14px;
  display: inline-block;
  background: rgba(199, 167, 122, 0.12);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(199, 167, 122, 0.25);
}

.hero-slide-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--rd-white);
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  max-width: 860px;
}

.hero-slide-content p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  color: rgba(255,255,255,0.92);
  max-width: 660px;
  line-height: 1.65;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn-hero-primary {
  background: var(--rd-accent);
  color: var(--rd-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--rd-accent);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: var(--rd-gold);
  border-color: var(--rd-gold);
  color: var(--rd-dark);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: rgba(255,255,255,0.08);
  color: var(--rd-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-outline:hover {
  border-color: var(--rd-accent);
  color: var(--rd-accent);
  background: rgba(199, 167, 122, 0.15);
  transform: translateY(-2px);
}

/* Dots nav del hero - Barra sutil flotante */
.tns-nav {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 39, 51, 0.65);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tns-nav button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tns-nav button.tns-nav-active {
  background: var(--rd-accent);
  width: 22px;
  border-radius: 10px;
}

/* ============================================================
   SECCIONES GENERALES
   ============================================================ */

.rd-section {
  padding: 80px 0;
}

.rd-section-light {
  background-color: var(--rd-bg);
}

.rd-section-white {
  background-color: var(--rd-white);
}

.rd-section-dark {
  background-color: var(--rd-dark);
  color: var(--rd-white);
}

.rd-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--rd-primary);
  margin-bottom: 12px;
}

.rd-section-title.on-dark {
  color: var(--rd-white);
}

.rd-section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--rd-muted);
  line-height: 1.7;
  max-width: 560px;
}

.rd-section-subtitle.on-dark {
  color: rgba(255,255,255,0.75);
}

.rd-accent-line {
  width: 48px;
  height: 3px;
  background: var(--rd-accent);
  border-radius: 2px;
  margin: 14px 0 28px;
}

.rd-accent-line.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CARDS DE DEPARTAMENTOS (depto-card & rd-property-card)
   ============================================================ */

.depto-card,
.rd-property-card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  background: var(--rd-white);
  box-shadow: 0 4px 20px rgba(18, 59, 74, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.depto-card:hover,
.rd-property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(18, 59, 74, 0.14);
}

.depto-card-img,
.rd-property-card-img {
  position: relative;
  overflow: hidden;
  height: 260px;
  width: 100%;
  flex-shrink: 0;
}

.depto-card-img img,
.rd-property-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.depto-card:hover .depto-card-img img,
.rd-property-card:hover .rd-property-card-img img {
  transform: scale(1.05);
}

.depto-card-badge,
.rd-property-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--rd-primary);
  color: var(--rd-white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 2;
}

.depto-card-body,
.rd-property-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.depto-card-title,
.rd-property-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rd-primary);
  margin-bottom: 6px;
}

.depto-card-location,
.rd-property-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--rd-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.depto-card-location i,
.rd-property-location i {
  color: var(--rd-accent);
}

.depto-card-features,
.rd-property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rd-border);
}

.depto-feature-tag,
.rd-tag {
  background: var(--rd-bg);
  color: var(--rd-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--rd-border);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.depto-feature-tag i,
.rd-tag i {
  color: var(--rd-accent);
  font-size: 0.82rem;
}

.rd-property-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--rd-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.rd-property-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.btn-ver-depto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rd-primary);
  color: var(--rd-white) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none !important;
  border: 2px solid var(--rd-primary);
  transition: all 0.25s ease;
  width: 100%;
  text-align: center;
}

.btn-ver-depto:hover {
  background: transparent;
  color: var(--rd-primary) !important;
}

.btn-whatsapp-sm {
  font-size: 0.88rem;
  padding: 10px 18px;
  justify-content: center;
  width: 100%;
}

/* ============================================================
   SECCIÓN BENEFICIOS
   ============================================================ */

.beneficio-item {
  padding: 28px 24px;
  background: var(--rd-white);
  border-radius: 14px;
  border: 1px solid var(--rd-border);
  height: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.beneficio-item:hover {
  border-color: var(--rd-accent);
  box-shadow: 0 6px 24px rgba(18,59,74,0.08);
  transform: translateY(-3px);
}

.beneficio-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--rd-primary), #1a5168);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.beneficio-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--rd-primary);
  margin-bottom: 8px;
}

.beneficio-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--rd-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   SECCIÓN CONTEXTO / VACA MUERTA
   ============================================================ */

.rd-context-section {
  background: linear-gradient(135deg, var(--rd-primary) 0%, var(--rd-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.rd-context-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(199, 167, 122, 0.06);
  pointer-events: none;
}

.rd-context-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.rd-context-icon {
  width: 64px;
  height: 64px;
  background: rgba(199, 167, 122, 0.15);
  border: 1px solid rgba(199, 167, 122, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

/* ============================================================
   SECCIÓN EMPRESAS
   ============================================================ */

.rd-empresas-section {
  background: var(--rd-bg);
  padding: 80px 0;
}

.rd-empresas-card {
  background: var(--rd-white);
  border-radius: 16px;
  border: 1px solid var(--rd-border);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 4px 20px rgba(18, 59, 74, 0.06);
}

.rd-empresas-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, var(--rd-primary), #1a5168);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.rd-empresas-content {
  flex: 1;
}

.rd-empresas-content h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--rd-primary);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.rd-empresas-content p {
  font-family: 'Inter', sans-serif;
  color: var(--rd-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 800px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rd-primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-whatsapp:hover {
  background: #0B2733;
  color: #fff;
  transform: translateY(-2px);
}

/* Tablet y celular */
@media (max-width: 768px) {

  .rd-empresas-section {
    padding: 60px 0;
  }

  .rd-empresas-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 24px;
  }

  .rd-empresas-content h2 {
    font-size: 1.4rem;
  }

  .rd-empresas-content p {
    font-size: 0.9rem;
  }

  .btn-whatsapp {
    justify-content: center;
  }
}
/* ============================================================
   SECCIÓN NOSOTROS (HOME)
   ============================================================ */

.rd-nosotros-section {
  background: var(--rd-white);
  padding: 80px 0;
}

.rd-nosotros-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(18,59,74,0.12);
}

.rd-nosotros-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.rd-nosotros-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 3px solid transparent;
  background: linear-gradient(135deg, var(--rd-accent), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

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

.rd-cta-section {
  background: linear-gradient(135deg, var(--rd-primary) 0%, #0d2f3b 100%);
  padding: 80px 0;
  text-align: center;
}

.rd-cta-section h2 {
  color: var(--rd-white);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.rd-cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none !important;
  border: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: #fff !important;
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
}

.btn-disponibilidad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rd-accent);
  color: var(--rd-dark) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none !important;
  border: 2px solid var(--rd-accent);
  transition: all 0.25s ease;
}

.btn-disponibilidad:hover {
  background: var(--rd-gold);
  border-color: var(--rd-gold);
  color: var(--rd-dark) !important;
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--rd-dark) !important;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}

.site-footer .footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--rd-white);
  line-height: 1.2;
  margin-bottom: 4px;
  display: block;
}

.site-footer .footer-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rd-accent);
  margin-bottom: 16px;
  display: block;
}

.site-footer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.site-footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rd-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin-bottom: 10px;
}

.site-footer .footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer .footer-links a:hover {
  color: var(--rd-accent);
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 36px 0 24px;
}

.footer-bottom {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--rd-accent);
  color: var(--rd-dark) !important;
}

/* ============================================================
   PÁGINAS INTERNAS — HERO INTERNO
   ============================================================ */

.hero-inner {
  background-size: cover;
  background-position: center;
  padding: 140px 0 70px;
  position: relative;
}

.hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,39,51,0.80) 0%, rgba(18,59,74,0.65) 100%);
}

.hero-inner .container {
  position: relative;
  z-index: 2;
}

.hero-inner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--rd-white);
  margin-bottom: 16px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--rd-accent) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}

.breadcrumb-item.active {
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   GALERÍA DE DEPARTAMENTO (property-single)
   ============================================================ */

.depto-gallery .tns-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.depto-info-panel {
  background: var(--rd-white);
  border-radius: 14px;
  border: 1px solid var(--rd-border);
  padding: 32px;
  position: sticky;
  top: 100px;
}

.depto-info-panel .depto-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rd-primary);
  margin-bottom: 4px;
}

.depto-info-panel .depto-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--rd-muted);
  margin-bottom: 20px;
}

.depto-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rd-border);
}

.depto-spec-item {
  background: var(--rd-bg);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--rd-primary);
  font-weight: 500;
}

.depto-spec-item span.icon {
  font-size: 1.1rem;
}

.btn-wsp-depto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background 0.25s ease, transform 0.25s ease;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

.btn-wsp-depto:hover {
  background: #1fb855;
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-contactar-depto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--rd-primary) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  border: 2px solid var(--rd-primary);
  transition: all 0.25s ease;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.btn-contactar-depto:hover {
  background: var(--rd-primary);
  color: var(--rd-white) !important;
}

/* ============================================================
   CONTACTO
   ============================================================ */

.rd-contact-section {
  background: var(--rd-bg);
  padding: 90px 0;
}

.rd-section-heading .rd-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--rd-accent);
  margin-bottom: 10px;
}

.rd-section-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rd-primary);
  margin-bottom: 14px;
}

.rd-section-heading p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--rd-muted);
  max-width: 560px;
}


/* Información */

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(
    135deg,
    var(--rd-primary),
    #1a5168
  );
  border-radius: 10px;

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

  font-size: 1.15rem;
  color: var(--rd-white);
}

.contact-info-text h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rd-primary);
  margin: 0 0 4px;
}

.contact-info-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--rd-muted);
  line-height: 1.5;
  margin: 0;
}

.contact-info-text a {
  color: var(--rd-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-text a:hover {
  color: var(--rd-primary);
}

.contact-placeholder {
  color: var(--rd-muted);
  font-style: italic;
}


/* Botón WhatsApp */

.rd-contact-section .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: var(--rd-primary);
  color: #fff;

  padding: 13px 24px;
  border-radius: 8px;

  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;

  text-decoration: none;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.rd-contact-section .btn-whatsapp:hover {
  background: #0B2733;
  color: #fff;
  transform: translateY(-2px);
}


/* Card del formulario */

.rd-contact-card {
  background: var(--rd-white);
  border: 1px solid var(--rd-border);
  border-radius: 16px;

  padding: 40px;

  box-shadow: 0 4px 20px rgba(18, 59, 74, 0.06);
}

.rd-contact-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--rd-primary);
  margin-bottom: 10px;
}

.rd-contact-card > p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--rd-muted);
  margin-bottom: 25px;
}

.rd-contact-card .form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rd-primary);
  margin-bottom: 6px;
}

.rd-contact-card .form-control {
  border: 1px solid var(--rd-border);
  border-radius: 8px;
  padding: 11px 13px;

  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;

  color: var(--rd-primary);
  background: #fff;

  box-shadow: none;
}

.rd-contact-card .form-control:focus {
  border-color: var(--rd-accent);
  box-shadow: 0 0 0 3px rgba(199, 167, 122, 0.15);
}

.rd-contact-card textarea {
  resize: vertical;
}


/* Botón formulario */

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;

  border: none;
  border-radius: 8px;

  padding: 13px 20px;

  background: var(--rd-primary);
  color: #fff;

  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.btn-contact:hover {
  background: #0B2733;
  color: #fff;
  transform: translateY(-2px);
}


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

@media (max-width: 991px) {

  .rd-contact-section {
    padding: 70px 0;
  }

  .rd-contact-card {
    padding: 32px 28px;
  }

}

@media (max-width: 576px) {

  .rd-contact-section {
    padding: 60px 0;
  }

  .rd-section-heading h2 {
    font-size: 1.65rem;
  }

  .rd-contact-card {
    padding: 28px 20px;
  }

  .contact-info-item {
    gap: 12px;
  }

}
.rd-form-control {
  border: 1.5px solid var(--rd-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #2C3E45;
  background: var(--rd-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.rd-form-control:focus {
  border-color: var(--rd-primary);
  box-shadow: 0 0 0 3px rgba(18,59,74,0.1);
  outline: none;
}

.rd-form-control::placeholder {
  color: #aab4bb;
}

.rd-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rd-primary);
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.02em;
}

.btn-submit-form {
  background: var(--rd-primary);
  color: var(--rd-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 10px;
  border: 2px solid var(--rd-primary);
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
}

.btn-submit-form:hover {
  background: transparent;
  color: var(--rd-primary);
}

/* ============================================================
   MAPA PLACEHOLDER
   ============================================================ */

.map-placeholder {
  background: var(--rd-bg);
  border: 2px dashed var(--rd-border);
  border-radius: 14px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--rd-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  text-align: center;
  padding: 20px;
}

.map-placeholder .map-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

/* ============================================================
   SERVICIOS
   ============================================================ */

.servicio-card {
  background: var(--rd-white);
  border-radius: 14px;
  border: 1px solid var(--rd-border);
  padding: 32px 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(18,59,74,0.1);
  border-color: var(--rd-accent);
}

.servicio-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.servicio-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rd-primary);
  margin-bottom: 10px;
}

.servicio-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--rd-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   NOSOTROS PAGE
   ============================================================ */

.about-values .value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.about-values .value-dot {
  width: 10px;
  height: 10px;
  background: var(--rd-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.about-values h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rd-primary);
  margin-bottom: 4px;
}

.about-values p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--rd-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   PRELOADER
   ============================================================ */

#overlayer {
  background: var(--rd-dark);
}

.loader .spinner-border {
  color: var(--rd-accent);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */

@media (max-width: 991.98px) {
  .hero {
    min-height: 75vh;
  }

  .hero-slide-item {
    min-height: 75vh;
  }

  .hero-slide-content {
    padding: 100px 0 60px;
  }

  .rd-section {
    padding: 60px 0;
  }

  .site-navigation {
    justify-content: space-between;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 70vh;
  }

  .hero-slide-item {
    min-height: 70vh;
  }

  .hero-slide-content h1 {
    font-size: 1.8rem;
  }

  .hero-slide-content p {
    font-size: 0.95rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
  }

  .rd-section {
    padding: 48px 0;
  }

  .rd-cta-section {
    padding: 56px 0;
  }

  .depto-card-img {
    height: 200px;
  }

  .depto-info-panel {
    position: static;
    margin-top: 24px;
  }

  .depto-gallery .tns-item img {
    height: 260px;
  }

  .rd-nosotros-image-wrap img {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .menu-bg-wrap {
    padding: 0 4px;
  }

  .logo-rincon .logo-top {
    font-size: 1.1rem;
  }

  .rd-empresas-card {
    padding: 28px 20px;
  }

  .depto-specs-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ============================================================ */
.wsp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #FFFFFF !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  text-decoration: none !important;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  animation: wspPulse 2.5s infinite;
}

.wsp-float-btn:hover {
  background: #1fb855;
  color: #FFFFFF !important;
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.6);
}

.wsp-float-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--rd-dark);
  color: var(--rd-white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.wsp-float-btn:hover .wsp-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-4px);
}

@keyframes wspPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 575.98px) {
  .wsp-float-btn {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
  .wsp-float-tooltip {
    display: none;
  }
}

