:root {
  --grape-soda: #88498F;
  --blue-bell: #5998C5;
  --burnt-peach: #E07A5F;
  --tuscan-sun: #F5CB5C;
  --soft-peach: #F2D492;
  --text-dark: #2B2B2B;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

a { color: var(--blue-bell); }

/* Header */
.site-header {
  background: var(--grape-soda);
  padding: 1rem 2rem;
}
.site-logo {
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  letter-spacing: .02em;
}

/* Hero */
.lp-hero {
  background: var(--grape-soda);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}
.lp-hero h1 {
  font-size: 2.2rem;
  margin: 0 0 1rem;
  line-height: 1.25;
}
.lp-hero p {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  opacity: .95;
}

/* CTA button */
.btn-cta {
  display: inline-block;
  background: var(--burnt-peach);
  color: var(--white);
  padding: .9rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224, 122, 95, .35);
}

/* Content */
.lp-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.lp-section {
  padding: 3rem 0;
  border-bottom: 1px solid #eee;
}
.lp-section h2 {
  color: var(--grape-soda);
  font-size: 1.5rem;
  margin-top: 0;
}

.lp-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.lp-list li {
  padding: .6rem 0 .6rem 1.8rem;
  position: relative;
  border-bottom: 1px dashed #eee;
}
.lp-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--blue-bell);
  font-weight: 700;
}

/* Product images */
.lp-hero-image {
  padding: 2rem 0 0;
  border-bottom: none;
  text-align: center;
}
.lp-hero-image img {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.lp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.lp-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #eee;
}

/* Home hero */
.home-hero {
  background: var(--grape-soda);
  color: var(--white);
  padding: 3.5rem 2rem;
  text-align: center;
}
.home-hero h1 {
  font-size: 2rem;
  margin: 0 0 .75rem;
}
.home-hero p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  opacity: .95;
}

/* Category nav */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  padding: 1.5rem 2rem;
  background: var(--soft-peach);
}
.category-nav a {
  color: var(--text-dark);
  background: var(--white);
  padding: .5rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid rgba(0,0,0,.06);
}
.category-nav a:hover { background: var(--tuscan-sun); }

/* Product grid / cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.product-card {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--soft-peach);
  padding: 1rem;
}
.product-card-body { padding: 1rem; }
.product-card-body h3 {
  font-size: 1rem;
  margin: 0 0 .4rem;
  color: var(--grape-soda);
}
.product-card-body p {
  font-size: .88rem;
  color: #555;
  margin: 0 0 .8rem;
}
.product-card-cta {
  color: var(--burnt-peach);
  font-weight: 700;
  font-size: .9rem;
}

/* Proof block */
.lp-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  background: var(--soft-peach);
  padding: 1.5rem;
  border-radius: 12px;
}
.lp-proof-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
}
.lp-proof-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--grape-soda);
}
.lp-proof-item span {
  font-size: .85rem;
  color: #555;
}

/* Final CTA section */
.lp-cta-section {
  text-align: center;
  background: var(--tuscan-sun);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}
.lp-cta-section h2 {
  color: var(--text-dark);
  margin-top: 0;
}

/* Footer */
.site-footer {
  background: #2b2b2b;
  color: #ccc;
  padding: 2rem;
  text-align: center;
  font-size: .85rem;
}
.site-footer a { color: var(--soft-peach); }
.site-footer .cnpj { opacity: .6; margin-top: .5rem; }
