/* ===== Paleta (cores do logo Lev Pop) ===== */
:root {
  --vinho: #6B0710;
  --vinho-escuro: #4D050B;
  --dourado: #C99A3B;
  --dourado-claro: #E0B765;
  --creme: #F7EFE2;
  --texto: #2a1a1c;
  --max: 1120px;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(77, 5, 11, 0.15);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Poppins", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--texto);
  background: var(--creme);
  line-height: 1.6;
}

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

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

h1, h2, h3 { font-family: var(--serif); line-height: 1.2; }

/* ===== Botões ===== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold { background: var(--dourado); color: var(--vinho-escuro); }
.btn-gold:hover { background: var(--dourado-claro); }

.btn-outline { background: transparent; color: var(--creme); border-color: var(--dourado); }
.btn-outline:hover { background: var(--dourado); color: var(--vinho-escuro); }

.btn-wa { background: var(--dourado); color: var(--vinho-escuro); padding: 9px 20px; }
.btn-wa:hover { background: var(--dourado-claro); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--vinho);
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--dourado); }
.brand-name { font-family: var(--serif); color: var(--dourado); font-size: 1.4rem; font-weight: 700; }

.nav-menu { display: flex; align-items: center; gap: 22px; }
.nav-menu a { color: var(--creme); text-decoration: none; font-weight: 500; font-size: 0.97rem; }
.nav-menu a:hover { color: var(--dourado-claro); }
.nav-menu a.btn-wa { color: var(--vinho-escuro); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--dourado); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--vinho) 0%, var(--vinho-escuro) 100%);
  color: var(--creme);
  text-align: center;
  padding: 70px 0 90px;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-logo {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--dourado); box-shadow: var(--shadow); margin-bottom: 24px;
}
.hero h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); max-width: 14ch; color: var(--creme); }
.hero-sub { max-width: 56ch; margin: 18px auto 30px; font-weight: 300; font-size: 1.08rem; opacity: .95; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ===== Seções ===== */
.section { padding: 72px 0; }
.section-alt { background: #fff; }
.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--vinho);
  text-align: center;
}
.section h2::after {
  content: ""; display: block; width: 64px; height: 3px;
  background: var(--dourado); margin: 14px auto 0; border-radius: 2px;
}
.section-lead { text-align: center; max-width: 62ch; margin: 18px auto 40px; opacity: .9; }
.center { text-align: center; margin-top: 44px; }

/* ===== Features ===== */
.features {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature {
  background: var(--creme); border: 1px solid rgba(201,154,59,.35);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
}
.section-alt .feature { background: var(--creme); }
.feature h3 { color: var(--vinho); font-size: 1.2rem; margin-bottom: 10px; }

/* ===== Cards de produto ===== */
.cards {
  display: grid; gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s ease;
  border: 1px solid rgba(201,154,59,.25);
}
.card:hover { transform: translateY(-6px); }
.card img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.card-body { padding: 18px 20px 22px; }
.card-body h3 { color: var(--vinho); font-size: 1.25rem; margin-bottom: 6px; }
.card-body p { font-size: 0.95rem; opacity: .85; }

/* ===== Sobre ===== */
.about { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.about-logo {
  width: 200px; height: 200px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--dourado); box-shadow: var(--shadow); flex-shrink: 0; margin: 0 auto;
}
.about h2 { text-align: left; }
.about h2::after { margin-left: 0; }
.about > div { flex: 1; min-width: 280px; }

/* ===== Footer ===== */
.site-footer { background: var(--vinho-escuro); color: var(--creme); padding-top: 54px; }
.footer-inner {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding-bottom: 40px;
}
.footer-logo { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 2px solid var(--dourado); margin-bottom: 12px; }
.footer-col h3 { color: var(--dourado); margin-bottom: 14px; font-size: 1.2rem; }
.contact-list { list-style: none; }
.contact-list li { margin-bottom: 10px; }
.contact-list a { color: var(--creme); text-decoration: none; }
.contact-list a:hover { color: var(--dourado-claro); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(247,239,226,.15); padding: 18px 0; text-align: center; font-size: 0.85rem; opacity: .8; }

/* ===== Botão flutuante WhatsApp ===== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ===== Mobile ===== */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--vinho); flex-direction: column; align-items: stretch;
    gap: 0; padding: 8px 0; box-shadow: 0 8px 16px rgba(0,0,0,.3);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-menu.open { max-height: 420px; }
  .nav-menu a { padding: 13px 22px; }
  .nav-menu a.btn-wa { margin: 8px 22px; text-align: center; }
  .about { text-align: center; }
  .about h2, .about h2::after { text-align: center; margin-left: auto; margin-right: auto; }
}
