/* =========================================================
   PH PROMOTORA — Design System (2026)
   Compartilhado entre index.html (home) e lgpd.html
   ========================================================= */
:root {
  --red: #e30613;
  --red-2: #ff1f2e;
  --red-dark: #c0040f;
  --red-soft: #fdecec;
  --ink: #16181d;      /* seções escuras / footer */
  --ink-2: #1e2127;    /* cards escuros */
  --ink-3: #262a31;
  --text: #1a1c20;
  --muted: #6b7280;
  --muted-2: #9aa1ab;
  --line: #ececf0;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --shadow-sm: 0 2px 10px rgba(20, 22, 28, 0.05);
  --shadow: 0 14px 40px -18px rgba(20, 22, 28, 0.22);
  --shadow-red: 0 14px 30px -12px rgba(227, 6, 19, 0.5);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.35s var(--ease);
  --nav-h: 84px;
  --display: "Poppins", system-ui, -apple-system, sans-serif;
  --body: "Poppins", system-ui, -apple-system, sans-serif;
}

* , *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--display); line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.red { color: var(--red); }
.section { padding: 84px 0; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.sec-title {
  text-align: center; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px;
}
.sec-underline { width: 60px; height: 4px; background: var(--red); border-radius: 3px; margin: 0 auto 44px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-sm); font-family: var(--body);
  font-weight: 600; font-size: 0.92rem; cursor: pointer; border: 2px solid transparent;
  transition: all var(--t); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-red { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--line); transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: 0 6px 24px -12px rgba(0,0,0,.18); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand .logo-text { line-height: 1; }
.brand .logo-text b { font-family: var(--display); font-weight: 800; font-size: 1.18rem; letter-spacing: -0.01em; }
.brand .logo-text b span { color: var(--red); }
.brand .logo-text small { display: block; font-size: 0.58rem; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; margin-top: 3px; text-transform: uppercase; }
.brand .logo-text small span { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links > a { position: relative; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: #33363d; padding: 6px 0; transition: color var(--t); }
.nav-links > a:hover, .nav-links > a.active { color: var(--red); }
.nav-links > a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--red); border-radius: 3px; }
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-item .caret { width: 12px; height: 12px; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  padding: 8px; min-width: 260px; opacity: 0; visibility: hidden; transition: all var(--t); z-index: 50;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; color: #33363d; text-transform: none; letter-spacing: 0; }
.dropdown a:hover { background: var(--red-soft); color: var(--red); }
.nav-cta { margin-left: 4px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--t); }

/* mobile menu */
.mnav { display: none; }

/* ===== HERO ===== */
.hero { background: var(--bg-soft); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.9fr 1.2fr; gap: 28px; align-items: center; padding: 60px 0 70px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.05rem); font-weight: 800; margin-bottom: 20px; }
.hero h1 .red { display: block; }
.hero p.lead { color: var(--muted); font-size: 1.02rem; max-width: 420px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: nowrap; gap: 12px; }
.hero-actions .btn { padding: 14px 18px; font-size: 0.88rem; }
@media (max-width: 720px) { .hero-actions { flex-wrap: wrap; } }

.hero-stats { display: flex; flex-direction: column; gap: 26px; }
.hstat { display: flex; align-items: center; gap: 16px; }
.hstat .ic { width: 52px; height: 52px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--red); flex-shrink: 0; }
.hstat .ic svg { width: 26px; height: 26px; }
.hstat b { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 800; line-height: 1; }
.hstat span { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.hero-visual { position: relative; min-height: 440px; display: flex; align-items: flex-end; justify-content: center; align-self: stretch; }
.hero-visual .shape-red { position: absolute; top: 0; left: 8%; width: 46%; height: 60%; background: var(--red); clip-path: polygon(0 0, 100% 0, 78% 100%, 0 78%); z-index: 0; }
.hero-visual .shape-dark { position: absolute; bottom: 0; right: 0; width: 52%; height: 78%; background: var(--ink); clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%); z-index: 0; opacity: .9; }
.hero-visual .photo { position: relative; z-index: 2; max-height: 520px; width: auto; max-width: 96%; object-fit: contain; filter: drop-shadow(0 18px 32px rgba(20,22,28,.28)); }

