/* =============================================
   shared.css — Estilos compartidos DigitalLink
   ============================================= */

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

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: #e8edf2;
  color: #1a2a3a;
  min-height: 100vh;
}

/* ── NAVBAR ── */
.navbar-digitalink {
  background: #0a2d5e;
  padding: 0 20px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 4px solid #f58220;
  position: relative;
  z-index: 300;
}

.navbar-brand-name {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.navbar-brand-name span { color: #f58220; }

.navbar-toggler-custom {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 5px;
  padding: 5px 9px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}

.nav-collapse {
  display: none;
  position: absolute;
  top: 58px; left: 0; right: 0;
  background: #0a2d5e;
  z-index: 200;
  padding: 16px 24px;
  border-bottom: 3px solid #f58220;
}
.nav-collapse.open { display: block; }
.nav-collapse a {
  color: #8ab4d0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-collapse a:hover { color: #f58220; }

/* ── TOP BADGE ── */
.top-badge { background: #f58220; text-align: center; padding: 7px 0; }
.top-badge span {
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── DIVIDER ── */
.divider-orange { height: 5px; background: linear-gradient(90deg, #f58220, #e06010); }

/* ── PAGE HEADER (index) ── */
.page-header { background: #0a2d5e; padding: 32px 32px 28px; text-align: center; }
.page-header .eyebrow {
  color: #f58220;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-header h1 {
  color: #fff;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}
.page-header h1 span { color: #f58220; }
.page-header p { color: #8ab4d0; font-size: 13px; font-weight: 500; }

/* ── FOOTER ── */
.page-footer {
  background: #f58220;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-contact {
  background: #fff;
  border-radius: 50px;
  padding: 10px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-contact .num { font-size: 20px; font-weight: 900; color: #0a2d5e; letter-spacing: 1px; }
.footer-contact .label-wa { font-size: 10px; font-weight: 700; color: #f58220; margin-top: 2px; letter-spacing: 1px; }
.footer-brand { color: #0a2d5e; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.footer-brand span { color: #fff; }

/* ── WHATSAPP FLOTANTE ── */
.float-wa { position: fixed; bottom: 32px; right: 32px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; }
.wa-main {
  background-color: #25d366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
  transition: all 0.25s ease;
  cursor: pointer; border: none;
}
.wa-main:hover { transform: scale(1.1); background-color: #20b358; }
.wa-options { display: none; flex-direction: column; align-items: flex-end; margin-bottom: 10px; gap: 8px; }
.wa-option {
  background: #0a2d5e;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.22);
  transition: all 0.2s ease;
}
.wa-option:hover { background: #f58220; color: #fff; transform: translateY(-2px); }

/* ── SKELETON ── */
.skeleton-bar { background: rgba(10,45,94,0.07); border-radius: 4px; }
.skeleton-bar.animate {
  background: linear-gradient(90deg, rgba(10,45,94,0.06) 0%, rgba(10,45,94,0.13) 50%, rgba(10,45,94,0.06) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── ANIMACIÓN PULSE ── */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }