* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #1a1a1a; background: #fff; }

/* CORES */
:root {
  --blue: #1a3a6b;
  --blue-dark: #0f2548;
  --green: #6ab023;
  --green-dark: #5a9018;
  --gray-bg: #f4f6f9;
  --text-muted: #5a6270;
}

/* NAV */
nav {
  background: var(--blue);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-sub { color: rgba(255,255,255,0.65); font-size: 12px; }
.nav-logo-name { color: #fff; font-size: 18px; font-weight: 700; letter-spacing: 0.5px; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-wpp {
  background: #25d366; color: #fff; border: none; padding: 10px 18px;
  border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 32px 64px;
  text-align: center;
}
.hero-tag {
  display: inline-block; background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px;
  letter-spacing: 1px; margin-bottom: 20px; text-transform: uppercase;
}
.hero h1 { color: #fff; font-size: 34px; font-weight: 700; line-height: 1.3; margin-bottom: 16px; }
.hero h1 span { color: var(--green); }
.hero p { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.7; max-width: 580px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--blue); border: none; padding: 14px 28px;
  border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none;
}
.btn-wpp-hero {
  background: #25d366; color: #fff; border: none; padding: 14px 28px;
  border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 8px; text-decoration: none;
}
.hero-info {
  margin-top: 40px; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.hero-info-item { color: rgba(255,255,255,0.7); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.hero-info-item strong { color: #fff; }

/* SEÇÕES */
section { padding: 64px 32px; }
.container { max-width: 900px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: #eaf3de; color: #3b6d11;
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  letter-spacing: 1px; margin-bottom: 12px; text-transform: uppercase;
}
.section-title { font-size: 26px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.6; margin-bottom: 40px; }

/* BENEFÍCIOS */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.benefit-card {
  text-align: center; padding: 28px 16px;
  background: #fff; border: 1px solid #e4e8f0;
  border-radius: 12px;
}
.benefit-icon { font-size: 32px; margin-bottom: 12px; }
.benefit-title { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.benefit-sub { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* TABELA COMPARATIVA */
.compare-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; font-size: 14px; }
.compare-table th { padding: 16px; font-size: 13px; font-weight: 700; }
.compare-table th:first-child { text-align: left; background: var(--blue); color: #fff; }
.compare-table th.col-com { background: var(--green); color: #fff; text-align: center; }
.compare-table th.col-sem { background: #7a8599; color: #fff; text-align: center; }
.compare-table td { padding: 13px 16px; border-bottom: 1px solid #e4e8f0; }
.compare-table td:first-child { font-weight: 600; color: var(--blue); background: #f0f4fb; }
.compare-table td.check-col { text-align: center; font-size: 20px; }
.compare-table tr:nth-child(even) td:first-child { background: #e8eef9; }
.yes { color: var(--green); }
.no { color: #bbb; }

/* PLANOS */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.plan-card {
  background: #fff; border: 1px solid #dde3f0; border-radius: 14px;
  padding: 28px 22px; position: relative;
}
.plan-card.featured { border: 2.5px solid var(--blue); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.5px;
}
.plan-name { font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.plan-divider { height: 1px; background: #e4e8f0; margin: 16px 0; }
.plan-feature { display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; font-size: 13px; color: #333; }
.plan-feature .ck { color: var(--green); font-weight: 700; flex-shrink: 0; }
.plan-btn {
  display: block; width: 100%; margin-top: 20px; padding: 13px;
  border-radius: 8px; font-size: 14px; font-weight: 700; text-align: center;
  cursor: pointer; text-decoration: none; border: none;
}
.plan-btn-primary { background: var(--green); color: #fff; }
.plan-btn-primary:hover { background: var(--green-dark); }
.plan-btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue) !important; }
.plan-btn-outline:hover { background: var(--blue); color: #fff; }

/* FUNERÁRIA */
.funeral-box {
  background: var(--blue); border-radius: 14px; padding: 40px 32px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.funeral-box-text { flex: 1; min-width: 240px; }
.funeral-box-text h2 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.funeral-box-text p { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.funeral-badge {
  display: inline-block; background: #fff; color: var(--blue);
  font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 20px;
}
.funeral-box-badges { display: flex; flex-direction: column; gap: 10px; min-width: 200px; }
.fbadge {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; padding: 12px 16px; color: #fff; font-size: 13px;
  display: flex; align-items: center; gap: 10px;
}
.fbadge .fi { font-size: 20px; }

/* CONTATO */
.contact-section { background: var(--gray-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-info h2 { font-size: 24px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  flex-shrink: 0;
}
.contact-label { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-value { font-size: 15px; color: var(--blue); font-weight: 700; }
.contact-cta {
  background: #fff; border: 1px solid #dde3f0; border-radius: 14px; padding: 32px;
}
.contact-cta h3 { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.contact-cta p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.btn-wpp-big {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25d366; color: #fff; padding: 16px 24px; border-radius: 10px;
  font-size: 16px; font-weight: 700; text-decoration: none; margin-bottom: 12px;
}
.btn-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--blue); color: #fff; padding: 14px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 700; text-decoration: none;
}

/* FOOTER */
footer {
  background: var(--blue-dark); padding: 32px;
  text-align: center; color: rgba(255,255,255,0.5); font-size: 13px;
}
footer strong { color: rgba(255,255,255,0.8); }

/* RESPONSIVO */
@media (max-width: 640px) {
  .hero h1 { font-size: 24px; }
  .nav-links { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 48px 20px; }
  .funeral-box { padding: 28px 20px; }
}
