/* ============================================
   SINERGIADS — COMPONENTES
   components.css
============================================ */

/* ---- CONTAINER ---- */
.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

/* ---- TAG / EYEBROW ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.tag-dark {
  color: rgba(255,255,255,0.45);
}
.tag-dark::before {
  background: rgba(255,255,255,0.45);
}
.eyebrow {
  margin-bottom: 1rem;
}

/* ---- BOTONES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--t);
  white-space: nowrap;
  font-family: var(--f);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn svg {
  flex-shrink: 0;
}
.btn-p {
  background: var(--dark);
  color: var(--white);
}
.btn-p:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(74,108,247,0.3);
}
.btn-s {
  background: transparent;
  color: var(--txt);
  border: 1.5px solid var(--bdr);
}
.btn-s:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-w {
  background: var(--white);
  color: var(--dark);
}
.btn-w:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,108,247,0.4);
}
.btn-ow {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white;
}
.btn-ow:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #25D366;
  color: white;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--t);
}
.btn-wa-inline:hover {
  background: #1EBA5A;
  transform: translateY(-1px);
}

/* ---- TIPOGRAFÍA DE SECCIÓN ---- */
.sec-h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.sec-desc {
  font-size: 0.975rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 52ch;
}
.sec-header-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.sec-header-split {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

/* ---- PUNTO AZUL decorativo ---- */
.dot-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.dot-accent-lg {
  width: 12px;
  height: 12px;
}
/* Animado */
.dot-pulse {
  animation: dotPulse 2.2s infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.5; }
}

/* ---- CARD BASE ---- */
.card {
  background: var(--bg-w);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  overflow: hidden;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-m);
  border-color: var(--bdr-blue);
}

/* ---- WHATSAPP FLOTANTE ---- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 9px;
}
.wa-bubble {
  background: rgba(20,20,20,0.9);
  color: white;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--t);
  white-space: nowrap;
  pointer-events: none;
}
.wa-float:hover .wa-bubble {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--t);
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
}
.wa-btn:hover {
  background: #1EBA5A;
  transform: scale(1.08);
}
.wa-btn svg { width: 26px; height: 26px; }
.wa-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.6; }
}
