/* ============================================================
   PROSEGUR ALARMAS
   ============================================================ */

/* ── TOKENS ── */
:root {
  --yellow:        #FFD000;
  --yellow-dark:   #E6BB00;
  --black:         #0A0A0A;
  --white:         #FFFFFF;
  --gray-100:      #F7F7F5;
  --gray-200:      #EFEFED;
  --gray-400:      #AEAEAE;
  --gray-600:      #6B6B6B;
  --gray-800:      #2A2A2A;

  --font-display: 'Poppins', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-pill: 100px;

  --shadow-strong: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-hero:   0 32px 80px rgba(0,0,0,0.5);

  --pad-x:     clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 8vw, 120px);
  --max-w:     1280px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--white); color: var(--black); overflow-x: hidden; }
a, a:hover { text-decoration: none; color: inherit; }
img   { display: block; max-width: 100%; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible  { opacity: 1; transform: translateY(0); }
.reveal-delay-1  { transition-delay: 0.1s; }
.reveal-delay-2  { transition-delay: 0.2s; }
.reveal-delay-3  { transition-delay: 0.3s; }
.reveal-delay-4  { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════════════
   TOPBAR
   ════════════════════════════════════════════════════════════ */
.topbar { background: var(--black); padding: 8px 0; text-align: center; }
.topbar span { font-family: var(--font-body); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-400); }
.topbar span strong { color: var(--yellow); }

/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
.main-nav { background: var(--yellow); position: sticky; top: 0; z-index: 1000; padding: 0 var(--pad-x); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 50px; width: auto; }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-right--desktop { display: flex; }

.nav-link-work {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase; color: var(--black);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  padding-bottom: 2px; white-space: nowrap;
}
.nav-link-work:hover { border-color: var(--black); opacity: 0.75; color: var(--black); }
.nav-link-work__icon { font-size: 13px; }

.nav-divider { width: 1px; height: 32px; background: rgba(0,0,0,0.2); flex-shrink: 0; }

.nav-phone { text-decoration: none; }
.nav-phone__pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--white);
  border-radius: var(--radius-pill); padding: 8px 20px 8px 16px;
  transition: background 0.2s, transform 0.15s; cursor: pointer;
}
.nav-phone__pill:hover { background: var(--gray-800); transform: translateY(-1px); }
.nav-phone__icon { font-size: 15px; color: var(--yellow); flex-shrink: 0; }
.nav-phone__text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-phone__label { font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.nav-phone__num { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--yellow); letter-spacing: -0.5px; }

.nav-mobile-right { display: none; align-items: center; gap: 10px; }

.burger-btn { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 6px 4px; }
.burger-btn span { display: block; width: 22px; height: 2.5px; background: var(--black); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.burger-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--black); }
.mobile-menu.open { max-height: 220px; }
.mobile-menu__inner { padding: 12px 20px 20px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link { display: flex; align-items: center; gap: 12px; color: var(--white); font-size: 14px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; }
.mobile-menu__link:last-child { border-bottom: none; }
.mobile-menu__link:hover { color: var(--yellow); }
.mobile-menu__link--cta { color: var(--yellow); }
.mobile-menu__label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.mobile-menu__num { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--yellow); letter-spacing: -0.5px; }

/* ════════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ════════════════════════════════════════════════════════════ */
#FloatingButtons { position: fixed; right: 16px; bottom: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

.float-btn { display: flex; align-items: center; gap: 10px; border-radius: var(--radius-pill); padding: 10px 20px 10px 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.18); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; cursor: pointer; }
.float-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 28px rgba(0,0,0,0.22); }
.float-btn__icon  { font-size: 20px; flex-shrink: 0; }
.float-btn__text  { display: flex; flex-direction: column; line-height: 1.15; }
.float-btn__label { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; }
.float-btn__num   { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -0.3px; }

.float-btn--atencion { background: var(--yellow); box-shadow: 0 4px 20px rgba(255,208,0,0.35); }
.float-btn--atencion:hover               { background: var(--yellow-dark); }
.float-btn--atencion .float-btn__icon    { color: var(--black); }
.float-btn--atencion .float-btn__label   { color: rgba(0,0,0,0.55); }
.float-btn--atencion .float-btn__num     { color: var(--black); }

