/* ============================================================
   DOOLK DELIVERY — Landing Page Temporária
   Design system: laranja da marca (#FF7A1A → #E85D04) + branco,
   Poppins (display) + Inter (texto), muito espaço em branco.
   ============================================================ */

:root {
  --orange-500: #ff7a1a;
  --orange-600: #f2650a;
  --orange-700: #d95400;
  --amber-400: #ffb020;
  --ink-900: #16181d;
  --ink-700: #3a3d44;
  --ink-500: #6b7280;
  --ink-300: #b8bcc4;
  --paper: #ffffff;
  --paper-soft: #faf9f7;
  --line: #ececec;
  --success: #1f9d55;
  --danger: #e0433d;

  --font-display: "Poppins", "Inter", sans-serif;
  --font-body: "Inter", "Poppins", sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(22, 24, 29, 0.06);
  --shadow-md: 0 8px 24px rgba(22, 24, 29, 0.08);
  --shadow-lg: 0 24px 60px rgba(217, 84, 0, 0.16);

  --container: 1120px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

p { margin: 0; }

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

.section {
  padding: 96px 0;
}

.section-header {
  max-width: 620px;
  margin: 0 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
}

.section-header h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--ink-500);
  font-size: 17px;
}

/* -------------------- focus visibility -------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--orange-600);
  outline-offset: 3px;
  border-radius: 6px;
}

/* -------------------- header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(155deg, #17140f 0%, #241c12 55%, #3a2712 100%);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255, 178, 32, 0.14);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 50px;
  width: auto;
}

.footer-brand img { height: 26px; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  border-color: var(--amber-400);
  background: rgba(255, 176, 32, 0.16);
  transform: translateY(-1px);
}

/* -------------------- hero -------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 15% 0%, #fff8f1 0%, var(--paper) 46%);
  padding: 96px 0 64px;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 640px;
  height: 640px;
  background: radial-gradient(closest-side, rgba(255, 122, 26, 0.18), rgba(255, 122, 26, 0));
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-700);
  background: #fff1e2;
  border: 1px solid #ffdcb0;
  padding: 7px 14px 7px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.status-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.5);
  animation: pulse-dot 2.2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(255, 122, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 26, 0); }
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--orange-600), var(--amber-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-500);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(100deg, var(--orange-600), var(--orange-500));
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(217, 84, 0, 0.24);
}

.btn-ghost {
  color: var(--ink-900);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 6px;
}

.btn-ghost svg { transition: transform 0.2s ease; }
.btn-ghost:hover svg { transform: translateX(3px); }

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--ink-500);
  font-size: 14px;
}

.hero-meta strong {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 20px;
  display: block;
  font-weight: 600;
}

/* ---- hero visual: phone mock with order ticket ---- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mark-badge {
  position: absolute;
  top: -18px;
  left: -8px;
  width: 88px;
  height: 88px;
  z-index: 2;
  filter: drop-shadow(0 14px 26px rgba(217, 84, 0, 0.35));
}

.phone {
  width: min(320px, 88vw);
  border-radius: 34px;
  background: linear-gradient(160deg, var(--orange-500), var(--orange-700));
  padding: 10px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.phone-screen {
  background: var(--paper);
  border-radius: 26px;
  padding: 22px 18px 24px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 600;
}

.order-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
}

.order-card .row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 8px;
}

.order-card .row:last-child { margin-bottom: 0; }

.order-card strong { color: var(--ink-900); }

.status-track {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.status-track .seg {
  flex: 1;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--line);
  overflow: hidden;
}

.status-track .seg.done { background: var(--orange-500); }
.status-track .seg.active {
  background: linear-gradient(90deg, var(--orange-500) 50%, var(--line) 50%);
  background-size: 220% 100%;
  animation: track-fill 2.6s ease-in-out infinite;
}

@keyframes track-fill {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

.wa-bubble {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
}

.wa-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-bubble p {
  font-size: 13px;
  color: var(--ink-700);
}

.wa-bubble .name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 2px;
}

/* -------------------- logo strip -------------------- */
.audience-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  background: var(--paper-soft);
}

