/* =========================================================
   MC PROMOTORA — Design System (2026)
   Tema azul | index.html + lgpd.html
   (nomes de variáveis herdados do template base: --navy = cor primária)
   ========================================================= */
:root {
  --navy: #1246a8;        /* primário (vermelho PH Negócios) */
  --navy-2: #0d3b8f;      /* hover */
  --navy-d: #16181d;      /* footer escuro */
  --accent: #1246a8;      /* destaque no texto */
  --blue: #1246a8;
  --teal: #1246a8;
  --gray-ic: #6b7684;
  --navy-soft: #e8effb;   /* fundos suaves de ícone */
  --ink: #1c2026;
  --text: #1c2026;
  --muted: #66707c;
  --muted-2: #97a1ac;
  --line: #ececf0;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --shadow-sm: 0 2px 10px rgba(22, 24, 29, 0.05);
  --shadow: 0 16px 40px -18px rgba(22, 24, 29, 0.25);
  --shadow-navy: 0 14px 30px -12px rgba(18, 70, 168, 0.45);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.35s var(--ease);
  --nav-h: 84px;
  --display: "Poppins", system-ui, sans-serif;
  --body: "Poppins", system-ui, 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.16; 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; }
.accent { color: var(--accent); }
.section { padding: 84px 0; }
.sec-title { text-align: center; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 6px; }
.sec-sub { text-align: center; color: var(--muted); font-size: 0.95rem; margin-bottom: 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-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-navy); }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-pill { border-radius: 50px; }

/* ===== 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, 0.18); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }
.brand .logo-text { line-height: 1; }
.brand .logo-text b { font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.02em; color: var(--navy); }
.brand .logo-text small { display: block; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--muted); font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links > a { position: relative; font-size: 0.86rem; font-weight: 600; color: #33404d; padding: 6px 0; transition: color var(--t); cursor: pointer; }
.nav-links > a:hover, .nav-links > a.active { color: var(--navy); }
.nav-links > a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--navy); border-radius: 3px; }
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.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: #33404d; }
.dropdown a:hover { background: var(--navy-soft); color: var(--navy); }
.nav .btn { padding: 12px 22px; }
.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; }
.mnav { display: none; }

/* ===== HERO ===== */
.hero { background: var(--bg-soft); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 34px; align-items: center; padding: 56px 0 30px; }
.hero h1 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); font-weight: 800; margin-bottom: 18px; }
.hero p.lead { color: var(--muted); font-size: 0.98rem; max-width: 460px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual { position: relative; min-height: 380px; }
.hero-visual .blob {
  position: absolute; inset: 0 -14% 0 6%;
  background: var(--navy);
  border-radius: 46% 54% 52% 48% / 60% 46% 54% 40%;
  z-index: 0;
}
.hero-visual .photo {
  position: absolute; inset: 4% 0 4% 12%; z-index: 1;
  object-fit: cover; width: 88%; height: 92%;
  border-radius: 44% 56% 50% 50% / 56% 44% 56% 44%;
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 30px; padding: 22px 0 42px; }
.htrust { display: flex; align-items: center; gap: 9px; font-size: 0.76rem; font-weight: 600; color: #3a4653; }
.htrust svg { width: 20px; height: 20px; color: var(--navy); flex-shrink: 0; }

/* ===== QUEM ATENDEMOS ===== */
.perfil-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.perfil-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 14px 22px; text-align: center; transition: all var(--t); position: relative;
}
.perfil-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(22, 50, 79, 0.2); }
.perfil-card .foto { border-radius: 12px; aspect-ratio: 16/11; object-fit: cover; width: 100%; }
.perfil-card .pic {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; position: absolute; top: 24px; left: 24px; box-shadow: var(--shadow-sm);
}
.perfil-card .pic svg { width: 26px; height: 26px; }
.perfil-card h3 { font-size: 1.02rem; font-weight: 700; margin: 18px 0 4px; }
.perfil-card h3 small { display: block; font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.perfil-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; min-height: 62px; padding: 0 8px; }
.perfil-card .btn { margin-top: 14px; width: calc(100% - 16px); padding: 11px 14px; font-size: 0.82rem; }

