/*
Theme Name: Cachaças Artesanais Elementor
Theme URI: https://example.com/
Author: Você
Description: Tema WordPress leve e compatível com Elementor para página institucional de cachaças artesanais.
Version: 1.0.0
Text Domain: cachacas-artesanais-elementor
*/

:root {
  --bg: #1a120d;
  --bg-soft: #241711;
  --text: #f4e7d6;
  --muted: #d7c4af;
  --gold: #d3a15b;
  --border: rgba(211,161,91,.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, serif;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header,
.site-footer {
  background: rgba(15,10,7,.92);
  border-color: rgba(255,255,255,.06);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.branding { display: flex; align-items: center; gap: 12px; }
.site-title {
  margin: 0;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav a { color: var(--muted); font-size: .95rem; }
.nav a:hover { color: #fff; }
.elementor-canvas-page {
  min-height: 100vh;
  width: 100%;
}
.section {
  padding: 70px 0;
}
.section-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.section-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--muted);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}
.product-card__image {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.product-card__image img {
  max-height: 280px;
  width: auto;
  object-fit: contain;
}
.product-card h3 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 1.45rem;
  line-height: 1.1;
  text-transform: uppercase;
}
.product-card h3 span { color: var(--gold); }
.product-card p {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: .98rem;
}
.cta {
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.12));
  border-top: 1px solid rgba(255,255,255,.06);
}
.cta p {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #e0c08c;
}
.cta h2 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 5vw, 4rem);
}
.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.cta-features span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  color: var(--text);
}
.site-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
  font-size: .95rem;
}
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav ul { gap: 12px; }
  .products-grid { grid-template-columns: 1fr; }
}