/* ══════════════════════════════════════
   RENDA.CSS — Chef Brigadeiro
   ══════════════════════════════════════ */

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

:root {
  --primary: #5c3d2e;
  --primary-dk: #3b2318;
  --accent: #c0692a;
  --accent-lt: #e8935a;
  --gold: #b8860b;
  --gold-lt: #d4a843;
  --bg: #fffaf6;
  --bg-sec: #fff4ec;
  --text: #2c1a0e;
  --muted: #7a5c45;
  --border: #edd9c8;
}

body {
  background: var(--bg);
  font-family: "DM Sans", sans-serif;
  color: var(--text);
}

/* ── HERO ── */
.renda-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: url("../img/banner0.jpg") center top / cover no-repeat;
  background-position-x: 70%;
  overflow: hidden;
}
.renda-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(28, 10, 2, 0.92) 48%,
    rgba(28, 10, 2, 0.28) 100%
  );
}
.renda-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 88px 24px;
}
.renda-hero-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(212, 168, 67, 0.15);
  border: 0.5px solid rgba(212, 168, 67, 0.4);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 20px;
}
.renda-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 54px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.renda-hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.renda-hero p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.renda-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-gold {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-gold:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ── SEÇÃO PADRÃO ── */
.sec {
  padding: 80px 0;
}
.sec-alt {
  background: var(--bg-sec);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sec-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  text-align: center;
}
.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--primary-dk);
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.2;
}
.sec-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 52px;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── KIT CARDS ── */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.kit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.kit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(92, 61, 46, 0.1);
}
.kit-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-sec);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.kit-info h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-dk);
  margin-bottom: 5px;
}
.kit-info p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.kit-destaque {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, #fffbf3 0%, #fff4ec 100%);
}
.kit-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  background: #fef3e2;
  border: 0.5px solid #f0d080;
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 6px;
}

/* ── PASSO A PASSO ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.step-item {
  padding: 32px 20px;
  text-align: center;
  position: relative;
}
.step-item::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 44px;
  font-size: 22px;
  color: var(--border);
}
.step-item:last-child::after {
  display: none;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: "Playfair Display", serif;
  box-shadow: 0 4px 14px rgba(192, 105, 42, 0.35);
}
.step-icon {
  font-size: 30px;
  margin-bottom: 12px;
  display: block;
}
.step-item h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-dk);
  margin-bottom: 8px;
}
.step-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   SIMULADOR — Redesign completo
   ══════════════════════════════════════ */
.sim-section-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.sim-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(92, 61, 46, 0.08);
}

.sim-header {
  background: var(--primary-dk);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sim-header-left h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}
.sim-header-left p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}
.sim-header-badge {
  background: rgba(212, 168, 67, 0.2);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-lt);
  white-space: nowrap;
}

.sim-body {
  padding: 32px 36px;
}

.sim-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.sim-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sim-field-wrap label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.sim-input-group {
  position: relative;
}
.sim-input-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  pointer-events: none;
}
.sim-input-group input {
  width: 100%;
  padding: 13px 14px 13px 32px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 18px;
  font-family: "Playfair Display", serif;
  color: var(--primary-dk);
  background: var(--bg);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.sim-input-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(192, 105, 42, 0.1);
  background: #fff;
}
.sim-input-group.no-prefix input {
  padding-left: 14px;
}

.sim-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

/* Cards de resultado */
.sim-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.sim-result-card {
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.sim-result-card:hover {
  transform: translateY(-2px);
}

.sim-result-card.card-kit {
  background: #fdfaf5; /* Creme bem clarinho */
  border: 1px solid #eee1d5;
}

.sim-result-card.card-semana {
  background: #ffffff; /* Fundo branco para respirar */
  border: 1px solid #e0d0c0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.sim-result-card.card-mes {
  /* Um dourado mais "champagne" e menos amarelo vibrante */
  background: linear-gradient(135deg, #c5a059 0%, #d4a843 100%);
  border: none;
  color: #fff;
}

.sim-result-icon {
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}
.sim-result-val {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
  font-weight: 700;
}
.card-kit .sim-result-val { color: #8d6e63; } /* Marrom suave */
.card-semana .sim-result-val { color: #5c3d2e; } /* Marrom chocolate */
.card-mes .sim-result-val { color: #ffffff; }

.sim-result-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card-kit .sim-result-label { color: #bcaaa4; }
.card-semana .sim-result-label { color: #8d6e63; }
.card-mes .sim-result-label { color: rgba(255, 255, 255, 0.9); }

.sim-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  padding-top: 4px;
}

.sim-cta {
  background: var(--bg-sec);
  border-top: 1px solid var(--border);
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.sim-cta p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}
.sim-cta p strong {
  color: var(--primary-dk);
  font-weight: 500;
}
.btn-sim-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-sim-wpp:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-1px);
}

/* ── DEPOIMENTOS ── */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.dep-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.dep-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(92, 61, 46, 0.09);
}
.dep-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 14px;
}
.dep-txt {
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
  padding-left: 18px;
  border-left: 2px solid var(--border);
}
.dep-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dep-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-sec);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.dep-nome {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-dk);
}
.dep-local {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}

/* ── CTA FINAL ── */
.cta {
  background: var(--primary-dk);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "🍫";
  position: absolute;
  font-size: 320px;
  opacity: 0.03;
  top: -60px;
  right: -40px;
  pointer-events: none;
  line-height: 1;
}
.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta h2 em {
  font-style: italic;
  color: var(--gold-lt);
}
.cta-preco {
  font-family: "Playfair Display", serif;
  font-size: 68px;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.cta-preco sup {
  font-size: 28px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  vertical-align: super;
}
.cta-preco-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.cta p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.btn-wpp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 17px 40px;
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}
.btn-wpp-cta:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
}
.cta-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cta-chip {
  background: rgba(255, 255, 255, 0.07);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── RESPONSIVO ── */
@media (max-width: 768px) {
  .sim-inputs {
    grid-template-columns: 1fr;
  }
  .sim-results {
    grid-template-columns: 1fr;
  }
  .sim-header {
    padding: 22px 24px;
  }
  .sim-body {
    padding: 24px 24px;
  }
  .sim-cta {
    padding: 18px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .step-item::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .renda-hero {
    min-height: 500px;
  }
}

.custom-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 12px 18px;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    max-width: 320px;
    font-family: sans-serif;
}

.hidden-modal {
    transform: translateX(-150%);
    opacity: 0;
}

.modal-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

#modal-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.modal-text p {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

#modal-time {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: bold;
}


