@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --bg: #f5f5f8;
  --fg: #17203a;
  --card: #ffffff;
  --card-fg: #17203a;
  --primary: hsl(225,65%,28%);
  --primary-fg: #ffffff;
  --secondary: #ededf4;
  --muted: #eeeef3;
  --muted-fg: #6e7590;
  --border: #e3e3eb;
  --accent: hsl(225,65%,28%);
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --gradient-brand: linear-gradient(135deg, hsl(240,60%,72%), hsl(290,60%,75%));
  --gradient-brand-vivid: linear-gradient(135deg, hsl(250,60%,50%), hsl(270,55%,55%), hsl(290,60%,65%));
  --gradient-hero: linear-gradient(135deg, hsl(225,65%,22%), hsl(260,50%,35%), hsl(290,45%,50%));
  --shadow-soft: 0 2px 20px -4px rgba(23,32,58,0.08);
  --shadow-card: 0 4px 30px -8px rgba(23,32,58,0.1);
  --shadow-elevated: 0 12px 40px -12px rgba(23,32,58,0.18);
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--fg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── HEADER ── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(245,245,248,0.8); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-link { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
.logo-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; background: var(--gradient-brand-vivid); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a { font-size: 0.875rem; font-weight: 500; color: var(--muted-fg); transition: color 0.2s; }
.nav-desktop a:hover { color: #fff; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;

  background: #fff;
  color: #000;

  font-size: 0.875rem;
  font-weight: 600;

  border: 2px solid #7c3aed; /* 🔥 roxo */

  box-shadow: 0 4px 12px rgba(0,0,0,0.12);

  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  background: #000;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.btn-cta:hover { opacity: 0.9; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--fg); }
.hamburger svg { width: 24px; height: 24px; }
.nav-mobile { display: none; flex-direction: column; gap: 1rem; padding: 1.5rem; background: var(--bg); border-bottom: 1px solid var(--border); }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; font-weight: 500; color: var(--fg); padding: 0.5rem 0; }

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

/* ── HERO ── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding-top: 5rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--gradient-hero); z-index: 0; }
.hero-glow1 { position: absolute; top: 5rem; right: 0; width: 500px; height: 500px; border-radius: 50%; background: var(--gradient-brand); opacity: 0.2; filter: blur(60px); }
.hero-glow2 { position: absolute; bottom: 0; left: 0; width: 300px; height: 300px; border-radius: 50%; background: var(--gradient-brand); opacity: 0.15; filter: blur(60px); }
.hero-inner { position: relative; z-index: 10; display: flex; align-items: center; gap: 3rem; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: clamp(2rem,5vw,3.75rem); font-weight: 800; color: var(--primary-fg); line-height: 1.15; margin-bottom: 1.5rem; }
.hero-text h1 span { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text p { font-size: 1.125rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 28rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero-primary { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; border-radius: 0.75rem; background: var(--gradient-brand); color: var(--primary-fg); font-weight: 600; font-size: 1rem; box-shadow: var(--shadow-elevated); transition: opacity 0.2s; border: none; cursor: pointer; }
.btn-hero-primary:hover { opacity: 0.9; }
.btn-hero-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; border-radius: 0.75rem; border: 2px solid rgba(255,255,255,0.2); color: var(--primary-fg); font-weight: 600; font-size: 1rem; background: transparent; transition: background 0.2s; cursor: pointer; }
.btn-hero-secondary:hover { background: rgba(255,255,255,0.1); }
.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-img-wrapper { position: relative; width: min(450px,100%); aspect-ratio: 1; }
.hero-img-wrapper::before { content: ''; position: absolute; inset: -5%; border-radius: 50%; background: var(--gradient-brand); opacity: 0.3; filter: blur(30px); }
.hero-img-wrapper img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; border-radius: 1.5rem; box-shadow: var(--shadow-elevated); }

@media (max-width: 768px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-img-wrapper { width: 280px; }
}

/* ── SECTIONS COMMON ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--secondary); }
.section-title { font-size: clamp(1.75rem,4vw,3rem); font-weight: 700; text-align: center; margin-bottom: 1rem; }
.section-title span { background: var(--gradient-brand-vivid); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { text-align: center; color: var(--muted-fg); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 3rem; }

/* ── PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.product-card { display: block; background: var(--card); border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border); transition: box-shadow 0.3s, transform 0.3s; }
.product-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.product-card-img { aspect-ratio: 1; overflow: hidden; background: var(--secondary); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 1.25rem 1.5rem; }
.product-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.5rem; }
.product-card-header h3 { font-size: 1.125rem; font-weight: 600; }
.badge { display: inline-flex; align-items: center; padding: 0.25rem 0.625rem; border-radius: 0.5rem; background: var(--gradient-brand); color: var(--primary-fg); font-size: 0.75rem; font-weight: 600; flex-shrink: 0; }
.product-card-body p { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; }
.product-link { display: inline-flex; align-items: center; gap: 0.375rem; color: var(--primary); font-weight: 600; font-size: 0.875rem; transition: gap 0.2s; }
.product-card:hover .product-link { gap: 0.625rem; }

/* ── DIFFERENTIALS ── */
.diff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.diff-card { background: var(--card); border-radius: 1rem; padding: 2rem; text-align: center; box-shadow: var(--shadow-soft); transition: box-shadow 0.3s; }
.diff-card:hover { box-shadow: var(--shadow-card); }
.diff-icon { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--gradient-brand); color: var(--primary-fg); margin-bottom: 1.25rem; }
.diff-icon svg { width: 28px; height: 28px; }
.diff-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.diff-card p { font-size: 0.875rem; color: var(--muted-fg); }

