/* Rezzu — site institucional. Paleta da marca (ver android .../ui/theme/Color.kt). */
:root {
  --green-primary: #30B662;
  --green-light: #44C46C;
  --teal: #1B7F77;
  --petroleum-blue: #0E677A;
  --petroleum-dark: #264B4F;
  --ice-white: #F9FDFA;
  --brand-black: #0A0A0A;
  --gradient: linear-gradient(120deg, #30B662 0%, #1B7F77 55%, #0E677A 100%);
  --radius: 16px;
  --maxw: 1080px;
  --shadow: 0 12px 40px rgba(14, 103, 122, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--petroleum-dark);
  background: var(--ice-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--petroleum-blue);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 253, 250, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 103, 122, 0.08);
}
header.site .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
header.site .logo img { height: 34px; display: block; }
header.site nav a {
  color: var(--petroleum-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 26px;
}
header.site nav a:hover { color: var(--green-primary); text-decoration: none; }
@media (max-width: 640px) {
  header.site nav a:not(.btn) { display: none; }
}

.btn {
  display: inline-block;
  background: var(--gradient);
  color: var(--ice-white) !important;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 16px 44px rgba(14,103,122,0.22); }
.btn.ghost {
  background: transparent;
  color: var(--petroleum-blue) !important;
  box-shadow: none;
  border: 1.5px solid rgba(14,103,122,0.2);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 50% -10%, rgba(48,182,98,0.14), transparent 70%);
  pointer-events: none;
}
.hero img.mark { height: 88px; margin-bottom: 28px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 18px; }
.hero p.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: 660px;
  margin: 0 auto 34px;
  color: var(--petroleum-dark);
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.badge-pill {
  display: inline-block;
  background: rgba(48,182,98,0.12);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); text-align: center; margin: 0 0 12px; }
section .sub { text-align: center; max-width: 640px; margin: 0 auto 48px; font-size: 1.08rem; }

.steps, .features { display: grid; gap: 24px; }
.steps { grid-template-columns: repeat(3, 1fr); }
.features { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .steps, .features { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid rgba(14,103,122,0.08);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 6px 24px rgba(14,103,122,0.06);
}
.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.card h3 { margin: 0 0 8px; font-size: 1.2rem; color: var(--petroleum-blue); }
.card p { margin: 0; color: var(--petroleum-dark); }

.alt { background: linear-gradient(180deg, rgba(48,182,98,0.05), rgba(14,103,122,0.04)); }

/* Privacy highlight band */
.band {
  background: var(--gradient);
  color: var(--ice-white);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
}
.band h2 { color: var(--ice-white); }
.band p { max-width: 680px; margin: 0 auto; font-size: 1.12rem; opacity: 0.95; }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
@media (max-width: 700px) { .plans { grid-template-columns: 1fr; } }
.plan { text-align: center; }
.plan .price { font-size: 2.4rem; font-weight: 800; color: var(--petroleum-blue); font-family: "Plus Jakarta Sans", sans-serif; }
.plan .price small { font-size: 1rem; font-weight: 600; color: var(--petroleum-dark); }
.plan ul { list-style: none; padding: 0; margin: 18px 0 0; text-align: left; }
.plan ul li { padding: 8px 0 8px 30px; position: relative; }
.plan ul li::before {
  content: "✓"; color: var(--green-primary); font-weight: 800;
  position: absolute; left: 0;
}
.plan.featured { border: 2px solid var(--green-primary); position: relative; }
.plan.featured .tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff; font-size: 0.78rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; letter-spacing: 0.03em;
}

/* ---------- Footer ---------- */
footer.site {
  background: var(--brand-black);
  color: rgba(249,253,250,0.7);
  padding: 48px 0 36px;
  font-size: 0.95rem;
}
footer.site .cols { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; align-items: center; }
footer.site img { height: 30px; }
footer.site nav a { color: rgba(249,253,250,0.78); margin-left: 22px; }
footer.site nav a:hover { color: var(--green-light); text-decoration: none; }
footer.site .copy { margin-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; font-size: 0.85rem; opacity: 0.7; }
@media (max-width: 640px) {
  footer.site .cols { flex-direction: column; align-items: flex-start; }
  footer.site nav a { margin: 0 22px 0 0; }
}

/* ---------- Legal pages ---------- */
.legal { padding: 64px 0; }
.legal .container { max-width: 760px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 6px; }
.legal .updated { color: var(--teal); font-weight: 600; margin: 0 0 36px; font-size: 0.95rem; }
.legal h2 { font-size: 1.35rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.08rem; margin: 24px 0 8px; color: var(--petroleum-dark); }
.legal p, .legal li { color: var(--petroleum-dark); }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal .back { display: inline-block; margin-top: 40px; font-weight: 600; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border: 1px solid rgba(14,103,122,0.14); vertical-align: top; }
.legal th { background: rgba(48,182,98,0.08); color: var(--petroleum-blue); }
.legal .note {
  background: rgba(48,182,98,0.07);
  border-left: 4px solid var(--green-primary);
  padding: 14px 18px;
  border-radius: 8px;
  margin: 20px 0;
}

/* ---------- Form (exclusão de dados) ---------- */
.form-card {
  background: #fff;
  border: 1px solid rgba(14,103,122,0.1);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  margin: 28px 0;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; color: var(--petroleum-blue); margin-bottom: 7px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--petroleum-dark);
  padding: 12px 14px;
  border: 1.5px solid rgba(14,103,122,0.2);
  border-radius: 10px;
  background: var(--ice-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(48,182,98,0.15);
}
.field textarea { resize: vertical; min-height: 96px; }
.field.check { display: flex; align-items: flex-start; gap: 10px; }
.field.check input { width: auto; margin-top: 4px; flex: 0 0 auto; }
.field.check label { font-weight: 500; color: var(--petroleum-dark); margin: 0; }
.field .hint { font-size: 0.85rem; color: var(--teal); margin-top: 6px; }
button.btn { font: inherit; border: none; cursor: pointer; }
button.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

.success {
  display: none;
  background: linear-gradient(120deg, rgba(48,182,98,0.1), rgba(14,103,122,0.08));
  border: 1.5px solid var(--green-primary);
  border-radius: var(--radius);
  padding: 30px 28px;
  margin: 28px 0;
}
.success .icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800; margin-bottom: 16px;
}
.success h2 { margin: 0 0 8px; }
.success p { margin: 0 0 8px; }