.float-btn--cotiza { background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
.float-btn--cotiza:hover                 { background: #1ebe5d; }
.float-btn--cotiza .float-btn__icon      { color: var(--white); }
.float-btn--cotiza .float-btn__label     { color: rgba(255,255,255,0.7); }
.float-btn--cotiza .float-btn__num       { color: var(--white); }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--black); }

.hero-bg { position: absolute; inset: 0; background-image: url('../img/banner-hero.png'); background-size: cover; background-position: center top; opacity: 0.85; }
.hero-noise { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); opacity: 0.4; pointer-events: none; }
.hero-gradient { position: absolute; inset: 0; }

.hero-left { display: flex; flex-direction: column; gap: 24px; }

.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 150px; align-items: center; }

.hero-sub--top { font-family: var(--font-display); font-size: clamp(32px, 5vw, 60px); font-weight: 600; line-height: 1.05; color: var(--white); }
.hero-promo-img { width: 100%; max-width: 500px; height: auto; display: block; filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4)); }
.hero-cta-hint { font-size: 14px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--yellow); opacity: 0.85; }
.hero-cta-hint i { font-size: 13px; }

.hero-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-hero); animation: floatCard 6s ease-in-out infinite; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-card-title { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: var(--gray-600); text-align: center; margin-bottom: 4px; text-transform: uppercase; }
.hero-card-phone { display: block; font-family: var(--font-display); font-size: clamp(28px, 4vw, 36px); font-weight: 800; color: var(--black); text-align: center; letter-spacing: -1px; margin-bottom: 24px; transition: color 0.2s; }
.hero-card-phone:hover { color: var(--yellow-dark); }

.divider-yellow { height: 3px; background: var(--yellow); border-radius: 2px; margin: 0 auto 24px; width: 48px; }

.hero-card-sub { font-size: 13px; color: var(--gray-600); text-align: center; font-weight: 500; margin-bottom: 20px; }

/* Botones del hero card — lado a lado en desktop */
.hero-card-btns { display: flex; gap: 10px; margin-top: 10px; }
.hero-card-btns .btn-primary-psg,
.hero-card-btns .btn-whatsapp-psg { flex: 1; margin-top: 0; font-size: 14px; padding: 12px 16px; letter-spacing: 0.5px; }

/* ════════════════════════════════════════════════════════════
   SHARED FORM ELEMENTS
   ════════════════════════════════════════════════════════════ */
.form-field { position: relative; margin-bottom: 4px; }
.form-field .form-input { margin-bottom: 0; }

.form-label { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-600); margin-bottom: 3px; padding-left: 4px; }
.form-label--dark { color: rgba(255,255,255,0.45); }

.form-input { width: 100%; border: 2px solid var(--gray-200); border-radius: var(--radius-pill); padding: 13px 20px; font-family: var(--font-body); font-size: 14px; color: var(--black); background: var(--gray-100); transition: border-color 0.2s, background 0.2s; margin-bottom: 12px; display: block; }
.form-input:focus { outline: none; border-color: var(--yellow); background: var(--white); }
.form-input::placeholder { color: var(--gray-400); }

.form-success { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-md); padding: 12px 16px; font-size: 13px; color: #166534; text-align: center; margin-top: 12px; display: none; }

/* ── Botones ── */
.btn-primary-psg { width: 100%; background: var(--black); color: var(--yellow); border: none; border-radius: var(--radius-pill); padding: 15px 24px; font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.25s, transform 0.15s; margin-top: 8px; }
.btn-primary-psg:hover  { background: var(--gray-800); transform: translateY(-1px); }
.btn-primary-psg:active { transform: translateY(0); }