.audience-strip .container {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-500);
  font-weight: 600;
  font-size: 14px;
}

.audience-item .ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* -------------------- features grid -------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: #ffd7ab;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  background: linear-gradient(150deg, #fff1e2, #ffe2c2);
  color: var(--orange-700);
}

.feature-card h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--ink-500);
}

/* -------------------- how it works -------------------- */
.flow-section { background: var(--paper-soft); }

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.flow-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
}

.flow-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-600);
  background: #fff1e2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.flow-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.flow-card p {
  font-size: 14px;
  color: var(--ink-500);
}

/* -------------------- waitlist / signup -------------------- */
.signup-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 24px;
  max-width: calc(var(--container) - 0px);
  margin-inline: auto;
  background: linear-gradient(155deg, #1a1c20 0%, #2a231b 60%, #3a2712 100%);
  padding: 72px 0;
}

.signup-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.signup-copy .eyebrow { color: var(--amber-400); }
.signup-copy h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  margin-bottom: 16px;
}

.signup-copy p {
  color: #d8d3ca;
  font-size: 16px;
  max-width: 440px;
  margin-bottom: 26px;
}

.signup-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signup-perks li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #e9e5dd;
  font-size: 14px;
}

.signup-perks svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--amber-400);
}

.signup-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.signup-form h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.signup-form .form-hint {
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 20px;
  display: block;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-900);
  background: var(--paper-soft);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input::placeholder { color: var(--ink-300); }

.field input:focus {
  border-color: var(--orange-500);
  background: #fff;
  outline: none;
}

.field.has-error input { border-color: var(--danger); }

.field-error {
  display: none;
  font-size: 12px;
  color: var(--danger);
  margin-top: 6px;
}

.field.has-error .field-error { display: block; }

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--ink-500);
  margin-bottom: 20px;
}

.form-consent input { margin-top: 3px; }

.form-consent a { color: var(--orange-600); font-weight: 600; }

.signup-form .btn-primary {
  width: 100%;
}

.form-status {
  display: none;
  margin-top: 14px;
  font-size: 13.5px;
  padding: 12px 14px;
  border-radius: 10px;
}

.form-status.show { display: block; }

.form-status.success {
  background: #eafaf0;
  color: var(--success);
  border: 1px solid #c7ecd5;
}

.form-status.error {
  background: #fdecec;
  color: var(--danger);
  border: 1px solid #f6cccb;
}

/* -------------------- footer -------------------- */
.site-footer {
  padding: 64px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.footer-brand img { height: 24px; margin-bottom: 14px; }

.footer-brand p {
  color: var(--ink-500);
  font-size: 13.5px;
  max-width: 260px;
}

.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }

.footer-col li { margin-bottom: 10px; }

.footer-col a,
.footer-col p {
  font-size: 13.5px;
  color: var(--ink-500);
}

.footer-col a:hover { color: var(--orange-600); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-300);
}

/* -------------------- legal pages -------------------- */
.legal-header {
  padding: 56px 0 24px;
  border-bottom: 1px solid var(--line);
}

.legal-header .eyebrow { color: var(--orange-600); }

.legal-header h1 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
}

.legal-header .updated {
  color: var(--ink-500);
  font-size: 13.5px;
  margin-top: 10px;
}

.legal-body {
  padding: 48px 0 96px;
  max-width: 760px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p, .legal-body li {
  color: var(--ink-700);
  font-size: 15px;
  margin-bottom: 12px;
}

.legal-body ul { padding-left: 20px; }

.legal-body a { color: var(--orange-600); font-weight: 600; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-500);
  margin-bottom: 20px;
}

.back-link:hover { color: var(--orange-600); }

/* -------------------- reveal on scroll -------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .status-pill .dot, .status-track .seg.active { animation: none; }
}

/* -------------------- responsive -------------------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 12px; }
  .signup-section .container { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .signup-section { padding: 48px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .header-cta span { display: none; }
}
