/* Barra anuncio FC */
.fc-announcement-bar {
  position: relative;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.15), rgba(212, 168, 67, 0.08));
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 3rem 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: none;
}

.fc-announcement-bar.is-visible {
  display: block;
}

.fc-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fc-announcement-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  flex-shrink: 0;
}

.fc-announcement-link {
  color: var(--gold);
  font-weight: 600;
  margin-left: 0.25rem;
}

.fc-announcement-link:hover {
  color: var(--accent-hover);
}

.fc-announcement-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1;
}

.fc-announcement-close:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(9, 9, 11, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Logo PNG original: chip claro para que el texto oscuro se lea sobre header oscuro */
.site-header .nav-logo {
  background: rgba(255, 255, 255, 0.96);
  padding: 5px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header .nav-logo:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 992px) {
  .nav-cta {
    display: flex;
  }
}

.nav-cta .btn-primary {
  padding: 0.55rem 1.25rem !important;
  font-size: 0.875rem !important;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .nav-hamburger {
    display: none;
  }
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu a {
  display: block;
  padding: 0.65rem 0;
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn-primary {
  text-align: center;
  justify-content: center;
}

/* Hero FC */
.fc-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 7rem;
}

.fc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fc-hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.fc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 45%, #000 35%, transparent 75%);
}

.fc-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.fc-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, transparent 35%, transparent 65%, var(--bg-primary) 100%);
}

.fc-hero .container {
  position: relative;
  z-index: 1;
}

.fc-hero-inner {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.fc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.fc-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: fc-pulse-dot 2s infinite;
}

@keyframes fc-pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.fc-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.fc-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.fc-hero-sub strong {
  color: var(--text-primary);
  font-weight: 600;
}

.fc-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.fc-btn-large {
  padding: 1rem 2rem !important;
  font-size: 1rem !important;
}

.fc-hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.fc-hero-stat {
  text-align: center;
}

.fc-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.fc-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fc-hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.fc-ticker-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.fc-ticker-track {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.fc-ticker-inner {
  display: inline-flex;
  gap: 4rem;
  white-space: nowrap;
  animation: fc-ticker-scroll 45s linear infinite;
}

.fc-ticker-item {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

@keyframes fc-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.fc-scroll-indicator {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

.fc-scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: fc-pulse-dot 2s infinite;
}

@media (max-width: 767px) {
  .fc-scroll-indicator {
    display: none;
  }

  .fc-hero {
    padding-top: 6.5rem;
    min-height: auto;
    padding-bottom: 5rem;
  }
}

.fc-hero-logos {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.fc-hero-logos-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.fc-hero-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  align-items: center;
}

.fc-hero-logos-row img {
  height: 28px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(1) brightness(1.8);
  transition: opacity 0.2s ease;
}

.fc-hero-logos-row img:hover {
  opacity: 0.75;
}

/* Sectores de referencia (sin logos inventados) */
.fc-hero-trust-pills {
  gap: 0.65rem 1rem;
}

.fc-trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.fc-trust-pill:hover {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.07);
}

@media (prefers-reduced-motion: reduce) {
  .fc-ticker-inner {
    animation: none;
  }

  .fc-badge-dot,
  .fc-scroll-dot {
    animation: none;
  }
}
