/* ==========================================================================
   ARMAS DOOMO INMOBILIARIA - ESTILOS MODERNOS Y ELEGANTES
   Reconstrucción y diseño de alta gama para desarrollo inmobiliario
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Paleta Oficial Armas Doomo */
  --primary: #ffbf02;
  --primary-hover: #e5aa00;
  --primary-light: #fff9e6;
  --primary-glow: rgba(255, 191, 2, 0.35);

  --navy-900: #07111e;
  --navy-800: #0d1b2a;
  --navy-700: #14283e;
  --navy-600: #1b3552;
  --navy-card: #112237;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --bg-body: #ffffff;
  --bg-alt: #f8fafc;
  --bg-alt-2: #f1f5f9;

  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.1);

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(7, 17, 30, 0.18);
  --shadow-glow: 0 8px 25px var(--primary-glow);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset y base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Botones con estilo moderno */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--navy-900);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 191, 2, 0.5);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background-color: var(--text-white);
  color: var(--navy-900);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
}

.btn-outline-dark:hover {
  background-color: var(--navy-900);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.75rem;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--navy-900);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  white-space: nowrap;
}

.top-bar-item:hover {
  color: var(--primary);
}

.top-bar-item svg {
  width: 13px;
  height: 13px;
  fill: var(--primary);
  flex-shrink: 0;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary);
  color: var(--navy-900);
  transform: translateY(-1px);
}

.social-link svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

/* ==========================================================================
   MAIN HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--text-white);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.3px;
  padding: 8px 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link svg {
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-hover);
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown para proyectos */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--text-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 10px 0;
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-700);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--navy-900);
  padding-left: 22px;
}

.dropdown-item .district-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--bg-alt-2);
  color: var(--text-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-header {
  padding: 8px 18px !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.6px !important;
  white-space: nowrap !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 4px 14px rgba(255, 191, 2, 0.35) !important;
  height: 38px;
  line-height: 1;
}

/* Hamburguesa móvil */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--navy-800);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

/* ==========================================================================
   HERO SLIDER (HOME B1)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background: var(--navy-900) url('../../uploads/proyectos/la-laguna/fachada-la-laguna-aerea.jpg') center/cover no-repeat;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--text-white);
  overflow: hidden;
  transition: background-image 0.6s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 30, 0.94) 0%, rgba(13, 27, 42, 0.85) 55%, rgba(7, 17, 30, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* Slides */
.hero-slides-wrapper {
  position: relative;
  min-height: 420px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateX(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 191, 2, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.hero-slide-logo {
  max-width: 220px;
  height: 55px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-white);
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: var(--radius-md);
}

.feature-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--navy-900);
  border-radius: 6px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.feature-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-white);
}

.feature-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Mini tabs selector del slider */
.hero-slider-tabs {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  position: relative;
  z-index: 3;
}

.slider-tab-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-tab-btn.active, .slider-tab-btn:hover {
  background: var(--primary);
  color: var(--navy-900);
  border-color: var(--primary);
  font-weight: 800;
}

/* Quick Cotizador Card (Hero) */
.hero-form-card {
  background: rgba(17, 34, 55, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ffe072);
  border-radius: 4px 4px 0 0;
}

.form-card-head {
  margin-bottom: 20px;
  text-align: center;
}

.form-card-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 4px;
  display: block;
}

.form-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
}

.form-group {
  margin-bottom: 14px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 191, 2, 0.25);
}

.form-select option {
  background-color: var(--navy-800);
  color: var(--text-white);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  margin-bottom: 16px;
}

.form-checkbox-label input[type="checkbox"] {
  accent-color: var(--primary);
  margin-top: 2px;
}

.form-checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

/* ==========================================================================
   CATÁLOGO DE PROYECTOS ("TENEMOS EL PROYECTO QUE BUSCAS")
   ========================================================================== */
.projects-section {
  padding: 90px 0;
  background-color: var(--bg-alt);
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-700);
  background: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Filtros por Distrito */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}

.filter-btn {
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  background-color: var(--text-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--navy-900);
  transform: translateY(-1px);
}

.filter-btn.active {
  background-color: var(--navy-900);
  color: var(--primary);
  border-color: var(--navy-900);
  box-shadow: var(--shadow-md);
}

/* Grilla de Proyectos */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  background-color: var(--text-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-light);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 191, 2, 0.4);
}

.card-img-wrap {
  position: relative;
  height: 240px;
  background-color: #f1f5f9;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .card-img {
  transform: scale(1.06);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  z-index: 2;
}

.card-tag.tag-immediate {
  background-color: var(--primary);
  color: var(--navy-900);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card-tag.tag-soon {
  background-color: var(--navy-800);
  color: var(--text-white);
}

.card-tag.tag-preventa {
  background-color: #10b981;
  color: var(--text-white);
}

.card-district-chip {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(7, 17, 30, 0.8);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

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

.card-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  min-height: 42px;
}

.card-project-logo {
  max-height: 36px;
  max-width: 140px;
  object-fit: contain;
}

.card-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-address svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
  flex-shrink: 0;
}

.card-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background-color: var(--bg-alt);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--navy-800);
  font-weight: 600;
}