/* ── WHERE TO BUY ── */
.marketplace-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; max-width: 48rem; margin: 0 auto; }
.marketplace-card { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2rem; border-radius: 1rem; background: var(--gradient-brand); color: var(--primary-fg); box-shadow: var(--shadow-card); transition: box-shadow 0.3s, transform 0.3s; }
.marketplace-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.marketplace-card .emoji { font-size: 2.5rem; }
.marketplace-card .name { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; }
.marketplace-card .visit { font-size: 0.875rem; opacity: 0.8; display: inline-flex; align-items: center; gap: 0.25rem; }

/* ── ABOUT ── */
.about-content { max-width: 48rem; margin: 0 auto; text-align: center; }
.about-content p { font-size: 1.0625rem; color: var(--muted-fg); line-height: 1.8; margin-bottom: 1rem; }
.about-content strong { color: var(--fg); }
.about-signature { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; margin-top: 1.5rem; background: var(--gradient-brand-vivid); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── FOOTER ── */
.footer { background: var(--gradient-hero); color: var(--primary-fg); }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; padding: 4rem 0; }
.footer h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.footer p, .footer a { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer a { display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; margin-bottom: 0.5rem; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 40px; width: 40px; border-radius: 50%; object-fit: cover; }
.footer-logo span { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; }
.footer-links { display: flex; flex-direction: column; }

/* ── PAGE (contato, onde-estamos) ── */
.page-main { padding-top: 6rem; padding-bottom: 5rem; }
.page-title { font-size: clamp(2rem,4vw,3rem); font-weight: 700; text-align: center; margin-bottom: 1rem; }
.page-subtitle { text-align: center; color: var(--muted-fg); font-size: 1.125rem; margin-bottom: 3rem; }
.contact-card { display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem; background: var(--card); border-radius: 0.75rem; box-shadow: var(--shadow-soft); transition: box-shadow 0.3s; margin-bottom: 1rem; }
.contact-card:hover { box-shadow: var(--shadow-elevated); }
.contact-icon { display: flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: rgba(30,51,107,0.1); color: var(--accent); }
.contact-icon svg { width: 28px; height: 28px; }
.contact-card h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; }
.contact-card p { font-size: 0.875rem; color: var(--muted-fg); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100; display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; border: none; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease-out forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
