:root {
  --bg: #090712;
  --bg-soft: #130f24;
  --card: rgba(255, 255, 255, 0.07);
  --card-border: rgba(255, 255, 255, 0.18);
  --text: #f7f5ff;
  --muted: #c3b8e7;
  --brand: #ff4da6;
  --brand-2: #8a5cff;
  --ok: #22c55e;
  --shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #1e1338 0%, var(--bg) 45%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -100px;
  background: #d946ef;
}

.orb-2 {
  width: 320px;
  height: 320px;
  bottom: 0;
  left: -120px;
  background: #4f46e5;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 7, 18, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 800;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.cta-header {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
}

.hero {
  padding: 4.6rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}

.pill {
  width: fit-content;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  color: #ffd3ef;
  background: rgba(255, 77, 166, 0.16);
  border: 1px solid rgba(255, 77, 166, 0.35);
  font-size: 0.86rem;
  margin: 0 0 0.9rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-copy {
  margin: 1.1rem 0 1.6rem;
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 0.9rem;
  padding: 0.82rem 1.2rem;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 28px rgba(138, 92, 255, 0.34);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.glass {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card {
  padding: 1.2rem 1.2rem 1rem;
}

.hero-card h2 {
  margin-top: 0.1rem;
}

.hero-card ul {
  color: var(--muted);
  margin: 0;
  padding-left: 1rem;
  line-height: 1.8;
}

.hero-card .contact {
  margin: 0.85rem 0 0.2rem;
  font-weight: 600;
}

.catalogo {
  padding: 2.5rem 0 5rem;
}

.section-head h2 {
  margin: 0.3rem 0 0.6rem;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
}

.section-head p {
  color: var(--muted);
}

.product-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 1.1rem;
}

.product-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.1rem;
  transition: transform 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 0.9rem 0.95rem 1rem;
}

.product-title {
  margin: 0;
  font-size: 1rem;
}

.product-desc {
  margin: 0.5rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  min-height: 2.8rem;
}

.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.price {
  font-size: 1.08rem;
  font-weight: 700;
}

.mini-btn {
  border-radius: 0.7rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  color: #fff;
  background: var(--ok);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.42);
  font-weight: 700;
}

.wa-icon {
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
}

.wa-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}
