/* ============================================
   OFERTAS LAR DOCE LAR — VARIÁVEIS DE MARCA
   Ajuste aqui as cores e fonte para bater com seu logo.
   ============================================ */
:root {
  --color-primary: #2f8f5b;      /* verde principal (fundo do logo) */
  --color-primary-dark: #1f6b42;
  --color-secondary: #ff7a1a;    /* laranja de destaque / CTA */
  --color-secondary-dark: #e0630a;
  --color-bg: #faf8f3;
  --color-card: #ffffff;
  --color-text: #2b2b2b;
  --color-text-light: #6b6b6b;
  --color-success: #22c55e;
  --color-badge: #e53935;

  --font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-full: 999px;

  --shadow-soft: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-strong: 0 8px 24px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- HEADER ---------- */
.site-header {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-wrap { display: flex; align-items: center; gap: 10px; }

.logo { width: 40px; height: 40px; border-radius: var(--radius-full); }

.brand-name { font-weight: 600; font-size: 15px; }
.brand-name strong { font-weight: 800; }

.live-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #7CFF9E;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(124,255,158,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(124,255,158,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,255,158,0); }
}

/* ---------- HERO ---------- */
.hero {
  text-align: center;
  padding: 46px 20px 30px;
}

.hero h1 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--color-primary-dark);
}

.subtitle {
  font-size: 15.5px;
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto 22px;
}

/* ---------- FORM / CTA ---------- */
.capture-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
}

.phone-input {
  width: 100%;
  padding: 15px 16px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color .2s;
}

.phone-input:focus { border-color: var(--color-primary); }

.cta-btn {
  width: 100%;
  padding: 16px 18px;
  font-size: 16.5px;
  font-weight: 700;
  color: #fff;
  background: var(--color-secondary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform .15s, background .2s;
}

.cta-btn:hover { background: var(--color-secondary-dark); transform: translateY(-1px); }
.cta-btn:active { transform: translateY(0); }

.microcopy {
  font-size: 12.5px;
  color: var(--color-text-light);
  margin-top: 10px;
}

/* ---------- TICKER (prova social em tempo real) ---------- */
.signup-ticker {
  margin-top: 22px;
  min-height: 20px;
  font-size: 13px;
  color: var(--color-primary-dark);
  font-weight: 600;
  opacity: 0;
  transition: opacity .4s ease;
}

.signup-ticker.show { opacity: 1; }

/* ---------- SHOWCASE ---------- */
.showcase { padding: 30px 20px 10px; text-align: center; }

.showcase h2 { font-size: 21px; margin-bottom: 20px; color: var(--color-primary-dark); }

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.offer-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 14px;
  position: relative;
  box-shadow: var(--shadow-soft);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.offer-card img {
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-badge);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.offer-card h3 {
  font-size: 13.5px;
  line-height: 1.3;
  margin-bottom: 8px;
  min-height: 36px;
}

.price {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-success);
  margin-bottom: 12px;
}

.price .old {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.offer-btn {
  display: block;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 8px;
  border-radius: var(--radius-md);
  text-decoration: none;
  margin-top: auto;
}

.offer-btn:hover { background: var(--color-primary-dark); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center;
  padding: 40px 20px 46px;
}

.final-cta h2 {
  font-size: 22px;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  text-align: center;
  padding: 22px 20px 30px;
  font-size: 11.5px;
  color: var(--color-text-light);
}

/* ---------- RESPONSIVE (tablet / desktop) ---------- */
@media (min-width: 640px) {
  .hero h1 { font-size: 32px; }
  .offers-grid { grid-template-columns: repeat(4, 1fr); }
  .capture-form { flex-direction: row; max-width: 480px; }
  .phone-input { flex: 1; }
  .cta-btn { flex-shrink: 0; width: auto; }
}
