/* ===========================================================
   Mente Criativa - Brindes Personalizados
   Design system: navy + gold, tipografia Poppins/Inter
   =========================================================== */

:root {
  --navy-900: #0f2438;
  --navy-800: #16324f;
  --navy-700: #1b3a5c;
  --navy-600: #234a72;
  --navy-500: #2f5c8a;
  --gold-600: #c98a2c;
  --gold-500: #d9a441;
  --gold-400: #e6bc6a;
  --gold-100: #faf0dc;
  --cream-100: #fbf7f0;
  --cream-50: #fffdf9;
  --ink-900: #1f2937;
  --ink-700: #3d4655;
  --ink-500: #6b7280;
  --ink-300: #b7bec9;
  --line: #e7e1d6;
  --white: #ffffff;
  --success: #2f7d4f;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(15, 36, 56, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 36, 56, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 36, 56, 0.18);

  --max-width: 1180px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--navy-800);
  line-height: 1.22;
  margin: 0 0 .5em;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-700); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 76px 0;
}
.section--tight { padding: 56px 0; }
.section--cream { background: var(--cream-100); }
.section--navy {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700) 55%, var(--navy-600));
  color: var(--white);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #cfdbe8; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section--navy .eyebrow { color: var(--gold-400); }

.section-head {
  max-width: 640px;
  margin-bottom: 42px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-400); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-ghost {
  background: var(--white);
  color: var(--navy-700);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy-500); color: var(--navy-800); }
.btn-sm { padding: 10px 18px; font-size: .85rem; min-height: 40px; }
.btn-block { width: 100%; }

.whatsapp-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 52px; width: auto; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-700);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.nav-desktop a:hover, .nav-desktop a.active { border-color: var(--gold-500); color: var(--navy-900); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-800);
  position: relative;
  transition: all .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 8px 24px 20px;
}
.nav-mobile a {
  padding: 12px 4px;
  font-weight: 600;
  color: var(--navy-700);
  border-bottom: 1px solid var(--line);
}
.nav-mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-primary span.long { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 90px 0 100px;
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,164,65,.35), transparent 70%);
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero p.lead { color: #d7e2ee; font-size: 1.1rem; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stat strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.6rem; color: var(--gold-400); }
.hero-stat span { font-size: .82rem; color: #b9c8db; }

.hero-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-visual img {
  border-radius: var(--radius-md);
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}
.hero-visual .tall { grid-row: span 2; aspect-ratio: auto; height: 100%; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

/* ---------- Badges & tags ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-900);
}
.badge-outline {
  background: var(--white);
  color: var(--navy-700);
  border: 1px solid var(--line);
}
.tag {
  font-size: .74rem;
  font-weight: 600;
  color: var(--navy-600);
  background: var(--gold-100);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- Product / category cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-media .badge { position: absolute; top: 12px; left: 12px; }
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body .tag { align-self: flex-start; }
.card-body h3 { font-size: 1.05rem; margin-bottom: 2px; }
.card-body p { font-size: .9rem; color: var(--ink-500); margin-bottom: 12px; flex: 1; }
.card-cta {
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-cta svg { width: 14px; height: 14px; transition: transform .15s ease; }
.card:hover .card-cta svg { transform: translateX(4px); }

/* Cards em destaque ("Em alta") na página de Categorias */
.card.is-priority { border-top: 3px solid var(--gold-500); }
.card.is-priority .card-body h3 { color: var(--navy-800); }

/* Priority grid slightly bigger */
.priority-grid .card-media { aspect-ratio: 5/4; }

/* ---------- Filter pills (categorias page) ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: all .15s ease;
}
.filter-pill:hover { border-color: var(--navy-500); color: var(--navy-700); }
.filter-pill.active { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }

/* ---------- Feature list / icons row ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .feature-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-row { grid-template-columns: 1fr; } }
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.feature .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature .icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1rem; margin-bottom: 6px; }
.feature p { font-size: .88rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 24px; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--line); }
.step .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold-500);
  margin-bottom: 10px;
  display: block;
}

/* ---------- Testimonial / quote ---------- */
.quote-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border-left: 5px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
}
.quote-block p { font-size: 1.1rem; color: var(--navy-800); font-style: italic; }
.quote-block footer { font-size: .85rem; color: var(--ink-500); font-weight: 600; margin-top: 12px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--navy-900); margin-bottom: 6px; }
.cta-banner p { color: var(--navy-800); margin: 0; }
.cta-banner .btn-primary { background: var(--navy-800); color: var(--white); }
.cta-banner .btn-primary:hover { background: var(--navy-900); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy-700); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card h3 { margin-bottom: 4px; font-size: 1rem; }
.contact-card p { margin-bottom: 10px; font-size: .9rem; }
.placeholder-note {
  font-size: .74rem;
  color: var(--gold-600);
  background: var(--gold-100);
  border-radius: 6px;
  padding: 3px 8px;
  display: inline-block;
  margin-top: 4px;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--navy-800);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: .95rem;
  background: var(--cream-50);
  min-height: 48px;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid var(--gold-500);
  outline-offset: 1px;
  border-color: var(--gold-500);
}
.form-hint { font-size: .78rem; color: var(--ink-500); margin-top: 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #c9d4e0;
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { font-size: .9rem; color: #c9d4e0; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-brand img { height: 46px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { font-size: .86rem; color: #9fb0c2; max-width: 300px; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { border-color: var(--gold-400); }
.social-row svg { width: 17px; height: 17px; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: #8399ae;
}

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Breadcrumb / page header (inner pages) */
.page-hero {
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: #d7e2ee; max-width: 640px; }
.breadcrumb { font-size: .82rem; color: #a9bdd2; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold-400); }

.info-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
@media (max-width: 800px) { .info-columns { grid-template-columns: 1fr; } }

.values-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.values-list li:last-child { border-bottom: none; }
.values-list .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500);
  margin-top: 8px; flex-shrink: 0;
}

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline .step { margin-bottom: 18px; }