.btn-whatsapp-psg { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: var(--white); border: none; border-radius: var(--radius-pill); font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: background 0.25s, transform 0.15s; }
.btn-whatsapp-psg i      { font-size: 20px; }
.btn-whatsapp-psg:hover  { background: #1ebe5d; color: var(--white); transform: translateY(-1px); }
.btn-whatsapp-psg:active { transform: translateY(0); }

.btn-secundary-psg { width: 100%; background: var(--yellow); color: var(--black); border: none; border-radius: var(--radius-pill); padding: 15px 24px; font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.25s, transform 0.15s; margin-top: 8px; }
.btn-secundary-psg:hover  { background: var(--gray-800); transform: translateY(-1px); }
.btn-secundary-psg:active { transform: translateY(0); }

.btn-dark-psg { display: inline-flex; align-items: center; gap: 10px; background: var(--black); color: var(--yellow); border-radius: var(--radius-pill); padding: 16px 40px; font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: background 0.25s, transform 0.15s; }
.btn-dark-psg:hover { background: var(--gray-800); transform: translateY(-2px); color: var(--yellow); }

/* ════════════════════════════════════════════════════════════
   SHARED SECTION TYPOGRAPHY
   ════════════════════════════════════════════════════════════ */
.section-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--yellow-dark); display: block; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 60px); font-weight: 800; line-height: 1.05; letter-spacing: -1px; color: var(--black); }
.section-title.light { color: var(--white); }
.section-body { font-size: clamp(15px, 1.8vw, 18px); color: var(--gray-600); line-height: 1.7; font-weight: 400; }

/* ════════════════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════════════════ */
.features-section { padding: var(--section-y) var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.features-header  { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.features-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; cursor: default; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.feature-img  { height: 200px; background-size: cover; background-position: center; }
.feature-img-1 { background-image: url('../img/banner-01.webp'); }
.feature-img-2 { background-image: url('../img/banner-02.webp'); }
.feature-img-3 { background-image: url('../img/banner-03.webp'); }
.feature-img-4 { background-image: url('../img/banner-04.webp'); }
.feature-body  { padding: 24px; }
.feature-tag   { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: var(--yellow); color: var(--black); border-radius: var(--radius-pill); padding: 4px 12px; display: inline-block; margin-bottom: 10px; }
.feature-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--black); margin-bottom: 8px; line-height: 1.1; }
.feature-text  { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   PROMO BAND
   ════════════════════════════════════════════════════════════ */
.promo-band { background: var(--yellow); padding: 64px var(--pad-x); overflow: hidden; }
.promo-band-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: clamp(40px, 8vw, 120px); flex-wrap: wrap; }
.promo-left    { display: flex; align-items: flex-end; gap: 12px; }
.promo-big     { font-family: var(--font-display); font-size: clamp(80px, 12vw, 130px); font-weight: 900; color: var(--black); line-height: 0.85; }
.promo-sup     { display: flex; flex-direction: column; padding-bottom: 6px; }
.promo-sup-pct { font-family: var(--font-display); font-size: clamp(42px, 6vw, 60px); font-weight: 900; color: var(--black); line-height: 0.9; }
.promo-sup-off { font-family: var(--font-display); font-size: clamp(16px, 2.5vw, 22px); font-weight: 700; color: var(--black); letter-spacing: 5px; }
.promo-label   { font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--black); }
.promo-right   { max-width: 500px; }
.promo-right-title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 48px); font-weight: 800; color: var(--black); line-height: 1.1; margin-bottom: 24px; }

/* ════════════════════════════════════════════════════════════
   FLOOR PLAN
   ════════════════════════════════════════════════════════════ */
/* Items mobile */
.floorplan-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px var(--pad-x);
}
.floorplan-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 12px;
}
.floorplan-item__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--black);
}
.floorplan-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 3px;
}
.floorplan-item p {
  font-size: 11px;
  color: var(--gray-600);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 380px) {
  .floorplan-items { grid-template-columns: 1fr; }
}