/* ===== PRODUTOS ===== */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 18px;
  text-align: center; transition: all var(--t); cursor: pointer;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(227,6,19,.18); }
.prod-card .pic { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 16px; background: var(--red-soft); display: grid; place-items: center; color: var(--red); transition: all var(--t); }
.prod-card:hover .pic { background: var(--red); color: #fff; }
.prod-card .pic svg { width: 28px; height: 28px; }
.prod-card h3 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); line-height: 1.35; }

/* ===== POR QUE ESCOLHER (dark) ===== */
.why { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.why::before { content: ""; position: absolute; top: -140px; right: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(227,6,19,.18), transparent 70%); }
.why-grid { display: grid; grid-template-columns: 0.9fr 2.4fr; gap: 40px; align-items: center; position: relative; }
.why h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800; }
.why-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-item .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(227,6,19,.15); display: grid; place-items: center; color: var(--red-2); margin-bottom: 16px; }
.why-item .ic svg { width: 24px; height: 24px; }
.why-item h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 10px; }
.why-item p { font-size: 0.82rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.why-item + .why-item { position: relative; }
.why-items > .why-item:not(:first-child)::before { content: ""; position: absolute; left: -13px; top: 4px; bottom: 4px; width: 1px; background: rgba(255,255,255,.1); }

/* ===== PARCEIROS ===== */
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.partner {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; height: 76px; width: 148px;
  display: flex; align-items: center; justify-content: center; padding: 14px 18px; transition: all var(--t);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.partner img { max-width: 112px; max-height: 46px; width: auto; height: auto; object-fit: contain; }
.partner:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* ===== SOBRE + DEPOIMENTOS ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 54px; align-items: start; }
.about h2, .depo h2 { font-size: 1.15rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px; }
.about .u, .depo .u { width: 50px; height: 4px; background: var(--red); border-radius: 3px; margin-bottom: 22px; }
.about p.lead { color: var(--muted); margin-bottom: 26px; max-width: 400px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.astat { background: var(--bg-soft); border-radius: 12px; padding: 20px 14px; text-align: center; }
.astat b { display: block; font-family: var(--display); font-size: 1.4rem; font-weight: 800; color: var(--red); line-height: 1; }
.astat span { font-size: 0.66rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.depo-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.depo-body { display: flex; gap: 22px; align-items: flex-start; }
.depo-avatar { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; background: linear-gradient(160deg,#d9dbe0,#eceef2); flex-shrink: 0; }
.depo-quote { position: relative; }
.depo-quote .qm { font-family: Georgia, serif; font-size: 3rem; color: var(--red); line-height: 0.6; }
.depo-quote p { color: #33363d; margin: 6px 0 16px; font-size: 0.98rem; line-height: 1.7; }
.depo-quote .who b { display: block; font-weight: 700; }
.depo-quote .who span { font-size: 0.82rem; color: var(--muted); }
.depo-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.depo-dots i { width: 9px; height: 9px; border-radius: 50%; background: #d5d8dd; transition: all var(--t); cursor: pointer; }
.depo-dots i.on { background: var(--red); width: 26px; border-radius: 6px; }

/* ===== CTA / SIMULAÇÃO / CONTATO ===== */
.cta-band { display: grid; grid-template-columns: 1fr 1.15fr 1fr; }
.cta-left { background: var(--red); color: #fff; padding: 60px 44px; display: flex; flex-direction: column; justify-content: center; }
.cta-left h2 { font-size: 1.7rem; font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.cta-left p { color: rgba(255,255,255,.9); margin-bottom: 26px; }
.cta-mid { background: #fff; padding: 46px 40px; }
.cta-mid h3 { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 22px; }
.field { position: relative; margin-bottom: 14px; }
.field .fi { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--muted-2); }
.field input, .field select {
  width: 100%; padding: 14px 14px 14px 44px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--body); font-size: 0.9rem; background: var(--bg-soft); color: var(--text); transition: all var(--t);
}
.field select { appearance: none; cursor: pointer; color: var(--muted); }
.field input:focus, .field select:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(227,6,19,.12); }
.cta-mid .btn { width: 100%; margin-top: 6px; }
.cta-note { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--muted); margin-top: 14px; }
.cta-note svg { width: 14px; height: 14px; flex-shrink: 0; }
.cta-right { background: var(--ink); color: #fff; padding: 60px 44px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.cta-right h3 { font-size: 1.55rem; font-weight: 800; margin-bottom: 26px; }
.cinfo { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; position: relative; z-index: 1; }
.cinfo .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--red); display: grid; place-items: center; flex-shrink: 0; }
.cinfo .ic svg { width: 19px; height: 19px; color: #fff; }
.cinfo div { line-height: 1.5; }
.cinfo span { font-size: 0.72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.04em; }
.cinfo b { display: block; font-weight: 600; font-size: 0.98rem; }
.cinfo p { font-size: 0.86rem; color: rgba(255,255,255,.75); }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: rgba(255,255,255,.62); padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr 1.2fr; gap: 34px; padding-bottom: 44px; }
.footer .brand .logo-text b { color: #fff; }
.footer .brand .logo-text small { color: rgba(255,255,255,.5); }
.footer-about { font-size: 0.85rem; line-height: 1.7; margin: 18px 0 20px; max-width: 300px; }
.fsoc { display: flex; gap: 10px; }
.fsoc a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: all var(--t); }
.fsoc a:hover { background: var(--red); transform: translateY(-3px); }
.fsoc a svg { width: 17px; height: 17px; }
.footer h4 { color: #fff; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-links a { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; padding: 6px 0; color: rgba(255,255,255,.62); transition: all var(--t); }
.footer-links a:hover { color: #fff; }
.footer-links a.active { color: var(--red); }
.footer-links svg { width: 12px; height: 12px; color: var(--red); flex-shrink: 0; }
.fcontact { display: flex; flex-direction: column; gap: 16px; }
.fcontact .row { display: flex; align-items: flex-start; gap: 12px; font-size: 0.85rem; }
.fcontact .row svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.fpartners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fpartner { background: #fff; border-radius: 8px; height: 42px; display: flex; align-items: center; justify-content: center; padding: 6px 10px; overflow: hidden; }
.fpartner img { max-width: 74px; max-height: 28px; width: auto; height: auto; object-fit: contain; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.78rem; }
.footer-bottom .legal { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-bottom .legal a:hover { color: #fff; }
.footer-bottom .legal a.active { color: var(--red); }

/* ===== reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.show { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { grid-column: 1 / -1; order: 3; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 26px; }
  .why-items { grid-template-columns: repeat(2, 1fr); }
  .why-items > .why-item::before { display: none !important; }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mnav { display: block; position: fixed; inset: var(--nav-h) 0 auto 0; background: #fff; border-bottom: 1px solid var(--line); padding: 14px 24px 22px; transform: translateY(-120%); transition: transform var(--t); z-index: 90; box-shadow: var(--shadow); }
  .mnav.open { transform: translateY(0); }
  .mnav a { display: block; padding: 12px 4px; font-weight: 600; font-size: 0.9rem; border-bottom: 1px solid var(--line); text-transform: uppercase; letter-spacing: 0.03em; }
  .mnav .btn { width: 100%; margin-top: 14px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .hstat { width: calc(50% - 9px); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .why-items { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom .legal { justify-content: center; }
  .section { padding: 60px 0; }
}

/* =========================================================
   LGPD PAGE
   ========================================================= */
.breadcrumb { font-size: 0.8rem; color: var(--muted); padding: 22px 0 0; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { margin: 0 8px; }

.lgpd-hero { background: var(--bg-soft); position: relative; overflow: hidden; }
.lgpd-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; padding: 20px 0 60px; }
.lgpd-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.lgpd-hero .sub { color: var(--red); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; margin-bottom: 20px; }
.lgpd-hero p { color: var(--muted); max-width: 440px; }
.lgpd-visual { position: relative; min-height: 330px; }
.lgpd-visual .shape-red { position: absolute; inset: 0 0 0 30%; background: var(--red); clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%); opacity: .92; }
.lgpd-visual .photo { position: absolute; inset: 8% 0 8% 18%; border-radius: 12px; object-fit: cover; background: linear-gradient(150deg,#20242b,#3a3f49); box-shadow: var(--shadow); z-index: 1; }

/* Como tratamos */
.treat-grid { display: grid; grid-template-columns: 0.85fr 2.6fr; gap: 36px; align-items: start; }
.treat-head h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; margin-bottom: 16px; }
.treat-head .u { width: 46px; height: 4px; background: var(--red); border-radius: 3px; margin-bottom: 16px; }
.treat-head p { color: var(--muted); font-size: 0.9rem; }
.treat-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 16px; text-align: center; transition: all var(--t); }
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(227,6,19,.18); }
.tcard .ic { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px; background: var(--red-soft); display: grid; place-items: center; color: var(--red); transition: all var(--t); }
.tcard:hover .ic { background: var(--red); color: #fff; }
.tcard .ic svg { width: 28px; height: 28px; }
.tcard h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.tcard p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }

/* Direitos */
.rights-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 20px; }
.right-item { text-align: center; }
.right-item .ic { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 16px; background: var(--red-soft); display: grid; place-items: center; color: var(--red); transition: all var(--t); }
.right-item:hover .ic { background: var(--red); color: #fff; transform: translateY(-4px); }
.right-item .ic svg { width: 26px; height: 26px; }
.right-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.right-item p { font-size: 0.76rem; color: var(--muted); line-height: 1.6; }

/* Passos */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.step .num { position: absolute; top: -14px; left: 24px; width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; box-shadow: var(--shadow-red); }
.step .sic { width: 40px; height: 40px; color: var(--red); margin: 8px 0 12px; }
.step .sic svg { width: 40px; height: 40px; }
.step h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }
.step .arrow { position: absolute; top: 50%; right: -13px; transform: translateY(-50%); color: var(--muted-2); z-index: 2; background: #fff; }
.step .arrow svg { width: 22px; height: 22px; }
.step:last-child .arrow { display: none; }

/* DPO box */
.dpo-box { background: var(--red-soft); border-radius: var(--radius); padding: 34px 36px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 26px; align-items: center; }
.dpo-main { display: flex; align-items: center; gap: 20px; }
.dpo-main .ic { width: 62px; height: 62px; border-radius: 16px; background: #fff; display: grid; place-items: center; color: var(--red); flex-shrink: 0; box-shadow: var(--shadow-sm); }
.dpo-main .ic svg { width: 30px; height: 30px; }
.dpo-main h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.dpo-main p { font-size: 0.82rem; color: #5c4a4a; line-height: 1.6; }
.dpo-item { display: flex; align-items: flex-start; gap: 12px; }
.dpo-item .di { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.dpo-item span { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); font-weight: 600; }
.dpo-item b { font-size: 0.9rem; font-weight: 600; }

/* Update box */
.update-box { display: flex; align-items: center; gap: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; box-shadow: var(--shadow-sm); margin-top: 22px; }
.update-box .ic { width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.update-box .ic svg { width: 24px; height: 24px; }
.update-box .txt { flex: 1; }
.update-box h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.update-box p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.update-box .btn { flex-shrink: 0; }

@media (max-width: 1080px) {
  .lgpd-hero-grid { grid-template-columns: 1fr; }
  .treat-grid { grid-template-columns: 1fr; }
  .treat-cards { grid-template-columns: repeat(3, 1fr); }
  .rights-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step .arrow { display: none; }
  .dpo-box { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .treat-cards { grid-template-columns: 1fr 1fr; }
  .rights-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .update-box { flex-direction: column; text-align: center; }
}

