.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

.hero-gradient-text {
  background: linear-gradient(90deg, #006766 0%, #008280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chart-glow { filter: drop-shadow(0 0 8px rgba(0,103,102,0.3)); }

/* Logos track */
.logos-track {
  display: flex;
  gap: 52px;
  align-items: center;
  animation: logos-scroll 38s linear infinite;
  width: max-content;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes logos-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FAQ accordion */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-chevron { transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* Testimonios carousel */
#testimoniosTrack {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.t-dot {
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.3);
  width: 8px;
  transition: width 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  border: none;
}
.t-dot.active {
  background: #84f4f2;
  width: 24px;
  opacity: 1;
}

/* Map animations */
.map-line {
  animation: dash-flow 4s linear infinite;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -220; }
}

/* Map dots (sección alcance) */
.map-dot-wrap {
  position: absolute;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.map-dot-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: #1dd8c4;
  animation: map-pulse 2.8s ease-out infinite;
}
.map-dot-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #1dd8c4;
  box-shadow: 0 0 6px #1dd8c4, 0 0 14px rgba(29,216,196,0.5);
}
.map-dot-wrap.sm .map-dot-pulse { inset: -7px; }
.map-dot-wrap.sm .map-dot-core { width: 8px; height: 8px; inset: 1px; }
.map-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.95), 0 0 3px rgba(0,0,0,1);
}
.map-label.right { left: 16px; }
.map-label.left  { right: 16px; text-align: right; }
.map-label.sm    { font-size: 10px; opacity: 0.75; }
@keyframes map-pulse {
  0%   { opacity: 0.55; transform: scale(0.4); }
  100% { opacity: 0;    transform: scale(3); }
}