/* ===== SOLUÇÕES ===== */
.sol-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.sol-card {
  background: var(--bg-soft); border: 1px solid transparent; border-radius: var(--radius);
  padding: 28px 18px; text-align: center; transition: all var(--t);
}
.sol-card:hover { background: #fff; border-color: var(--line); transform: translateY(-6px); box-shadow: var(--shadow); }
.sol-card .ic { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; color: #fff; }
.sol-card .ic svg { width: 26px; height: 26px; }
.sol-card h3 { font-size: 0.95rem; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.sol-card p { font-size: 0.79rem; color: var(--muted); line-height: 1.6; min-height: 58px; }
.sol-card .more { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 700; color: var(--navy); margin-top: 10px; }
.sol-card .more svg { width: 14px; height: 14px; transition: transform var(--t); }
.sol-card:hover .more svg { transform: translateX(4px); }

/* ===== COMO FUNCIONA ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.stepc { text-align: center; position: relative; padding: 0 6px; }
.stepc .top { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; position: relative; }
.stepc .num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.stepc .ic {
  width: 64px; height: 64px; border-radius: 50%; background: var(--bg-soft);
  display: grid; place-items: center; color: var(--navy);
}
.stepc .ic svg { width: 28px; height: 28px; }
.stepc:not(:last-child)::after {
  content: ""; position: absolute; top: 32px; left: calc(50% + 64px); width: calc(100% - 108px);
  border-top: 2px dotted #c3cdd7;
}
.stepc h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.stepc p { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ===== DIFERENCIAIS + NÚMEROS ===== */
.dif-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: stretch; }
.dif-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.dif-box h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 24px; }
.dif-items { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.dif-item { text-align: center; position: relative; }
.dif-item:not(:first-child)::before { content: ""; position: absolute; left: -9px; top: 8%; bottom: 8%; width: 1px; background: var(--line); }
.dif-item svg { width: 26px; height: 26px; color: var(--navy); margin: 0 auto 10px; display: block; }
.dif-item h4 { font-size: 0.8rem; font-weight: 700; margin-bottom: 6px; line-height: 1.35; }
.dif-item p { font-size: 0.72rem; color: var(--muted); line-height: 1.55; }
.num-box {
  background: linear-gradient(150deg, var(--navy), var(--navy-d)); color: #fff;
  border-radius: var(--radius); padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; align-content: center;
}
.num-item { display: flex; align-items: center; gap: 13px; padding: 12px 4px; position: relative; }
.num-item svg { width: 30px; height: 30px; color: rgba(255, 255, 255, 0.85); flex-shrink: 0; }
.num-item b { display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 800; line-height: 1.1; }
.num-item span { font-size: 0.72rem; color: rgba(255, 255, 255, 0.65); line-height: 1.3; display: block; }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; align-items: start; }
.faq-item { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: none; border: 0; padding: 15px 18px; font-family: var(--body); font-size: 0.88rem;
  font-weight: 600; color: var(--text); cursor: pointer; text-align: left;
}
.faq-q .plus { font-size: 1.2rem; font-weight: 500; color: var(--navy); transition: transform var(--t); flex-shrink: 0; }
.faq-item.active .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 18px 16px; font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(120deg, var(--navy-d), #14344f); color: #fff;
  border-radius: var(--radius); padding: 40px 44px; display: grid;
  grid-template-columns: 1.1fr auto 1fr; gap: 30px; align-items: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 800; margin-bottom: 8px; }
.cta-band p { font-size: 0.84rem; color: rgba(255, 255, 255, 0.72); max-width: 340px; }
.cta-minis { display: flex; flex-direction: column; gap: 10px; }
.cta-mini { display: flex; align-items: center; gap: 9px; font-size: 0.76rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.cta-mini svg { width: 17px; height: 17px; color: #fff; flex-shrink: 0; }
.cta-photo { width: 190px; height: 150px; object-fit: cover; border-radius: 12px; justify-self: end; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-d); color: rgba(255, 255, 255, 0.62); padding: 64px 0 0; margin-top: 84px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr 1fr; gap: 30px; padding-bottom: 42px; }
.footer .brand img { height: 44px; width: auto; background: #fff; padding: 6px 10px; border-radius: 10px; }
.footer .brand .logo-text b { color: #fff; }
.footer .brand .logo-text small { color: rgba(255, 255, 255, 0.5); }
.footer-about { font-size: 0.83rem; line-height: 1.7; margin: 16px 0 18px; max-width: 260px; }
.fsoc { display: flex; gap: 10px; }
.fsoc a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255, 255, 255, 0.08); display: grid; place-items: center; color: #fff; transition: all var(--t); }
.fsoc a:hover { background: var(--accent); transform: translateY(-3px); }
.fsoc a svg { width: 16px; height: 16px; }
.footer h4 { color: #fff; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 18px; }
.footer-links a { display: block; font-size: 0.84rem; padding: 5px 0; color: rgba(255, 255, 255, 0.62); transition: color var(--t); }
.footer-links a:hover, .footer-links a.active { color: #fff; }
.fcontact { display: flex; flex-direction: column; gap: 13px; }
.fcontact .row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; }
.fcontact .row svg { width: 16px; height: 16px; color: rgba(255, 255, 255, 0.8); flex-shrink: 0; margin-top: 2px; }
.flegal { font-size: 0.74rem; color: rgba(255, 255, 255, 0.42); line-height: 1.7; border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0 4px; }
.footer-bottom { padding: 16px 0 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.78rem; }

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

/* =========================================================
   LGPD PAGE
   ========================================================= */
.breadcrumb { font-size: 0.8rem; color: var(--muted); padding: 22px 0 0; }
.breadcrumb a:hover { color: var(--navy); }
.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.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.lgpd-hero .sub { color: var(--accent); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; margin-bottom: 20px; }
.lgpd-hero p { color: var(--muted); max-width: 440px; }
.lgpd-visual { position: relative; min-height: 320px; }
.lgpd-visual .shape { position: absolute; inset: 0 0 0 30%; background: var(--navy); clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%); opacity: 0.94; }
.lgpd-visual .photo { position: absolute; inset: 8% 0 8% 18%; border-radius: 12px; object-fit: cover; width: 82%; height: 84%; box-shadow: var(--shadow); z-index: 1; }

.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(--navy); 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(22, 50, 79, 0.2); }
.tcard .ic { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px; background: var(--navy-soft); display: grid; place-items: center; color: var(--navy); transition: all var(--t); }
.tcard:hover .ic { background: var(--navy); 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; }

.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(--navy-soft); display: grid; place-items: center; color: var(--navy); transition: all var(--t); }
.right-item:hover .ic { background: var(--navy); 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; }

.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(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; box-shadow: var(--shadow-navy); }
.step .sic { width: 40px; height: 40px; color: var(--navy); 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 { background: var(--navy-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(--navy); 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: #45566a; line-height: 1.6; }
.dpo-item { display: flex; align-items: flex-start; gap: 12px; }
.dpo-item .di { width: 20px; height: 20px; color: var(--navy); 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 { 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(--navy-d); 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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; }
  .perfil-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stepc::after { display: none !important; }
  .dif-grid { grid-template-columns: 1fr; }
  .dif-items { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-photo { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .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: 680px) {
  .nav-links, .nav > .nav-inner > .btn { display: none; }
  .nav-toggle { display: flex; }
  .mnav { display: block; position: fixed; inset: var(--nav-h) 0 auto 0; background: #fff; 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); }
  .perfil-grid, .sol-grid, .steps, .dif-items { grid-template-columns: 1fr; }
  .dif-item::before { display: none !important; }
  .num-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
  .treat-cards, .rights-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .update-box { flex-direction: column; text-align: center; }
}

/* =========================================================
   EXTRAS — CARTÃO BENEFÍCIO
   ========================================================= */
/* logo texto PH Negócios */
.brand .ph-mark { width: 46px; height: 46px; border-radius: 8px; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; flex-shrink: 0; }
.brand .logo-text b span { color: var(--text); font-weight: 700; }

/* pill de telefone na nav */
.nav-pill { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--line); border-radius: 50px; padding: 10px 18px; font-weight: 600; font-size: 0.86rem; color: var(--text); transition: all var(--t); }
.nav-pill:hover { border-color: var(--navy); color: var(--navy); }
.nav-pill svg { width: 16px; height: 16px; color: var(--navy); }

/* badge do hero */
.hero-badge { display: inline-block; border: 1.5px solid rgba(18, 70, 168, 0.4); color: var(--navy); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 50px; padding: 6px 16px; margin-bottom: 18px; background: #fff; }

/* visual do hero: foto + arco vermelho + chips */
.hero-visual .arc { position: absolute; inset: -6% -10% -6% 4%; background: radial-gradient(circle at 30% 50%, transparent 55%, var(--navy) 56%, #8f0d12 100%); border-radius: 0 0 0 60%; z-index: 0; opacity: 0.95; }
.hero-visual .photo-rect { position: absolute; inset: 0 8% 0 10%; z-index: 1; object-fit: cover; width: 82%; height: 100%; border-radius: 18px; }
.hero-chips { position: absolute; right: -2%; top: 8%; z-index: 2; display: flex; flex-direction: column; gap: 10px; }
.hchip { display: flex; align-items: center; gap: 10px; background: rgba(22, 24, 29, 0.92); color: #fff; border-radius: 10px; padding: 10px 14px; font-size: 0.72rem; font-weight: 600; line-height: 1.3; max-width: 210px; box-shadow: var(--shadow); }
.hchip svg { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; }

/* seção O QUE É (texto + vantagens) */
.oque-grid { display: grid; grid-template-columns: 0.9fr 2fr; gap: 44px; align-items: start; }
.oque-head h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 800; margin-bottom: 18px; }
.oque-head p { color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; line-height: 1.7; }
.oque-head p.fine { font-size: 0.78rem; color: var(--muted-2); }
.vant-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 18px; }
.vant-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.vant-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px 12px; text-align: center; transition: all var(--t); }
.vant-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(18, 70, 168, 0.2); }
.vant-card svg { width: 26px; height: 26px; color: var(--navy); margin: 0 auto 10px; display: block; }
.vant-card h4 { font-size: 0.8rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.vant-card p { font-size: 0.7rem; color: var(--muted); line-height: 1.55; }

/* PARA QUEM É — 2 cards com foto */
.quem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quem-card { display: grid; grid-template-columns: 1fr 1.15fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all var(--t); }
.quem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quem-card img { width: 100%; height: 100%; object-fit: cover; min-height: 210px; }
.quem-card .body { padding: 24px 22px; }
.quem-card .qic { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; margin-bottom: 12px; }
.quem-card .qic svg { width: 22px; height: 22px; }
.quem-card h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: 8px; }
.quem-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.quem-card li { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; padding: 3px 0; }
.quem-card li svg { width: 15px; height: 15px; color: var(--navy); flex-shrink: 0; }

/* números tema vermelho */
.num-box { background: linear-gradient(150deg, #a90d13, #4a0709); }

/* CTA com foto à esquerda */
.cta-band { grid-template-columns: auto 1.2fr 1fr; background: linear-gradient(120deg, #c01016, #8f0d12); }
.cta-band .cta-photo-l { width: 200px; height: 160px; object-fit: cover; border-radius: 12px; }