.floorplan-section { padding: var(--section-y) var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.floorplan-header  { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.lg-container      { position: relative; width: 100%; }
.lg-container img  { width: 100%; display: block; border-radius: var(--radius-lg); }
.lg-hotspot        { position: absolute; transform: translate(-50%, -50%); }

.lg-hotspot__button { height: 44px; width: 44px; border-radius: 50%; border: 2px solid var(--yellow); background: rgba(255,208,0,0.15); backdrop-filter: blur(4px); box-shadow: 0 0 0 4px rgba(255,208,0,0.2); cursor: pointer; display: flex; align-items: center; justify-content: center; animation: hotspot-pulse 2.5s ease-in-out infinite; position: relative; }
.lg-hotspot__button::after { content: ''; width: 14px; height: 14px; background: var(--yellow); border-radius: 50%; border: 2px solid var(--black); }
@keyframes hotspot-pulse {
  0%,100% { box-shadow: 0 0 0 4px  rgba(255,208,0,0.2); }
  50%      { box-shadow: 0 0 0 10px rgba(255,208,0,0);   }
}

.popover-header           { background: var(--yellow); font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.custom-popover-container { max-width: 280px !important; font-family: var(--font-body); font-size: 14px; }

/* ════════════════════════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════════════════════════ */
.contact-section { background: var(--black); padding: var(--section-y) var(--pad-x); position: relative; overflow: hidden; }
.contact-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,208,0,0.12) 0%, transparent 70%); pointer-events: none; }
.contact-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center; position: relative; z-index: 1; }
.contact-left .section-body { color: var(--gray-400); }

.contact-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 40px 36px; backdrop-filter: blur(10px); }
.contact-card .hero-card-phone         { color: var(--white); }
.contact-card .hero-card-phone:hover   { color: var(--yellow); }
.contact-card .hero-card-title         { color: rgba(255,255,255,0.5); }
.contact-card .hero-card-sub           { color: rgba(255,255,255,0.5); }
.contact-card .form-input              { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); color: var(--white); }
.contact-card .form-input:focus        { border-color: var(--yellow); background: rgba(255,255,255,0.1); }
.contact-card .form-input::placeholder { color: rgba(255,255,255,0.3); }

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════ */
.how-section { padding: var(--section-y) var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.how-header  { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.how-steps   { display: flex; flex-direction: column; }
.how-step    { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--gray-200); }
.how-step:last-child { border-bottom: none; }
.how-step-num   { font-family: var(--font-display); font-size: 80px; font-weight: 900; color: var(--yellow); line-height: 0.9; }
.how-step-icon  { width: 56px; height: 56px; margin-bottom: 16px; }
.how-step-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.how-step-body  { font-size: 16px; color: var(--gray-600); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   APP SECTION
   ════════════════════════════════════════════════════════════ */
.app-section { background: var(--yellow); padding: var(--section-y) var(--pad-x); overflow: hidden; }
.app-inner   { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: center; }
.app-title   { font-family: var(--font-display); font-size: clamp(32px, 5vw, 60px); font-weight: 900; color: var(--black); line-height: 1.05; margin-bottom: 20px; }
.app-body    { font-size: clamp(15px, 1.8vw, 18px); color: rgba(0,0,0,0.6); line-height: 1.7; }
.app-img img { width: 100%; max-width: 280px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25)); }

/* ════════════════════════════════════════════════════════════
   CAMERAS
   ════════════════════════════════════════════════════════════ */
.cameras-section { padding: var(--section-y) var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.cameras-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cameras-callout { font-family: var(--font-display); font-size: clamp(18px, 3vw, 32px); font-weight: 700; color: var(--yellow-dark); line-height: 1.3; margin-top: 20px; }
.cameras-img img { width: 100%; border-radius: var(--radius-lg); }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer-logo { background: var(--yellow); padding: 24px var(--pad-x); display: flex; align-items: center; justify-content: center; }
.footer-logo img { height: 44px; width: auto; }
.footer-bottom { background: var(--black); padding: 16px var(--pad-x); display: flex; align-items: center; justify-content: flex-end; }
.footer-bottom a { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-400); transition: color 0.2s; cursor: pointer; }
.footer-bottom a:hover { color: var(--yellow); }

/* ════════════════════════════════════════════════════════════
   OFFCANVAS
   ════════════════════════════════════════════════════════════ */
