@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500;700;800;900&display=swap');
:root { --cream:#fff8ec; --ink:#3b2f2a; --muted:#8a7a70; --sun:#ff8a3d; --sun-dark:#e8701f; --line:#f0e4d2; --mint:#4cc38a; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: Nunito, ui-rounded, system-ui, sans-serif; line-height: 1.6; }
a { color: var(--sun-dark); }
header, main, footer { max-width: 860px; margin: 0 auto; padding: 0 16px; }
header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; padding-bottom: 8px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 900; font-size: 1.2rem; color: var(--ink); text-decoration: none; }
.brand img { width: 36px; height: 36px; }
.btn { display: inline-block; background: var(--sun); color: #fff; font-weight: 900; padding: 10px 18px; border-radius: 16px; text-decoration: none; box-shadow: 0 4px 0 var(--sun-dark); }
h1 { font-size: clamp(2rem, 6vw, 3.2rem); line-height: 1.1; margin: 24px 0 8px; font-weight: 900; }
h2 { font-size: 1.6rem; margin: 40px 0 12px; font-weight: 900; }
h3 { margin: 0 0 4px; font-size: 1.1rem; font-weight: 900; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 640px; }
.grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card { background: #fff; border: 2px solid var(--line); border-radius: 24px; padding: 18px; }
.card .icon { font-size: 2rem; }
.steps { counter-reset: s; list-style: none; padding: 0; }
.steps li { counter-increment: s; background: #fff; border: 2px solid var(--line); border-radius: 20px; padding: 14px 16px 14px 60px; margin: 10px 0; position: relative; }
.steps li::before { content: counter(s); position: absolute; left: 14px; top: 12px; width: 32px; height: 32px; border-radius: 50%; background: var(--sun); color: #fff; font-weight: 900; display: grid; place-items: center; }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 20px; overflow: hidden; border: 2px solid var(--line); }
th, td { padding: 10px 12px; border-top: 1px solid var(--line); text-align: center; }
th:first-child, td:first-child { text-align: left; }
thead th { background: var(--cream); border-top: 0; }
details { background: #fff; border: 2px solid var(--line); border-radius: 18px; padding: 12px 16px; margin: 10px 0; }
summary { font-weight: 800; cursor: pointer; }
footer { color: var(--muted); font-size: .9rem; padding-top: 32px; padding-bottom: 40px; }
.tagline { display: inline-block; margin: 24px 0 0; padding: 6px 14px; border-radius: 999px; background: #fff; border: 2px solid var(--line); color: var(--sun-dark); font-weight: 800; }
.tagline + h1 { margin-top: 12px; }
.contacts { display: flex; flex-wrap: wrap; gap: 12px; }
.btn.whatsapp { background: #25d366; box-shadow: 0 4px 0 #1da851; }
.btn.outline { background: #fff; color: var(--ink); border: 2px solid var(--line); box-shadow: none; }