.spec-item svg {
  width: 15px;
  height: 15px;
  fill: var(--navy-600);
  flex-shrink: 0;
}

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

.card-actions .btn {
  flex: 1;
}

/* ==========================================================================
   TRAYECTORIA Y RESPALDO ("COMPROMISO DE BRINDARTE LO MEJOR")
   ========================================================================== */
.stats-section {
  background: var(--navy-900);
  color: var(--text-white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 191, 2, 0.1) 0%, rgba(7, 17, 30, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-6px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.4;
}

.trajectory-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 70px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trajectory-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.trajectory-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}

.trajectory-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  font-size: 1rem;
}

.trajectory-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.pillar-bullet {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-white);
}

.pillar-item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   EXPERIENCIAS / MULTIMEDIA ("EXPERIENCIAS ARMAS DOOMO")
   ========================================================================== */
.experiences-section {
  padding: 90px 0;
  background-color: var(--bg-body);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--bg-alt);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.video-thumb {
  position: relative;
  height: 200px;
  background: var(--navy-900);
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform var(--transition-normal);
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.video-play-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-left: 2px;
}

.video-card:hover .video-play-btn {
  transform: scale(1.1);
  background-color: var(--text-white);
}

.video-info {
  padding: 20px;
}

.video-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.video-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BLOG / NOTICIAS
   ========================================================================== */
