/* ===================================================================
   TRINDADE PEREIRA ADVOGADOS — Landing Page
   Carvalho Digital — 2025
=================================================================== */

:root {
  --navy:        #0d2b4e;
  --navy-deep:   #081d36;
  --navy-mid:    #16406e;
  --gold:        #c8a24a;
  --gold-light:  #e0c178;
  --gold-soft:   #d8b86a;
  --cream:       #f7f4ee;
  --light:       #ffffff;
  --off:         #f4f6f9;
  --ink:         #1c2530;
  --ink-soft:    #4a5562;
  --muted:       #6b7686;
  --line:        #e7e3d9;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 18px 50px -22px rgba(13,43,78,.28);
  --shadow-soft: 0 10px 30px -16px rgba(13,43,78,.22);
  --maxw:        1180px;
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'Montserrat', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--light);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); color: var(--navy); }
h2.light { color: #fff; }
h3 { font-size: 1.18rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm  { padding: 10px 20px; font-size: .85rem; }
.btn-lg  { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 12px 28px -12px rgba(200,162,74,.7);
}
.btn-gold:hover { box-shadow: 0 16px 34px -12px rgba(200,162,74,.85); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); }

.btn-outline {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(8,29,54,.96);
  box-shadow: 0 6px 24px -12px rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand-logo { height: 64px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); }

.nav-desktop { display: flex; gap: 28px; margin-left: auto; margin-right: 28px; }
.nav-desktop a {
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold); transition: width .25s ease;
}
.nav-desktop a:hover { color: #fff; }
.nav-desktop a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: .3s; border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--navy-deep);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.nav-mobile.open { max-height: 420px; padding: 16px 24px 24px; }
.nav-mobile a { color: rgba(255,255,255,.9); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 500; }
.nav-mobile .btn { margin-top: 14px; border-bottom: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(120% 80% at 80% 20%, rgba(22,64,110,.55), transparent 60%),
    linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  overflow: hidden;
  padding: 96px 0 28px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='800'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1.5'%3E%3Cpath d='M-100 700 Q400 350 1300 120'/%3E%3Cpath d='M-100 760 Q450 420 1300 200'/%3E%3Cpath d='M-100 640 Q380 300 1300 60'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
  opacity: .8;
}
.hero::after {
  content: '✈';
  position: absolute;
  top: 16%; right: 8%;
  font-size: clamp(120px, 22vw, 360px);
  color: rgba(200,162,74,.06);
  transform: rotate(-18deg);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-content { max-width: 720px; }

/* Hero photo shape */
.hero-media { position: relative; }
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,162,74,.4);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.hero-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,43,78,.1) 0%, transparent 35%, rgba(8,29,54,.45) 100%);
  pointer-events: none;
}
.hero-badge {
  position: absolute; bottom: -20px; left: -14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex; flex-direction: column; align-items: center; line-height: 1.1;
  box-shadow: var(--shadow-soft);
}
.hero-badge strong { font-size: 1.8rem; font-weight: 800; }
.hero-badge span { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; max-width: 100px; text-align: center; }

.supertitle {
  display: inline-flex; align-items: center; gap: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,162,74,.45);
  padding: 9px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.eyebrow-ico { width: 15px; height: 15px; flex: 0 0 auto; }

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero-title .gold { color: var(--gold-light); display: block; margin-top: .2em; text-wrap: balance; }

.hero-sub {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin-bottom: 22px;
  font-weight: 300;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }

