:root {
  --brand: #c62828; /* ULY red */
  --accent: #b71c1c; /* dark red accent */
  --text: #1b1b1f;
  --muted: #61646b;
  --bg: #ffffff;
  --bg-alt: #fdf6f6; /* subtle red-tinted background */
  --border: #e5e7eb;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: var(--bg); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 8px; text-decoration: none; font-weight: 600; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-outline { border: 2px solid var(--brand); color: var(--brand); }
.btn.full { width: 100%; text-align: center; }

.site-header { border-bottom: 1px solid var(--border); background: #fff; position: sticky; top: 0; z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand-logo img { display: block; height: 80px; }
.brand .tag { display: none; }
.contact-top { display: flex; gap: 12px; align-items: center; }
.phone { color: var(--brand); font-weight: 600; }

.hero { position: relative; overflow: hidden; }
.hero-inner { padding: 48px 20px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.hero-copy h1 { font-size: clamp(24px, 4vw, 40px); margin: 0 0 12px; }
.hero-copy p { color: var(--muted); max-width: 680px; margin: 0 0 20px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.trust { display: flex; gap: 16px; flex-wrap: wrap; padding: 0; list-style: none; color: var(--muted); margin: 20px 0 0; }
.hero-media { display: flex; justify-content: center; }
.hero-media img { width: 100%; height: auto; max-width: 720px; border-radius: 14px; border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); background: #fff; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(198,40,40,0.10), rgba(183,28,28,0.06)); pointer-events: none; }

.section { padding: 48px 0; }
.section.alt { background: var(--bg-alt); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { border: 1px solid var(--border); border-radius: 10px; padding: 18px; background: #fff; }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }
.steps { display: grid; grid-template-columns: 1fr; gap: 8px; color: var(--muted); }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
blockquote { margin: 0; padding: 18px; border-left: 4px solid var(--brand); background: #fff; border-radius: 8px; }
blockquote cite { display: block; margin-top: 10px; color: var(--muted); font-style: normal; }

.lead-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .lead-grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }
.lead-copy h2 { margin: 0 0 8px; }
.bullets { list-style: none; padding: 0; margin: 12px 0 0; color: var(--muted); }
.bullets li { margin: 6px 0; }

.lead-form { border: 1px solid var(--border); border-radius: 12px; padding: 18px; background: #fff; }
.form-row { display: grid; gap: 6px; margin-bottom: 12px; }
label { font-weight: 600; font-size: 14px; }
input, select, textarea { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid var(--border); font-size: 14px; }
.form-row.checkbox { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; }
.form-status { margin-top: 10px; font-size: 14px; }
.privacy { color: var(--muted); font-size: 12px; }

/* Placeholder para formulário WordPress (CF7) */
.wp-form-placeholder { border: 1px dashed var(--border); border-radius: 12px; padding: 18px; background: #fff; color: var(--muted); }

.site-footer { border-top: 1px solid var(--border); background: #fff; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding: 18px 20px; }
.footer-nav { display: flex; gap: 12px; }
.footer-nav a { color: var(--brand); text-decoration: none; }