
/* ======================================================
   HEADER
====================================================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
  text-decoration: none;
}
.logo >img{
  width: 200px;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #374151;
}

.nav-links a:hover {
  color: #2563eb;
}

/* ======================================================
   BOTONES
====================================================== */
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37,99,235,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(37,99,235,0.35);
}

.btn-primary.small {
  padding: 10px 22px;
}

.btn-secondary {
  padding: 14px 30px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
