/* Ironing Hero — shared site styles
   Used by all service pages and the new landing. Companion to cart.css. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1a56db;
  --blue-dark: #1341b0;
  --blue-light: #eff4ff;
  --green: #057a55;
  --green-bg: #f0fdf4;
  --orange: #c2410c;
  --orange-bg: #fff7ed;
  --purple: #7c3aed;
  --purple-bg: #f5f3ff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .14);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: #fff; line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
}
.logo {
  font-size: 1.2rem; font-weight: 800;
  background: linear-gradient(135deg, #1a56db 0%, #374151 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a, .nav-links > .has-sub > .sub-trigger {
  color: var(--gray-700); font-weight: 500; font-size: .92rem;
  text-decoration: none; cursor: pointer;
  background: none; border: none; padding: 0;
  display: inline-flex; align-items: center; gap: 4px;
  font-family: inherit;
}
.nav-links > a:hover, .nav-links > .has-sub > .sub-trigger:hover { color: var(--blue); }
.has-sub { position: relative; }
.sub-menu {
  position: absolute; top: 100%; left: -16px;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 240px;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .18s, transform .18s;
}
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu, .has-sub.open .sub-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.sub-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  text-decoration: none; color: var(--gray-700); font-size: .92rem;
}
.sub-menu a:hover { background: var(--blue-light); color: var(--blue); }
.sub-menu a i { width: 18px; color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gray-500); text-decoration: none; font-size: .85rem; }
.lang-link img { height: 14px; width: auto; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; font-weight: 600; font-size: .9rem;
  padding: 9px 18px; border-radius: 50px; text-decoration: none;
}
.nav-cta:hover { background: #1ebe5d; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 4px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); transition: .2s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── BREADCRUMBS ── */
.crumbs { max-width: 1100px; margin: 0 auto; padding: 16px 5% 0; font-size: .82rem; color: var(--gray-500); }
.crumbs a { color: var(--gray-500); text-decoration: none; }
.crumbs a:hover { color: var(--blue); }
.crumbs span { margin: 0 8px; color: var(--gray-200); }

/* ── SERVICE HERO ── */
.service-hero {
  max-width: 1100px; margin: 0 auto;
  padding: 32px 5% 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.hero-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px;
  font-size: 1.4rem; margin-bottom: 16px;
}
.hero-icon.blue { background: var(--blue-light); color: var(--blue); }
.hero-icon.green { background: var(--green-bg); color: var(--green); }
.hero-icon.orange { background: var(--orange-bg); color: var(--orange); }
.hero-icon.purple { background: var(--purple-bg); color: var(--purple); }
.service-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
.service-hero h1 span { color: var(--blue); }
.service-hero .lead { color: var(--gray-700); font-size: 1.05rem; margin-bottom: 20px; max-width: 520px; }
.hero-bullets { list-style: none; padding: 0; display: grid; gap: 8px; }
.hero-bullets li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--gray-700); }
.hero-bullets li i { color: var(--green); }
.hero-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.hero-card h3 { font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: 16px; font-weight: 700; }
.hero-card .quick-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: .92rem; gap: 12px; }
.hero-card .quick-row:last-of-type { border-bottom: none; }
.hero-card .quick-row strong { color: var(--blue); font-weight: 700; }
.hero-card .quick-add { cursor: pointer; transition: background .15s; }
.hero-card .quick-add:hover { background: var(--blue-light); }
.hero-card .quick-add button { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: none; background: var(--blue); color: #fff; border-radius: 6px; cursor: pointer; font-size: .8rem; transition: background .2s; flex-shrink: 0; }
.hero-card .quick-add button:hover { background: var(--blue-dark); }

/* ── BLOCK ── */
section.block { max-width: 1100px; margin: 0 auto; padding: 56px 5%; }
section.block.alt { background: var(--gray-50); max-width: none; padding-left: 0; padding-right: 0; }
section.block.alt > .inner { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.block-label { color: var(--blue); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.block-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.block-sub { color: var(--gray-500); margin-bottom: 32px; max-width: 640px; }

/* ── OPTIONS GRID ── */
.options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.option-card {
  position: relative;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 24px; cursor: pointer;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: flex; flex-direction: column; gap: 12px;
}
.option-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.option-card .pop { position: absolute; top: 12px; right: 12px; background: var(--blue); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .04em; padding: 4px 10px; border-radius: 50px; }
.option-card .opt-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--green); background: var(--green-bg); padding: 4px 10px; border-radius: 50px; font-size: .72rem; font-weight: 700; width: fit-content; }
.option-card .opt-tag.orange { color: var(--orange); background: var(--orange-bg); }
.option-card .opt-tag.purple { color: var(--purple); background: var(--purple-bg); }
.option-card h3 { font-size: 1.15rem; font-weight: 800; }
.option-card .desc { color: var(--gray-700); font-size: .9rem; flex: 1; }
.option-card .price { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); }
.option-card .price small { font-size: .8rem; font-weight: 500; color: var(--gray-500); margin-left: 4px; }
.option-card .add-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 10px; background: var(--blue); color: #fff;
  font-weight: 700; font-size: .92rem; border: none; cursor: pointer;
  transition: background .2s;
}
.option-card .add-btn:hover { background: var(--blue-dark); }

