/* Mais Mineiro Representação — estilo mineiro, acolhedor, premium */

:root {
  --wine: #6d1f2f;
  --wine-dark: #4d1521;
  --gold: #c9962c;
  --gold-light: #e8c674;
  --cream: #fbf3e6;
  --cream-deep: #f2e4cf;
  --navy: #1f2a3f;
  --ink: #2b2320;
  --ink-soft: #5a4f47;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --shadow: 0 12px 32px -16px rgba(43, 21, 15, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--wine-dark);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }

p { margin: 0 0 1em; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-whatsapp {
  background: #25d366;
  color: #0b3d20;
}
.btn-whatsapp:hover { transform: translateY(-2px); }
.btn-small { padding: 0.5em 1.1em; font-size: 0.85rem; }
.btn-large { padding: 1.1em 2.2em; font-size: 1.1rem; }

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 243, 230, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--cream-deep);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
}
.brand-logo { height: 44px; width: auto; border-radius: 8px; }

/* Hero */
.hero {
  padding-block: 56px 64px;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201, 150, 44, 0.18), transparent 60%),
    var(--cream);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.6em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.4em; }
.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}

/* Sections */
.section { padding-block: 64px; }
.section-alt { background: var(--cream-deep); }
.section-lead {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.card p { color: var(--ink-soft); margin-bottom: 0; }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.product {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--cream-deep);
}
.product h3 { color: var(--wine); }
.product p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.95rem; }
.products-note { margin-top: 24px; }
.products-note a {
  color: var(--wine);
  font-weight: 600;
  text-decoration: underline;
}

/* Como funciona */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 14px;
}
.step p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 0; }

/* Prova social */
.social-proof-placeholder {
  margin-top: 24px;
  padding: 32px;
  border: 2px dashed var(--gold-light);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--white);
}

/* Catálogo */
.catalogo-inner {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 44px;
}
.catalogo-inner h2 { color: var(--gold-light); }
.catalogo-inner .section-lead { color: #cdd4e0; }

/* FAQ */
.faq-list { margin-top: 24px; display: grid; gap: 12px; max-width: 760px; }
.faq-item {
  background: var(--white);
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px solid var(--cream-deep);
}
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--wine-dark);
}
.faq-item p { margin-top: 12px; margin-bottom: 0; color: var(--ink-soft); }

/* Contato */
.contato-inner { text-align: center; }
.contato-inner .section-lead { margin-inline: auto; }
.contato-extra { margin-top: 20px; color: var(--ink-soft); }
.contato-extra a { color: var(--wine); font-weight: 600; }

/* Footer */
.footer { background: var(--wine-dark); color: var(--cream); padding-block: 40px; }
.footer-inner { text-align: center; }
.footer-logo { height: 40px; margin: 0 auto 14px; border-radius: 8px; }
.footer-legal { font-size: 0.8rem; color: #d9b8a8; }
.footer-legal a { text-decoration: underline; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #0b3d20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
  z-index: 50;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .cards, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .cards, .product-grid, .steps { grid-template-columns: 1fr; }
  .catalogo-inner { padding: 28px; }
  .hero { padding-block: 40px 48px; }
  .section { padding-block: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}