.blog-section {
  padding: 90px 0;
  background-color: var(--bg-alt);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background-color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card-meta .category {
  color: var(--primary-hover);
  font-weight: 700;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.3;
  margin-bottom: 14px;
}

.blog-card-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.blog-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

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

.blog-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   COTIZADOR PRINCIPAL (#cotizaDepa)
   ========================================================================== */
.quote-section {
  padding: 90px 0;
  background: var(--navy-900);
  position: relative;
  color: var(--text-white);
}

.quote-box {
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-banner {
  background: url('../../uploads/adbh-25.jpg') center/cover no-repeat;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.quote-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 17, 30, 0.95) 0%, rgba(7, 17, 30, 0.3) 100%);
}

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

.quote-banner-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.quote-banner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.quote-form-wrap {
  padding: 48px 40px;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form-grid .full-width {
  grid-column: span 2;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
}

.footer-desc {
  margin: 16px 0 24px;
  line-height: 1.6;
  font-size: 0.85rem;
}

.footer-certifications {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.footer-cert-badge {
  background: var(--text-white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  height: 44px;
}

.footer-cert-badge img {
  max-height: 32px;
  width: auto;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.contact-box {
  margin-bottom: 14px;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-val {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-disclaimer {
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  padding: 20px 0;
  background-color: #040a12;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   FLOATING BUTTONS & MODAL
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Modal de éxito de cotización */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 30, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  position: relative;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-icon-success {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  color: var(--primary-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-icon-success svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1120px) {
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.76rem;
  }
  .btn-header {
    padding: 7px 14px !important;
    font-size: 0.7rem !important;
  }
  .top-bar-info {
    gap: 12px;
  }
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    background: var(--text-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-light);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header-actions .btn {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-slides-wrapper {
    min-height: auto;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trajectory-row {
    grid-template-columns: 1fr;
  }
  .quote-box {
    grid-template-columns: 1fr;
  }
  .quote-banner {
    min-height: 240px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .quote-form-grid {
    grid-template-columns: 1fr;
  }
  .quote-form-grid .full-width {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   ANNOUNCEMENT BAR & SPOTLIGHT: LA LAGUNA RINCONADA
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #07111e 0%, #11253e 50%, #07111e 100%);
  border-bottom: 1px solid rgba(255, 191, 2, 0.35);
  color: var(--text-white);
  padding: 8px 0;
  font-size: 0.78rem;
  text-align: center;
}

.announcement-bar a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.announcement-bar a:hover {
  color: var(--text-white);
}

.laguna-spotlight-section {
  padding: 85px 0;
  background: linear-gradient(135deg, #07111e 0%, #0d1e34 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 191, 2, 0.2);
}

.laguna-spotlight-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 191, 2, 0.12) 0%, rgba(7, 17, 30, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.laguna-spotlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.laguna-showcase-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.laguna-main-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 191, 2, 0.3);
  height: 380px;
  background: var(--navy-800);
}

.laguna-main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.laguna-main-img-box:hover img {
  transform: scale(1.03);
}

.laguna-img-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(7, 17, 30, 0.85);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.laguna-thumbs-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.laguna-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.laguna-thumb.active, .laguna-thumb:hover {
  opacity: 1;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 191, 2, 0.3);
}

.laguna-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laguna-info-box {
  display: flex;
  flex-direction: column;
}

.laguna-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.laguna-badge {
  background: var(--primary);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.laguna-tag-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
}

.laguna-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 16px;
}

.laguna-title span {
  color: var(--primary);
}

.laguna-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.laguna-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.laguna-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.laguna-perk-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.laguna-perk-item strong {
  display: block;
  font-size: 0.86rem;
  color: var(--text-white);
}

.laguna-perk-item span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.65);
}

.laguna-actions-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .laguna-spotlight-grid {
    grid-template-columns: 1fr;
  }
  .laguna-main-img-box {
    height: 280px;
  }
  .laguna-title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   LIDERAZGO CORPORATIVO Y TRANSPARENCIA SUNAT
   ========================================================================== */
.leadership-row {
  margin-top: 55px;
  padding-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.leader-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 22px;
  align-items: center;
  backdrop-filter: blur(8px);
}

.leader-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.leader-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.leader-avatar-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--primary);
  color: var(--navy-900);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  border: 2px solid var(--navy-900);
}

.leader-info {
  display: flex;
  flex-direction: column;
}

.leader-role-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.leader-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
}

.leader-title-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.leader-quote {
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  position: relative;
  padding-left: 14px;
  border-left: 2px solid var(--primary);
}

.legal-cert-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
}

.legal-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 8px;
}

.legal-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-status-valid {
  background: #10b981;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
  text-transform: uppercase;
}

.legal-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.legal-meta-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-meta-label {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin-bottom: 2px;
}

.legal-meta-val {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
}

.legal-note {
  margin-top: 14px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ==========================================================================
   SECCIÓN MAPA DE UBICACIÓN (AV. LA MOLINA)
   ========================================================================== */
.map-section {
  padding: 80px 0;
  background-color: var(--bg-alt);
}

.map-container-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  background: var(--text-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.map-info-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--primary-light);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.map-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 12px;
  line-height: 1.25;
}

.map-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.map-meta-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

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

.map-meta-item svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.map-meta-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.map-meta-item span {
  font-size: 0.88rem;
  color: var(--text-main);
}

.map-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-frame-wrap {
  position: relative;
  width: 100%;
  background: var(--bg-alt-2);
}

.map-split-container {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 560px;
  height: 100%;
}

.map-split-top {
  position: relative;
  min-height: 0;
  height: 100%;
  border-bottom: 3px solid var(--primary);
  background: #e5e3df;
  overflow: hidden;
}

.map-split-top iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-layer-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: rgba(7, 17, 30, 0.88);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  pointer-events: none;
  border: 1px solid rgba(255, 191, 2, 0.4);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.map-split-bottom {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #07111e;
}

.streetview-img-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.streetview-banner-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.streetview-img-link:hover .streetview-banner-img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.streetview-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 5;
  background: linear-gradient(135deg, rgba(7, 17, 30, 0.92) 0%, rgba(15, 23, 42, 0.92) 100%);
  border: 1px solid rgba(255, 191, 2, 0.5);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.streetview-img-link:hover .streetview-img-badge {
  background: linear-gradient(135deg, #ffbf02 0%, #e5a800 100%);
  color: #07111e;
  border-color: #ffbf02;
  box-shadow: 0 6px 22px rgba(255, 191, 2, 0.55);
}

.streetview-open-hint {
  background: var(--primary);
  color: var(--navy-900);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.streetview-img-link:hover .streetview-open-hint {
  background: #07111e;
  color: #ffbf02;
}

@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .map-container-box {
    grid-template-columns: 1fr;
  }
  .map-info-card {
    padding: 28px;
  }
  .map-frame-wrap {
    min-height: auto;
  }
  .map-split-container {
    height: 520px;
    min-height: 520px;
    grid-template-rows: 1fr 1fr;
  }
  .map-split-top,
  .map-split-bottom,
  .map-split-top iframe,
  .streetview-img-link,
  .streetview-banner-img {
    min-height: 0;
    height: 100%;
  }
}

@media (max-width: 576px) {
  .map-split-container {
    height: 460px;
    min-height: 460px;
    grid-template-rows: 1fr 1fr;
  }
  .map-split-top,
  .map-split-bottom,
  .map-split-top iframe,
  .streetview-img-link,
  .streetview-banner-img {
    min-height: 0;
    height: 100%;
  }
  .streetview-img-badge {
    padding: 6px 10px;
    font-size: 0.72rem;
  }
  .leader-card {
    flex-direction: column;
    text-align: center;
  }
  .leader-quote {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid var(--primary);
    padding-top: 10px;
  }
  .legal-meta-grid {
    grid-template-columns: 1fr;
  }
}

/* Botón Flotante de Alto Impacto para Street View 360° */
.streetview-floating-cta {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ffbf02 0%, #e5a800 100%);
  color: #07111e !important;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45), 0 0 0 3px rgba(255, 191, 2, 0.4);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.streetview-floating-cta:hover {
  background: linear-gradient(135deg, #ffd033 0%, #ffbf02 100%);
  color: #07111e !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 0 5px rgba(255, 191, 2, 0.6);
}

.streetview-icon-pulse {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #07111e;
  color: #ffbf02;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.streetview-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.streetview-cta-text strong {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #07111e;
}

.streetview-cta-text small {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(7, 17, 30, 0.75);
}

.streetview-cta-arrow {
  font-size: 1.1rem;
  font-weight: 800;
  color: #07111e;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.streetview-floating-cta:hover .streetview-cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 576px) {
  .streetview-floating-cta {
    top: 10px;
    left: 10px;
    right: 10px;
    justify-content: center;
    padding: 8px 14px;
  }
}