.info-strip { background: var(--orange-bg); color: var(--orange); padding: 14px 18px; border-radius: 12px; font-size: .9rem; display: flex; gap: 10px; align-items: flex-start; margin-top: 22px; }
.info-strip i { margin-top: 2px; }

/* ── PRICE TABLE (dry cleaning) ── */
.price-table-wrap { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.price-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.price-table thead th { background: var(--gray-50); font-weight: 700; text-align: left; padding: 14px 18px; color: var(--gray-700); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.price-table tbody tr { border-top: 1px solid var(--gray-100); cursor: pointer; transition: background .15s; }
.price-table tbody tr:hover { background: var(--blue-light); }
.price-table td { padding: 14px 18px; }
.price-table td.td-price { text-align: right; font-weight: 700; color: var(--blue); white-space: nowrap; }
.price-table td.td-add { text-align: right; width: 1px; padding-right: 14px; }
.price-table .mini-add {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: #fff; border: none;
  padding: 6px 12px; border-radius: 8px; font-size: .8rem; font-weight: 700;
  cursor: pointer; transition: background .2s;
}
.price-table .mini-add:hover { background: var(--blue-dark); }

/* ── HOW IT WORKS ── */
.steps-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.step { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 20px; }
.step .num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: .9rem; margin-bottom: 10px; }
.step h4 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: .88rem; color: var(--gray-500); }

/* ── FAQ ── */
.faq-list { display: grid; gap: 10px; max-width: 820px; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; }
.faq-item summary {
  cursor: pointer; padding: 16px 20px; font-weight: 600; font-size: .98rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--blue); font-weight: 800; font-size: 1.4rem; transition: transform .2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body { padding: 0 20px 18px; color: var(--gray-700); font-size: .92rem; }
.faq-body a { color: var(--blue); text-decoration: underline; }

/* ── PERSONA / B2B CARDS ── */
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.persona-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 24px; transition: transform .18s, box-shadow .18s;
}
.persona-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.persona-card .ico { font-size: 2rem; margin-bottom: 12px; }
.persona-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.persona-card p { color: var(--gray-700); font-size: .9rem; }
.persona-card .tag { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; background: var(--blue-light); color: var(--blue); }