.PopUpOfcanvasTerminos { height: 65vh; z-index: 99999; }
.offcanvas-title-custom { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--black); }
.offcanvas-body h4 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-top: 24px; margin-bottom: 8px; }
.offcanvas-body p,
.offcanvas-body li,
.offcanvas-body span { font-family: var(--font-body); font-size: 13px; line-height: 1.7; color: #444; }

/* ════════════════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════════════════ */
#LoadingImage,
#LoadingImage2 { display: none; }

.pulse { border-radius: var(--radius-sm); cursor: pointer; animation: pulse-anim 2s infinite; }
@keyframes pulse-anim {
  0%   { box-shadow: 0 0 0 0    rgba(255,208,0,0.4); }
  100% { box-shadow: 0 0 0 12px rgba(255,208,0,0); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE ≤1024px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content    { margin: 0 20px; grid-template-columns: 1fr; gap: 32px; padding-top: 60px; padding-bottom: 60px; }
  .hero-card       { max-width: 460px; }
  .contact-inner   { grid-template-columns: 1fr; gap: 48px; }
  .contact-card    { max-width: 460px; }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .features-header { margin-bottom: 48px; }
  .app-inner       { grid-template-columns: 1fr; gap: 40px; }
  .app-img         { text-align: center; }
  .app-img img     { max-width: 200px; }
  .cameras-inner   { grid-template-columns: 1fr; gap: 40px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE ≤768px — MOBILE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Navbar */
  .nav-inner          { height: 60px; }
  .nav-logo img       { height: 40px; }
  .nav-right--desktop { display: none; }
  .nav-mobile-right   { display: flex; }
  .nav-mobile-right .nav-phone { display: none; }

  /* Floating buttons */
  #FloatingButtons  { right: 10px; bottom: 16px; gap: 8px; }
  .float-btn        { padding: 9px 14px 9px 11px; gap: 8px; }
  .float-btn__icon  { font-size: 17px; }
  .float-btn__label { font-size: 9px; }
  .float-btn__num   { font-size: 15px; }

  /* Hero */
  .hero         { min-height: auto; }
  .hero-bg      { background-position: center center; opacity: 0.3; }
  .hero-sub--top  { font-size: clamp(28px, 7vw, 42px); font-weight: 700; line-height: 1.1; }
  .hero-promo-img { max-width: 100%; }
  .hero-cta-hint  { font-size: 13px; font-weight: 700; opacity: 1; }
  .hero-card      { padding: 28px 20px; border-radius: var(--radius-md); }

  /* Botones hero: apilados en mobile */
  .hero-card-btns { flex-direction: column; gap: 8px; }
  .hero-card-btns .btn-primary-psg,
  .hero-card-btns .btn-whatsapp-psg { width: 100%; font-size: 15px; padding: 13px 16px; }

  /* Botones de formularios fuera del hero */
  .btn-secundary-psg { font-size: 15px; padding: 13px 20px; letter-spacing: 0.3px; }
  .btn-dark-psg      { font-size: 15px; padding: 13px 24px; letter-spacing: 0.3px; }

  /* Mapa: ocupa ancho completo sin padding lateral */
  .floorplan-section       { padding: var(--section-y) 0; }
  .floorplan-header        { padding: 0 var(--pad-x); }
  .d-block.d-md-none img   { border-radius: 0; width: 100%; max-width: 100%; }

  /* Contact */
  .contact-card { padding: 32px 24px; border-radius: var(--radius-md); }

  /* Promo band */
  .promo-band-inner { flex-direction: column; text-align: center; align-items: center; }
  .promo-right      { max-width: 100%; }

  /* How steps */
  .how-step       { grid-template-columns: 60px 1fr; gap: 20px; padding: 28px 0; }
  .how-step-num   { font-size: 56px; }
  .how-step-icon  { width: 44px; height: 44px; margin-bottom: 12px; }
  .how-step-title { font-size: 22px; }
  .how-header     { margin-bottom: 40px; }

  /* App */
  .app-img { display: none; }

  /* Cameras */
  .cameras-img img { border-radius: var(--radius-md); }

  /* Features */
  .feature-img { height: 160px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE ≤480px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-sub--top { font-size: clamp(24px, 8vw, 34px); }
  .hero-card     { padding: 24px 16px; }

  .btn-secundary-psg { font-size: 14px; padding: 12px 16px; }
  .btn-dark-psg      { font-size: 14px; padding: 12px 20px; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }

  .how-step     { grid-template-columns: 48px 1fr; gap: 14px; }
  .how-step-num { font-size: 44px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal             { transition: none; opacity: 1; transform: none; }
  .hero-card          { animation: none; }
  .pulse              { animation: none; }
  .lg-hotspot__button { animation: none; }
}