.hero-credentials {
  display: flex; flex-wrap: wrap; gap: 12px 30px;
  list-style: none;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-credentials li { font-size: .9rem; color: rgba(255,255,255,.72); letter-spacing: .02em; }
.hero-credentials strong { color: var(--gold-light); font-weight: 700; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-light { background: var(--light); }
.section-cream { background: var(--cream); }
.section-navy {
  background:
    radial-gradient(100% 100% at 90% 0%, rgba(22,64,110,.5), transparent 70%),
    linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: #fff;
}

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .73rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(200,162,74,.1);
  border: 1px solid rgba(200,162,74,.32);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.eyebrow.gold-eyebrow {
  color: var(--gold-light);
  background: rgba(200,162,74,.14);
  border-color: rgba(224,193,120,.4);
}
.section-lead { color: var(--ink-soft); font-size: 1.05rem; margin-top: 16px; font-weight: 300; }
.section-lead.light-muted { color: rgba(255,255,255,.78); }

/* ---------- D2 Cases ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.case-card {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.case-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  color: var(--gold);
  border-radius: 14px;
  margin-bottom: 20px;
  transition: background .35s ease, color .35s ease, transform .45s cubic-bezier(.34,1.56,.64,1);
}
.case-icon svg { width: 28px; height: 28px; display: block; }
.case-card:hover .case-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  transform: translateY(-3px) rotate(-6deg) scale(1.06);
}
.case-card h3 { color: var(--navy); margin-bottom: 12px; transition: color .3s ease; }
.case-card:hover h3 { color: var(--gold); }
.case-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 20px; font-weight: 300; }
.case-link { display: inline-flex; align-items: center; gap: 4px; color: var(--gold); font-weight: 600; font-size: .92rem; transition: gap .25s ease, color .25s ease; }
.case-card:hover .case-link { gap: 10px; }
.case-link:hover { color: var(--navy); }

/* ---------- D3 Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 34px 30px;
  backdrop-filter: blur(4px);
}
.stars { color: var(--gold-light); letter-spacing: 3px; margin-bottom: 16px; }
.testimonial blockquote {
  font-family: var(--ff-serif);
  font-size: 1.18rem;
  line-height: 1.5;
  color: rgba(255,255,255,.95);
  margin-bottom: 24px;
}
.testimonial figcaption { display: flex; flex-direction: column; gap: 2px; }
.t-name { font-weight: 600; color: #fff; }
.t-meta { font-size: .85rem; color: var(--gold-light); }
.design-note {
  text-align: center; margin-top: 36px;
  font-size: .82rem; color: rgba(255,255,255,.45);
  font-style: italic;
}

/* ---------- D4 About ---------- */
.about { max-width: 1000px; margin: 0 auto; }
.about-head { text-align: center; margin-bottom: 38px; }
.about-head h2 { margin-top: 4px; }
.about-photo-wide {
  position: relative;
  margin-bottom: 48px;
}
.about-photo-placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,162,74,.25);
  overflow: hidden;
}
.about-photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,162,74,.25);
}
.about-logo { width: 220px; max-width: 42%; }
.about-photo-note { color: rgba(255,255,255,.4); font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; }
.about-badge {
  position: absolute; bottom: -22px; right: 26px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex; flex-direction: column; align-items: center; line-height: 1.1;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.about-badge strong { font-size: 1.9rem; font-weight: 800; }
.about-badge span { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; max-width: 120px; text-align: center; }
.about-body { max-width: 770px; margin: 0 auto; text-align: center; }
.about-body p { color: var(--ink-soft); margin-bottom: 16px; font-weight: 300; }
.about-body .oab { color: var(--navy); font-weight: 600; letter-spacing: .03em; margin: 22px 0; font-size: .92rem; }

/* ---------- D5 Rights + checklist ---------- */
.rights-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.rights-list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.rights-list li { display: flex; gap: 16px; align-items: flex-start; }
.rights-list .check {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
}
.rights-list div { color: var(--ink-soft); font-weight: 300; }
.rights-list strong { color: var(--navy); font-weight: 600; }

.checklist-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.checklist-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.checklist-sub { color: var(--gold-light); font-size: .92rem; margin-bottom: 26px; }
.checklist-form { display: flex; flex-direction: column; gap: 4px; }
.check-item {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  font-size: .96rem;
  font-weight: 300;
}
.check-item:hover { background: rgba(255,255,255,.05); border-color: rgba(200,162,74,.45); }
.check-item input { width: 20px; height: 20px; accent-color: var(--gold); flex: 0 0 auto; cursor: pointer; }
.checklist-feedback {
  font-size: .9rem; color: var(--gold-light);
  min-height: 0; max-height: 0; overflow: hidden;
  transition: max-height .3s ease, margin .3s ease;
}
.checklist-feedback.show { max-height: 120px; margin: 6px 0 14px; }
.checklist-form .btn { margin-top: 12px; }

/* ---------- D6 FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 26px;
  transition: box-shadow .25s, border-color .25s;
}
.faq-item[open] { box-shadow: var(--shadow-soft); border-color: var(--gold-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  font-size: 1.04rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 400; color: var(--gold);
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding: 0 0 24px; font-weight: 300; }

.faq-footer { text-align: center; margin-top: 48px; }
.faq-footer p { color: var(--ink-soft); margin-bottom: 18px; }

/* ---------- D7 Final CTA ---------- */
.final-cta {
  position: relative;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(110% 120% at 50% 0%, rgba(22,64,110,.6), transparent 60%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 110px 0;
  overflow: hidden;
}
.final-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600'%3E%3Cg fill='none' stroke='%23c8a24a' stroke-opacity='0.08' stroke-width='1.5'%3E%3Cpath d='M-50 500 Q500 250 1250 80'/%3E%3Cpath d='M-50 560 Q550 320 1250 160'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}
.final-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.final-cta h2 { color: #fff; font-family: var(--ff-serif); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; margin-bottom: 20px; }
.final-cta p { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 34px; font-weight: 300; }
.final-note { font-size: .95rem !important; margin: 30px 0 0 !important; }
.final-note strong { color: var(--gold-light); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.75); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { height: 60px; margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; font-weight: 300; max-width: 320px; }
.footer-col h4 { color: #fff; margin-bottom: 18px; font-size: .95rem; letter-spacing: .03em; }
.footer-col a { display: block; color: rgba(255,255,255,.7); font-size: .92rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-oab { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.footer-bottom .container { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-disclaimer { max-width: 720px; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  display: flex; align-items: center;
  padding: 9px;
  max-width: 60px;
  overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.7);
  transition: max-width .45s cubic-bezier(.2,.8,.2,1), padding .45s ease, transform .25s ease, box-shadow .25s ease;
  animation: pulse 2.4s infinite;
}
.wa-icon { width: 42px; height: 42px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.wa-label {
  display: flex; flex-direction: column; line-height: 1.18;
  white-space: nowrap;
  opacity: 0; max-width: 0; margin-left: 0;
  overflow: hidden;
  transition: opacity .3s ease, max-width .45s ease, margin .45s ease;
}
.wa-label strong { font-size: .92rem; font-weight: 700; }
.wa-label small { font-size: .72rem; opacity: .92; font-weight: 400; }
.whatsapp-float.expanded {
  max-width: 340px;
  padding-right: 24px;
  animation: none;
}
.whatsapp-float.expanded .wa-label { opacity: 1; max-width: 250px; margin-left: 10px; }
.whatsapp-float:hover { transform: scale(1.04); box-shadow: 0 14px 36px -8px rgba(37,211,102,.85); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Telas baixas: encolhe levemente o hero para caber em 100vh */
@media (min-width: 981px) and (max-height: 840px) {
  .hero { padding-top: 88px; padding-bottom: 24px; }
  .hero-title { font-size: clamp(2rem, 4.4vw, 3.3rem); }
  .hero-sub { margin-bottom: 18px; }
  .hero-ctas { margin-bottom: 20px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-desktop, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { max-width: none; }
  .hero-media { max-width: 380px; margin: 4px auto 0; width: 100%; }
  /* Mobile: centralizar a box "+3.000" do hero */
  .hero-badge { left: 50%; right: auto; transform: translateX(-50%); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 60px; }
  .cases-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .brand-logo { height: 46px; }
  .container { padding: 0 18px; }

  /* Mobile: centralizar todos os textos */
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { align-items: center; }
  .hero-credentials { justify-content: center; }

  .case-card { text-align: center; }
  .case-icon { margin-left: auto; margin-right: auto; }
  .case-link { justify-content: center; }

  .rights-content { text-align: center; }
  .rights-list li { flex-direction: column; align-items: center; text-align: center; gap: 10px; }

  .checklist-card { text-align: center; }
  .check-item { text-align: left; }

  .faq-item summary { padding-right: 30px; }

  .footer-inner { text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-logo { margin-left: auto; margin-right: auto; }
}
