/* CoffeeLink Brasil - CSS Otimizado */

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

body {
  font-family:  -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #1f1a17;
  color: #f0e6dc;
  line-height: 1.6;
}

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

/* HEADER */
.hero {
  background: linear-gradient(135deg, #14100d 0%, #1f1a17 100%);
  padding: 1.5rem 0;
  border-bottom: 2px solid #d4af37;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo {
  font-size: 3rem;
}

.titles h1 {
  margin: 0;
  font-weight: 700;
  font-size: 2rem;
  color: #d4af37;
}

.subtitle {
  font-weight: 300;
  font-size: 1rem;
  color: #f0e6dc;
  margin: 0.5rem 0 0;
}

.menu {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.menu a:hover {
  opacity: 0.7;
}

/* HERO SECTION */
.hero-section {
  text-align: center;
  padding: 4rem 0 3rem;
}

.hero-section h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #f0e6dc;
  line-height: 1.8;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-cta {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1f1a17;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-buy {
  background: #d4af37;
  color: #1f1a17;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

.btn-buy:hover {
  background: #e6c247;
  transform: translateY(-2px);
}

.btn-premium {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #fff;
  font-size: 1.1rem;
}

.btn-premium:hover {
  background: linear-gradient(135deg, #ff5252 0%, #ff4757 100%);
}

/* BENEFITS */
.benefits {
  padding: 3rem 0;
  background: #2a221d;
  margin: 2rem 0;
  border-radius: 12px;
}

.benefits h3 {
  text-align: center;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 2rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  text-align: center;
  padding: 1.5rem;
}

.icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  color: #d4af37;
  margin-bottom: 0.5rem;
}

/* PRODUCTS */
.products {
  padding: 3rem 0;
}

.products h3 {
  text-align: center;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 2rem;
}

.product-card {
  background: #2a221d;
  border: 2px solid #3a3028;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.product-card.featured {
  border-color: #d4af37;
  background: linear-gradient(135deg, #2a221d 0%, #3a2f28 100%);
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-header h4 {
  color: #d4af37;
  font-size: 1.5rem;
}

.price-tag {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.new-price {
  color: #ff6b6b;
}

.product-desc {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #f0e6dc;
}

.product-benefits {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-benefits li {
  padding: 0.5rem 0;
  font-size: 1rem;
}

/* GUARANTEE */
.guarantee {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #2a221d 0%, #3a2f28 100%);
  border: 2px solid #d4af37;
  border-radius: 12px;
  margin: 3rem 0;
}

.guarantee h3 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* FAQ */
.faq {
  padding: 3rem 0;
}

.faq h3 {
  text-align: center;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 2rem;
}

.faq-item {
  background: #2a221d;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #d4af37;
}

.faq-item h4 {
  color: #d4af37;
  margin-bottom: 0.5rem;
}

/* CTA FINAL */
.cta-final {
  text-align: center;
  padding: 4rem 2rem;
}

.cta-final h3 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

/* FOOTER */
.footer {
  background: #14100d;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  border-top: 2px solid #d4af37;
}

.footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.footer-links a {
  color: #d4af37;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-section h2 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1rem;
  }

  .product-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .titles h1 {
    font-size: 1.5rem;
  }
}


/* ===== Upgrade Amazon-Only (v1) ===== */
:root{
  --bg:#1f1a17; --card:#2a231f; --card2:#241e1a; --text:#f0e6dc; --muted:#cbb9a7;
  --accent:#e6c247; --accent2:#ff6b6b;
}
body{ font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
a{ text-decoration:none; }
.navbar{ position:sticky; top:0; z-index:50; background:rgba(31,26,23,.92); backdrop-filter: blur(8px); border-bottom:1px solid rgba(255,255,255,.06); }
.navbar .container{ display:flex; align-items:center; justify-content:space-between; padding:14px 16px; }
.nav-links{ display:flex; gap:14px; flex-wrap:wrap; }
.nav-links a{ color:var(--text); opacity:.9; font-weight:600; font-size:.95rem; }
.nav-links a:hover{ opacity:1; color:var(--accent); }

.hero .actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:12px 16px; border-radius:12px; font-weight:800; }
.btn-primary{ background:var(--accent); color:#1f1a17; }
.btn-secondary{ background:transparent; border:1px solid rgba(230,194,71,.35); color:var(--text); }
.btn-primary:hover{ transform: translateY(-2px); }
.btn-secondary:hover{ border-color: rgba(230,194,71,.7); }

.grid{ display:grid; grid-template-columns: repeat(12, 1fr); gap:14px; margin-top:16px; }
.card{ background:linear-gradient(180deg,var(--card),var(--card2)); border:1px solid rgba(255,255,255,.06); border-radius:16px; padding:16px; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.card h3{ margin-bottom:8px; }
.pill{ display:inline-block; padding:6px 10px; border-radius:999px; background:rgba(230,194,71,.12); border:1px solid rgba(230,194,71,.25); color:var(--accent); font-weight:800; font-size:.78rem; }
.card .meta{ color:var(--muted); font-size:.95rem; }
.card .cta-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.card .cta-row a{ flex: 1 1 auto; }

.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
@media(max-width:900px){ .two-col{ grid-template-columns:1fr; } }

.notice{ background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); padding:12px 14px; border-radius:14px; color:var(--muted); }
.small{ font-size:.92rem; color:var(--muted); }
.footer .small a{ color:var(--muted); text-decoration:underline; }