/* ── ZONE PILLS ── */
.zones { display: flex; flex-wrap: wrap; gap: 8px; }
.zone-pill { background: #fff; border: 1px solid var(--gray-200); padding: 8px 14px; border-radius: 50px; font-size: .85rem; color: var(--gray-700); }

/* ── FOOTER CTA ── */
.footer-cta { background: linear-gradient(135deg, #0f172a, #1e3a8a); color: #fff; text-align: center; padding: 60px 5%; }
.footer-cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.footer-cta p { color: rgba(255, 255, 255, .75); margin-bottom: 28px; font-size: 1.02rem; }
.contact-options { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-wa-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; font-weight: 700;
  padding: 14px 28px; border-radius: 50px; text-decoration: none; font-size: 1rem;
}
.btn-wa-big:hover { background: #1ebe5d; }
.btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .15); border: 2px solid rgba(255, 255, 255, .3);
  color: #fff; font-weight: 600; padding: 12px 22px; border-radius: 50px; text-decoration: none;
}
.btn-phone:hover { background: rgba(255, 255, 255, .25); }
.payments { margin-top: 24px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; color: rgba(255, 255, 255, .55); font-size: .82rem; }

/* ── FOOTER ── */
footer { background: #0f172a; color: rgba(255, 255, 255, .5); text-align: center; padding: 22px 5%; font-size: .8rem; }
footer a { color: rgba(255, 255, 255, .6); text-decoration: none; margin: 0 6px; }
footer a:hover { color: #fff; }

/* ── STICKY WHATSAPP ── */
.sticky-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #25d366; color: #fff; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  text-decoration: none; transition: transform .2s;
}
.sticky-wa:hover { transform: scale(1.1); }

/* ── LANDING-SPECIFIC ── */
.hero-landing {
  text-align: center;
  padding: 80px 5% 60px;
  background: url('/assets/ihimage.jpg') center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-landing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-landing > * { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--gray-200); padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 600; color: var(--gray-700); margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0, 0, 0, .04); }
.hero-badge i { color: #f59e0b; }
.hero-landing h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.1; margin-bottom: 16px; max-width: 900px; margin-left: auto; margin-right: auto; color: #fff; }
.hero-landing h1 span { color: #fff; text-decoration: underline; text-decoration-color: var(--blue); text-decoration-thickness: 4px; text-underline-offset: 4px; }
.hero-landing .hl-lead { color: rgba(255, 255, 255, 0.92); font-size: 1.1rem; max-width: 620px; margin: 0 auto 28px; }
.hero-landing .btn-wa { background: #25d366; color: #fff; }
.hero-landing .btn-wa:hover { background: #1ebe5d; }
.hero-landing .btn-outline { background: transparent; color: #fff; border-color: #fff; }
.hero-landing .btn-outline:hover { background: rgba(255, 255, 255, 0.1); }
.hero-landing .trust-strip { color: rgba(255, 255, 255, 0.9); }
.hero-landing .trust-strip i { color: #fff; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; font-weight: 700; padding: 14px 28px; border-radius: 50px; text-decoration: none; font-size: 1rem; transition: background .2s; }
.btn-wa:hover { background: #1ebe5d; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--blue); border: 2px solid var(--blue); font-weight: 700; padding: 12px 26px; border-radius: 50px; text-decoration: none; font-size: 1rem; transition: background .2s; }
.btn-outline:hover { background: var(--blue-light); }
.trust-strip { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 28px; color: var(--gray-700); font-size: .9rem; }
.trust-strip > div { display: inline-flex; align-items: center; gap: 6px; }
.trust-strip i { color: var(--blue); }

.service-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.service-tile {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 26px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.service-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.service-tile .ico { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; font-size: 1.2rem; }
.service-tile h3 { font-size: 1.15rem; font-weight: 800; }
.service-tile .desc { color: var(--gray-700); font-size: .9rem; flex: 1; }
.service-tile .from { font-weight: 700; color: var(--blue); font-size: .92rem; }
.service-tile .arrow { color: var(--blue); font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.review-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 22px; }
.review-card .stars { color: #f59e0b; margin-bottom: 8px; }
.review-card p { color: var(--gray-700); font-size: .92rem; margin-bottom: 12px; }
.review-card .who { font-weight: 700; font-size: .88rem; color: var(--gray-900); }
.review-card .who small { font-weight: 400; color: var(--gray-500); margin-left: 6px; }

/* ── PAGE HERO (single-column for non-service pages) ── */
.page-hero {
  max-width: 900px; margin: 0 auto; padding: 36px 5% 12px; text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
.page-hero h1 span { color: var(--blue); }
.page-hero .lead { color: var(--gray-700); font-size: 1.05rem; max-width: 680px; margin: 0 auto; }

/* ── INFO GRID (generic cards used on como-funciona, faqs, etc.) ── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.info-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.info-card .info-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-light); color: var(--blue); font-size: 1.2rem;
}
.info-card h3 { font-size: 1.05rem; font-weight: 800; }
.info-card p { color: var(--gray-700); font-size: .9rem; }

/* ── TIMING GRID (como-funciona) ── */
.timing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; max-width: 900px; }
.timing-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 12px;
  padding: 16px 18px; display: flex; justify-content: space-between; align-items: center;
}
.timing-card strong { font-weight: 700; color: var(--gray-900); font-size: .92rem; }
.timing-card span { color: var(--blue); font-weight: 800; font-size: .95rem; white-space: nowrap; }
.timing-card.alt { background: var(--orange-bg); border-color: #fed7aa; }
.timing-card.alt span { color: var(--orange); }

/* ── BLOG GRID (índice de artigos) ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.blog-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.blog-card .thumb { aspect-ratio: 16/10; background: var(--gray-100); overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.blog-card:hover .thumb img { transform: scale(1.04); }
.blog-card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card .tag { font-size: .72rem; font-weight: 700; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; }
.blog-card h3 { font-size: 1.05rem; font-weight: 800; line-height: 1.3; color: var(--gray-900); }
.blog-card p { font-size: .88rem; color: var(--gray-500); flex: 1; }
.blog-card .read-more { font-size: .85rem; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }

/* ── WHY US / FEATURES ── */
.whyus { background: linear-gradient(135deg, #1a56db 0%, #1341b0 100%); color: #fff; }
.whyus .block-label { color: rgba(255, 255, 255, .8); }
.whyus .block-title { color: #fff; }
.whyus .block-sub { color: rgba(255, 255, 255, .85); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 36px; }
.feature-card { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15); border-radius: 16px; padding: 26px 22px; text-align: center; transition: all .2s; }
.feature-card:hover { background: rgba(255, 255, 255, .12); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0, 0, 0, .2); }
.feature-icon { font-size: 2.2rem; color: #fff; margin-bottom: 14px; display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: rgba(255, 255, 255, .1); border-radius: 14px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feature-card p { font-size: .92rem; color: rgba(255, 255, 255, .8); line-height: 1.5; }

/* ── LEGAL / STATIC PAGES ── */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 12px 5% 60px; }
.legal-wrap h2 { font-size: 1.3rem; font-weight: 800; margin: 28px 0 10px; }
.legal-wrap h3 { font-size: 1.05rem; font-weight: 700; margin: 18px 0 6px; }
.legal-wrap p, .legal-wrap li { color: var(--gray-700); font-size: .95rem; line-height: 1.7; }
.legal-wrap ul, .legal-wrap ol { padding-left: 20px; margin: 8px 0 12px; }
.legal-wrap a { color: var(--blue); }

/* ── STEPS ROW BIG (como-funciona) ── */
.steps-row.big .step { padding: 24px; }
.steps-row.big .step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.steps-row.big .step p { font-size: .92rem; color: var(--gray-700); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 4%; position: relative; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 0; box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    border-top: 1px solid var(--gray-200);
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-links > .has-sub > .sub-trigger { padding: 14px 5%; border-bottom: 1px solid var(--gray-100); width: 100%; }
  .has-sub { width: 100%; }
  .sub-menu { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: none; border-radius: 0; padding: 0 0 6px 12px; min-width: 0; display: none; }
  .has-sub.open .sub-menu { display: block; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .service-hero { grid-template-columns: 1fr; padding: 24px 5%; gap: 24px; }
  section.block { padding: 40px 5%; }
  .hero-landing { padding: 56px 5% 40px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-wa, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
  .price-table { font-size: .85rem; }
  .price-table td, .price-table thead th { padding: 12px 14px; }
  .steps-row { grid-template-columns: 1fr; }
}
