/* ── Variáveis ───────────────────────────────────────────── */
:root {
  --brown: #4c4637;
  --red: #b40c0c;
  --red-dark: #920a0a;
  --orange: #f7911e;
  --purple: #5d55a4;
  --teal: #07988a;
  --pink: #e91d64;
  --dark: #3d3d3d;
  --text: #2a2a2a;
  --white: #ffffff;
}

/* ── Reset / Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Arial', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2 { font-family: 'Andada', serif; font-weight: 700; }

.btn { display: inline-block; width: 100%; padding: 15px; font-size: .9rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; border-radius: 4px; cursor: pointer; border: none; transition: background .2s; }
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dark); }
.btn--red:disabled { opacity: .6; cursor: not-allowed; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { position: relative; padding: 40px 0 220px; color: var(--white); background: #2a2115 url('../assets/img/bg-header.jpg') center/cover no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,20,10,.55) 0%, rgba(30,20,10,.75) 100%); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero__logo { width: 90px; margin-bottom: 30px; }
.hero__eyebrow { color: var(--orange); font-size: 1.1rem; font-family: 'Andada', serif; margin-bottom: 6px; }
.hero__title { font-size: 2.1rem; line-height: 1.2; margin-bottom: 18px; }
.hero__subtitle { font-size: 1.1rem; font-weight: 300; line-height: 1.5; }
.hero__mockup { text-align: center; }

/* ── FORM + FEATURES ─────────────────────────────────────── */
.oferta { padding: 0 0 60px; }
.oferta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-box { position: relative; z-index: 2; margin-top: -200px; background: var(--brown); color: var(--white); border-radius: 6px; padding: 36px; }
.form-box h2 { font-size: 1.35rem; text-align: center; margin-bottom: 14px; }
.form-box__sub { text-align: center; font-size: .95rem; margin-bottom: 24px; line-height: 1.5; }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form input {
  width: 100%; padding: 14px 16px; border: none; border-radius: 4px;
  font-family: 'Arial', sans-serif; font-size: .92rem; color: #333; outline: none;
}
.form__feedback { min-height: 16px; text-align: center; font-size: .85rem; color: #ffb4a8; }
.form__disclaimer { font-size: .78rem; text-align: center; opacity: .85; margin-top: 4px; }

.features { padding-top: 40px; }
.features h2 { color: var(--text); font-size: 1.5rem; margin-bottom: 30px; }
.features__item { display: flex; gap: 18px; margin-bottom: 26px; align-items: flex-start; }
.features__icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.features__icon img { width: 24px; height: 24px; }
.features__icon--orange { background: var(--orange); }
.features__icon--purple { background: var(--purple); }
.features__icon--teal { background: var(--teal); }
.features__icon--pink { background: var(--pink); }
.features__item p { font-family: 'Andada', serif; color: var(--text); font-size: 1.02rem; line-height: 1.5; padding-top: 8px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.85); padding: 24px 0; text-align: center; }
.footer p { font-size: .85rem; margin-bottom: 6px; }
.footer a { color: rgba(255,255,255,.85); text-decoration: underline; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding-bottom: 60px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__mockup { max-width: 340px; margin: 0 auto; }
  .oferta__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-box { margin-top: 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero__title { font-size: 1.6rem; }
  .form-box { padding: 26px 20px; }
}
