/* ============================================================
   Alan Perin Advogados — style.css
   Paleta: Navy #0b1f3a | Gold #b8945f | Cream #f5f0e8 | White #fff
   ============================================================ */

/* ── VARIÁVEIS ──────────────────────────────────────────────── */
:root {
  /* Paleta Exata do Site VLV */
  --navy:    #225795;
  --navy-2:  #225795;
  --navy-3:  #225795;
  --gold:    #225795;
  --gold-2:  #225795;
  --gold-3:  #225795;
  --cream:   #ffffff;
  --bone:    #ffffff;
  --bone-2:  #ffffff;
  --paper:   #ffffff;
  --white:   #ffffff;
  --muted:   #6b7280;
  --navy-t:  rgba(34,87,149, .85);
  --line:    rgba(34,87,149, .12);
  --line-2:  rgba(34,87,149, .07);
  --gold-t:  rgba(34,87,149, .18);

  /* Fontes - Tudo sem serifa (Montserrat) para visual mais moderno */
  --serif:   'Montserrat', system-ui, sans-serif;
  --sans:    'Montserrat', system-ui, sans-serif;

  --radius:  8px;
  --shadow:  0 10px 30px -10px rgba(34,87,149, .15);
  --shadow-sm: 0 4px 10px -2px rgba(34,87,149, .10);
  --transition: .25s ease;

  --max-w:   1180px;
  --gap:     24px;
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ── UTILITIES ───────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.bg-bone    { background: var(--bone); }
.bg-cream   { background: var(--cream); }
.bg-navy    { background: var(--navy); }
.bg-white   { background: var(--white); }

/* ── TIPOGRAFIA ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.eyebrow-light { color: rgba(255,255,255,.7); }
.eyebrow-light::before { background: rgba(255,255,255,.4); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500; line-height: 1.1;
  color: var(--navy); margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.white { color: #fff; }
.section-title.white em { color: var(--gold-3); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-lead {
  font-size: 17px; line-height: 1.7; color: var(--muted);
  max-width: 68ch; margin-top: 14px;
}
.section-head.center .section-lead { margin: 14px auto 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 14.5px; font-weight: 600;
  border-radius: 50px; padding: 13px 28px;
  transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary    { background: var(--navy);  color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-3); border-color: var(--navy-3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-whatsapp   { background: #225795; color: #fff; border-color: #225795; }
.btn-whatsapp:hover { background: #225795; border-color: #225795; transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(34,87,149,.45); }

.btn-gold       { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); }

.btn-outline    { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-lg  { padding: 16px 36px; font-size: 15.5px; }
.btn-full{ width: 100%; justify-content: center; }
.btn i   { font-size: 1em; }

/* ── UTILITY BAR ─────────────────────────────────────────────── */
.utility-bar {
  background: var(--navy-2);
  padding: 9px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.75);
}
.utility-bar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.utility-bar .utility-left { display: flex; align-items: center; gap: 8px; }
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #225795; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.5} }
.utility-bar .utility-right { display: flex; align-items: center; gap: 12px; }
.utility-bar a { color: rgba(255,255,255,.82); transition: color var(--transition); }
.utility-bar a:hover { color: #fff; }
.utility-bar .sep { color: rgba(255,255,255,.3); }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(11,31,58,.10); }
.site-header .container {
  display: flex; align-items: center; gap: 32px;
  padding-top: 14px; padding-bottom: 14px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 8px; }
.brand-text b { display: block; font-size: 15px; font-weight: 700; color: var(--navy); }
.brand-text span { display: block; font-size: 11px; color: var(--muted); font-weight: 400; }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--navy);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active { background: var(--bone); color: var(--navy); }
.main-nav a.active { font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: 8px; background: var(--bone);
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE NAV ──────────────────────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto;
  width: min(340px, 90vw);
  background: var(--navy); color: #fff;
  z-index: 1100; padding: 80px 28px 28px;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  padding: 14px 18px; border-radius: 10px;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85);
  transition: all var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(255,255,255,.08); color: #fff; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  color: rgba(255,255,255,.6); font-size: 20px; padding: 8px;
}
.mobile-nav-footer {
  margin-top: auto; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-nav-footer p { font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.5; }

.overlay-drawer {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1050; opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.overlay-drawer.open { opacity: 1; pointer-events: all; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--navy);
  color: #fff; padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 0, rgba(34,87,149,.18), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500; color: #fff; line-height: 1.1;
  margin: 12px 0 16px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,.78); max-width: 60ch; }
.page-hero .eyebrow::before { background: rgba(255,255,255,.4); }

/* ── HERO (home) ─────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  min-height: 600px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(34,87,149,.12), transparent 55%),
              radial-gradient(ellipse at 0% 0%,   rgba(255,255,255,.04), transparent 40%);
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 64px; align-items: center;
  padding-top: 100px; padding-bottom: 100px;
}

.hero-copy { color: #fff; }
.hero-copy .eyebrow::before { background: rgba(255,255,255,.4); }
.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 500; line-height: 1.06;
  color: #fff; margin: 14px 0 22px;
  text-wrap: balance;
}
.hero-copy h1 em { font-style: italic; color: var(--gold-3); }
.hero-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7; color: rgba(255,255,255,.78);
  max-width: 56ch; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Trust badges */
.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-ic { width: 26px; height: 26px; flex-shrink: 0; color: var(--gold-3); }
.trust-ic svg { width: 100%; height: 100%; }
.trust-text { font-size: 13px; line-height: 1.45; color: rgba(255,255,255,.75); }
.trust-text b { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }

/* Google rating */
.google-rating {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 32px; padding: 12px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50px;
}
.google-stars { color: #225795; font-size: 13px; }
.google-info strong { display: block; color: #fff; font-size: 14px; }
.google-info span  { color: rgba(255,255,255,.65); font-size: 12px; }

/* Hero photo */
.hero-photo-wrap { position: relative; }
.hero-photo-wrap::before {
  content: ''; position: absolute;
  top: 28px; left: -24px;
  width: 100%; height: 100%;
  border: 1.5px solid rgba(34,87,149,.5);
  border-radius: 16px; z-index: 0;
}
.hero-photo {
  position: relative; z-index: 1;
  aspect-ratio: 4/5; border-radius: 16px;
  overflow: hidden; box-shadow: 0 32px 64px -20px rgba(0,0,0,.5);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(6,18,42,.78) 100%);
}
.hero-badge {
  position: absolute; z-index: 2;
  bottom: 28px; left: 28px; right: 28px; color: #fff;
}
.badge-kicker { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 6px; font-weight: 600; }
.badge-name   { font-family: var(--serif); font-size: 24px; line-height: 1.15; }
.badge-sub    { font-size: 13px; opacity: .75; margin-top: 4px; }

/* ── COVERAGE BAR ────────────────────────────────────────────── */
.coverage-bar {
  background: var(--navy-3);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.coverage-inner {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap; font-size: 13.5px; color: rgba(255,255,255,.82);
}
.coverage-inner b { color: #fff; }
.coverage-inner i { color: var(--gold-2); }
.dot-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.3); }

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center;
}
.about-gallery {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  min-height: 340px; background: var(--paper);
}
.gallery-item::after {
  content: ''; position: absolute; inset: auto 0 0;
  height: 48%; background: linear-gradient(180deg, transparent, rgba(10,24,43,.88));
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption {
  position: absolute; z-index: 1;
  left: 18px; right: 18px; bottom: 18px; color: #fff;
}
.gallery-caption strong { display: block; font-size: 14px; font-weight: 700; text-transform: uppercase; }
.gallery-caption span   { display: block; margin-top: 4px; color: var(--gold-3); font-size: 12px; font-weight: 700; }

.about-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px); line-height: 1.5;
  color: var(--navy); margin: 24px 0 26px;
  padding-left: 22px; border-left: 2.5px solid var(--gold);
}
.about-content p { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ── AREAS GRID ──────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.area-card {
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 36px 30px 30px;
  display: flex; flex-direction: column; overflow: hidden;
  position: relative; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.area-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.area-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.area-card:hover::before { transform: scaleX(1); }

.area-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--bone); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background var(--transition), color var(--transition);
}
.area-card:hover .area-icon { background: var(--navy); color: #fff; }
.area-icon svg { width: 22px; height: 22px; }
.area-card h3 {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  line-height: 1.2; margin-bottom: 12px; color: var(--navy);
}
.area-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.area-card ul { margin-bottom: 20px; }
.area-card ul li {
  font-size: 13.5px; color: var(--navy-3); padding: 7px 0 7px 18px;
  position: relative; border-bottom: 1px solid var(--line-2);
}
.area-card ul li:last-child { border-bottom: none; }
.area-card ul li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 8px; height: 1.5px; background: var(--gold);
}
.area-link {
  margin-top: auto; font-size: 13px; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
  border-top: 1px solid var(--line-2); padding-top: 16px;
}
.area-link .arr { transition: transform .25s ease; }
.area-card:hover .area-link .arr { transform: translateX(5px); }

/* CTA card */
.area-card-cta {
  background: var(--navy); border-color: var(--navy);
  justify-content: center;
}
.area-card-cta::before { background: var(--gold); }
.area-cta-text {
  font-family: var(--serif); font-size: 20px; line-height: 1.3;
  color: #fff; margin-bottom: 14px;
}
.area-card-cta p { color: rgba(255,255,255,.72); }
.area-card-cta .btn-whatsapp { align-self: flex-start; margin-top: 8px; }

/* ── AUX SPOTLIGHT ───────────────────────────────────────────── */
.aux-spotlight {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.aux-spotlight-inner {
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 64px; align-items: center;
  padding-top: 64px; padding-bottom: 64px;
}
.aux-label {
  color: var(--gold-2); font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px;
}
.aux-spotlight h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500; color: #fff; line-height: 1.1; margin-bottom: 16px;
}
.aux-spotlight p { color: rgba(255,255,255,.72); line-height: 1.7; max-width: 64ch; }
.aux-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow);
}
.how-step {
  padding: 36px 26px;
  border-right: 1px solid var(--line-2);
}
.how-step:last-child { border-right: none; }
.step-num {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  font-size: 24px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.step-num::after { content: ''; flex: 1; height: 1px; background: var(--line-2); }
.how-step h4 { font-family: var(--serif); font-weight: 500; font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.how-step p  { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ── PILLARS ─────────────────────────────────────────────────── */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform var(--transition), border-color var(--transition);
}
.pillar:hover { transform: translateY(-4px); border-color: var(--gold); }
.pillar-ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: var(--gold-2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pillar-ic svg { width: 22px; height: 22px; }
.pillar h4 { font-family: var(--serif); font-weight: 500; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.pillar p  { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ── BLOG GRID ───────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-grid-full { grid-template-columns: repeat(2, 1fr); }
.blog-card {
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bone); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-img-placeholder { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%); }
.blog-body { padding: 24px; }
.blog-tag {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  background: var(--gold-t); color: var(--gold); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.blog-card h2, .blog-card h3 {
  font-family: var(--serif); font-weight: 500; font-size: 19px;
  line-height: 1.3; color: var(--navy); margin-bottom: 10px;
}
.blog-card h2 a, .blog-card h3 a { color: inherit; transition: color var(--transition); }
.blog-card h2 a:hover, .blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 14px; line-height: 1.65; color: var(--muted); margin-bottom: 14px; }
.blog-meta { font-size: 12.5px; color: var(--muted); display: flex; gap: 14px; margin-bottom: 14px; }
.blog-link { font-size: 13px; font-weight: 600; color: var(--navy); }
.blog-link:hover { color: var(--gold); }

/* Blog filters */
.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--line); color: var(--navy);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); color: #fff; border-color: var(--navy);
}

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn {
  width: 42px; height: 42px; border-radius: 50%; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line); color: var(--navy); transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── SINGLE ARTICLE ──────────────────────────────────────────── */
.article-hero { background: var(--navy); color: #fff; padding: 64px 0 52px; }
.article-hero .eyebrow::before { background: rgba(255,255,255,.4); }
.article-hero h1 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500; color: #fff; margin: 14px 0 20px; line-height: 1.1; max-width: 900px;
}
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.65); }
.article-cover { padding: 32px 0 0; background: var(--bone); }
.article-cover img { border-radius: 12px; max-height: 460px; width: 100%; object-fit: cover; }

.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; padding-top: 56px; }
.article-lead {
  font-size: 18px; line-height: 1.7; color: var(--navy-3);
  font-style: italic; padding-left: 20px; border-left: 3px solid var(--gold);
  margin-bottom: 32px;
}
.article-content {
  font-size: 16.5px; line-height: 1.8; color: var(--navy-3);
}
.article-content h2 { font-family: var(--serif); font-size: 26px; color: var(--navy); margin: 32px 0 14px; }
.article-content h3 { font-family: var(--serif); font-size: 20px; color: var(--navy); margin: 24px 0 12px; }
.article-content p  { margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 20px; margin-bottom: 18px; list-style: disc; }
.article-content ul li, .article-content ol li { margin-bottom: 8px; }
.article-content strong { color: var(--navy); }
.article-content blockquote {
  border-left: 3px solid var(--gold); padding: 16px 20px;
  background: var(--bone); border-radius: 0 10px 10px 0;
  margin: 24px 0; font-style: italic; color: var(--navy);
}
.article-disclaimer {
  background: var(--bone); border-radius: 10px;
  padding: 18px 22px; display: flex; gap: 12px; margin: 36px 0;
  font-size: 13.5px; color: var(--muted);
}
.article-disclaimer i { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 24px; font-size: 14px; color: var(--muted); }
.article-share a { width: 36px; height: 36px; border-radius: 50%; background: var(--bone); display: inline-flex; align-items: center; justify-content: center; font-size: 15px; transition: all var(--transition); }
.article-share a:hover { background: var(--navy); color: #fff; }

.related-articles { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line-2); }
.related-articles h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { border-radius: 10px; overflow: hidden; background: var(--bone); transition: transform var(--transition); }
.related-card:hover { transform: translateY(-3px); }
.related-card img { width: 100%; height: 100px; object-fit: cover; }
.related-img-placeholder { height: 80px; background: var(--navy-3); }
.related-card h4 { padding: 12px; font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; }

/* Sidebar */
.article-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-cta {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
}
.sc-icon { font-size: 36px; color: #225795; margin-bottom: 14px; }
.sidebar-cta h4 { font-family: var(--serif); font-size: 18px; color: #fff; margin-bottom: 10px; }
.sidebar-cta p  { font-size: 13.5px; color: rgba(255,255,255,.72); margin-bottom: 18px; line-height: 1.6; }
.sidebar-box { background: var(--bone); border-radius: var(--radius); padding: 22px 20px; }
.sidebar-box h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.sidebar-links li { margin-bottom: 2px; }
.sidebar-links a { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 8px; font-size: 13.5px; color: var(--navy); transition: all var(--transition); }
.sidebar-links a:hover { background: var(--bone-2); }
.sidebar-links a i { color: var(--gold); font-size: 11px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 20px 24px; font-size: 15.5px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
}
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0; position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold); border-radius: 1px;
}
.faq-icon::before { top: 10px; left: 0; right: 0; height: 2px; }
.faq-icon::after  { left: 10px; top: 0; bottom: 0; width: 2px; transition: transform var(--transition); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer-inner {
  padding: 0 24px 20px; font-size: 15px; line-height: 1.7;
  color: var(--navy-3);
}

/* ── FINAL CTA ───────────────────────────────────────────────── */
.final-cta {
  background: var(--navy); color: #fff;
  text-align: center; padding: 96px 0; position: relative; overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(34,87,149,.18), transparent 55%);
}
.final-cta .container { position: relative; max-width: 760px; }
.final-cta h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 500; color: #fff; margin: 14px 0 20px; line-height: 1.1;
}
.final-cta h2 em { font-style: italic; color: var(--gold-3); }
.final-cta p { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.78); margin-bottom: 36px; }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr .85fr; gap: 56px; align-items: start; }
.contact-form-wrap h2, .contact-info h2 { font-family: var(--serif); font-size: 28px; margin-bottom: 10px; }
.form-desc { font-size: 14.5px; color: var(--muted); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; font-size: 15px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--white);
  color: var(--navy); transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.req { color: #e53e3e; }
.form-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted); margin-bottom: 20px;
}
.form-note i { color: var(--gold); }

/* Alerts */
.alert {
  padding: 14px 18px; border-radius: 10px; font-size: 14.5px;
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px;
}
.alert i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #7f1d1d; border: 1px solid #fca5a5; }

/* Contact cards */
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; background: var(--bone);
  border: 1px solid var(--line-2); border-radius: 12px;
}
.contact-whatsapp { background: #ffffff; border-color: #bbf7d0; cursor: pointer; text-decoration: none; transition: transform var(--transition); }
.contact-whatsapp:hover { transform: translateY(-2px); }
.cc-icon { width: 40px; height: 40px; flex-shrink: 0; font-size: 20px; color: var(--gold); display: flex; align-items: center; justify-content: center; }
.contact-whatsapp .cc-icon { color: #225795; }
.contact-card > div { display: flex; flex-direction: column; gap: 3px; }
.contact-card strong { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--navy); }
.contact-card span, .contact-card a, .contact-card small { font-size: 14px; color: var(--muted); }
.contact-map { margin-top: 6px; border-radius: 12px; overflow: hidden; }

/* ── ABOUT / TEAM ────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.team-card { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; }
.team-photo img { width: 100%; aspect-ratio: 4/4; object-fit: cover; object-position: top; }
.team-info { padding: 24px; }
.team-info h3 { font-family: var(--serif); font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.team-oab  { display: inline-block; padding: 3px 10px; background: var(--gold-t); color: var(--gold); border-radius: 50px; font-size: 11.5px; font-weight: 700; margin-bottom: 14px; }
.team-info p { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* MVV */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mvv-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: 28px 24px; }
.mvv-icon { width: 44px; height: 44px; background: rgba(34,87,149,.15); color: var(--gold-2); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.mvv-icon svg { width: 22px; height: 22px; }
.mvv-card h3 { font-family: var(--serif); font-size: 20px; color: #fff; margin-bottom: 10px; }
.mvv-card p  { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.68); }

/* ── AREAS DETAIL ────────────────────────────────────────────── */
.area-detail-grid {
  display: grid; grid-template-columns: 1fr .85fr;
  gap: 64px; align-items: center;
}
.area-detail-grid-reverse { grid-template-columns: .85fr 1fr; }
.area-detail-grid-reverse .area-detail-aside { order: -1; }
.area-list { margin: 20px 0; }
.area-list li { font-size: 15px; line-height: 1.6; color: var(--navy-3); padding: 10px 0 10px 24px; position: relative; border-bottom: 1px solid var(--line-2); }
.area-list li:last-child { border-bottom: none; }
.area-list li::before { content: ''; position: absolute; left: 0; top: 18px; width: 10px; height: 2px; background: var(--gold); }
.area-list li strong { color: var(--navy); }
.area-detail-aside { }
.area-detail-card {
  background: var(--bone); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 28px 26px;
}
.adc-icon {
  width: 52px; height: 52px; background: var(--navy); color: var(--gold-2);
  border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.adc-icon svg { width: 24px; height: 24px; }
.area-detail-card h4 { font-family: var(--serif); font-size: 19px; color: var(--navy); margin-bottom: 14px; }
.area-detail-card ul { }
.area-detail-card ul li { font-size: 14px; color: var(--navy-3); padding: 8px 0 8px 18px; position: relative; border-bottom: 1px solid var(--line-2); }
.area-detail-card ul li:last-child { border-bottom: none; }
.area-detail-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 12px; }
.area-detail-grid p { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 16px; }
.area-detail-grid h3 { font-family: var(--serif); font-size: 18px; color: var(--navy); margin: 24px 0 10px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-2); color: rgba(255,255,255,.8);
  padding-top: 64px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { width: 52px; height: 52px; border-radius: 10px; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.footer-badges span {
  padding: 4px 10px; border-radius: 50px; font-size: 11px; font-weight: 600;
  background: rgba(34,87,149,.15); color: var(--gold-2);
}
.footer-oab small { font-size: 11.5px; color: rgba(255,255,255,.4); }

.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul a:hover { color: #fff; }
.footer-contact p { font-size: 13.5px; color: rgba(255,255,255,.65); margin-bottom: 14px; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }
.footer-contact strong { display: block; color: rgba(255,255,255,.9); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.footer-contact i { margin-right: 4px; color: var(--gold-2); }
.footer-note { font-size: 11.5px !important; color: rgba(255,255,255,.4) !important; }

.footer-ethics {
  font-size: 12px; line-height: 1.65; color: rgba(255,255,255,.38);
  text-align: center; padding: 28px 24px; max-width: 900px; margin: 0 auto;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-size: 12.5px; color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom .credits { color: rgba(255,255,255,.35); }

/* ── FLOAT WA ────────────────────────────────────────────────── */
.float-wa {
  position: fixed; bottom: 28px; right: 24px; z-index: 900;
  display: flex; align-items: center; gap: 10px;
  background: #225795; color: #fff;
  padding: 14px 20px 14px 18px; border-radius: 50px;
  box-shadow: 0 8px 28px rgba(34,87,149,.4);
  transition: all var(--transition);
}
.float-wa:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 14px 36px rgba(34,87,149,.5); }
.float-wa i { font-size: 22px; }
.float-wa-label { font-size: 14px; font-weight: 600; }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; left: 24px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--navy-3); transform: translateY(-2px); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── 404 / EMPTY STATES ──────────────────────────────────────── */
.empty-state { text-align: center; padding: 64px 24px; color: var(--muted); }
.empty-state i { font-size: 48px; margin-bottom: 16px; color: var(--line); }
.empty-state p { font-size: 16px; }
.empty-state a { color: var(--gold); }

/* ── SKIP LINK ───────────────────────────────────────────────── */
.skip-link { position: absolute; top: -99px; left: 12px; z-index: 9999; background: var(--gold); color: #fff; padding: 8px 14px; border-radius: 0 0 8px 8px; font-size: 13px; }
.skip-link:focus { top: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (<= 1024px) */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-steps   { grid-template-columns: repeat(3, 1fr); }
  .how-step:nth-child(3) { border-right: none; }
  .how-step:nth-child(n+4) { border-top: 1px solid var(--line-2); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid     { grid-template-columns: repeat(2, 1fr); }
  .areas-grid   { grid-template-columns: repeat(2, 1fr); }
  .area-detail-grid, .area-detail-grid-reverse { grid-template-columns: 1fr; gap: 40px; }
  .area-detail-grid-reverse .area-detail-aside { order: 0; }
  .aux-spotlight-inner { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .aux-actions { align-items: flex-start; flex-direction: row; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 72px; padding-bottom: 72px; }
  .hero-photo-wrap::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-gallery { grid-template-rows: 280px; }
  .team-grid { grid-template-columns: 1fr; }
  .main-nav  { display: none; }
  .hamburger { display: flex; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid-full { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step  { border-right: none !important; border-top: 1px solid var(--line-2); }
  .how-step:first-child { border-top: none; }
  .float-wa-label { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
  .hero-trust { flex-direction: column; gap: 16px; }
  .aux-actions { flex-direction: column; gap: 10px; }
  .coverage-inner { flex-direction: column; gap: 10px; }
  .dot-sep { display: none; }
  .mvv-grid { grid-template-columns: 1fr; }
}

/* Small mobile (<= 480px) */
@media (max-width: 480px) {
  :root { --max-w: 100%; }
  .areas-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .google-rating { flex-direction: column; border-radius: 14px; }
}

/* Módulo Alan Perin: branco e azul #225795 */
.hero-overlay,.page-hero::before,.final-cta::before { background:none; }
.hero h1 em,.hero .eyebrow,.trust-ic,.aux-label,.section-title.white em,.mvv-icon,.footer-badges span { color:#fff; }
.area-card-cta .btn,.aux-spotlight .btn-gold,.final-cta .btn-whatsapp,.sidebar-cta .btn-whatsapp,.hero .btn-whatsapp { background:#fff; color:#225795; border-color:#fff; }
.site-footer .footer-oab small,.site-footer .footer-note,.footer-ethics,.footer-bottom { color:rgba(255,255,255,.85)!important; }
.contact-whatsapp { border-color:#225795; }
.perin-about-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; max-width:1080px; }
.perin-about-copy .eyebrow:before { display:none; }
.perin-about-copy .eyebrow { font-weight:500; letter-spacing:.04em; }
.perin-about-copy h2 { font-size:clamp(28px,3vw,38px); line-height:1.08; font-weight:700; margin:4px 0 28px; }
.perin-about-copy h2 strong { color:#225795; font-weight:800; }
.perin-about-copy p { font-size:14px; line-height:1.8; margin:0 0 14px; }
.perin-about-cta { margin-top:30px; border-radius:99px; padding:16px 36px; text-transform:uppercase; font-size:12px; }
.perin-video { position:relative; min-width:0; aspect-ratio:1; }
.perin-video-launch { display:block; width:100%; height:100%; position:relative; color:#fff; }
.perin-video-launch>img,.perin-video-cover { width:100%; height:100%; object-fit:cover; border-radius:28px; }
.perin-play { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:78px; height:78px; border:3px solid white; border-radius:50%; display:grid; place-items:center; font-size:28px; background:rgba(34,87,149,.35); padding-left:5px; }
.perin-play-corner { position:absolute; bottom:-5px; left:-5px; width:78px; height:78px; border:12px solid white; border-radius:50%; background:#225795; display:grid; place-items:center; font-size:20px; }
.perin-video iframe,.perin-video video { width:100%; height:100%; border:0; border-radius:28px; background:#225795; }
.perin-video-launch:focus-visible,.perin-whatsapp:focus-visible { outline:3px solid #225795; outline-offset:6px; }
.perin-whatsapp { position:fixed; right:24px; bottom:max(24px,env(safe-area-inset-bottom)); z-index:900; display:flex; gap:10px; align-items:center; }
.perin-wa-bubble { position:relative; display:flex; flex-direction:column; background:#fff; color:#225795; border:1px solid rgba(34,87,149,.15); padding:10px 14px; border-radius:12px; box-shadow:0 3px 16px rgba(34,87,149,.16); font-size:12px; line-height:1.35; }
.perin-wa-bubble:after { content:''; position:absolute; right:-6px; top:50%; width:10px; height:10px; background:white; transform:rotate(45deg); border-top:1px solid rgba(34,87,149,.15); border-right:1px solid rgba(34,87,149,.15); }
.perin-wa-avatar { position:relative; width:66px; height:66px; flex-shrink:0; }
.perin-wa-avatar img { width:100%; height:100%; object-fit:cover; border-radius:50%; border:2px solid white; background:#225795; box-shadow:0 3px 16px rgba(34,87,149,.18); }
.perin-wa-avatar i { position:absolute; right:0; bottom:0; background:#25d366; color:white; border:2px solid white; border-radius:50%; width:25px; height:25px; display:grid; place-items:center; font-size:17px; }
.perin-whatsapp:hover .perin-wa-bubble { transform:translateY(-3px); }
@media(max-width:700px) { .perin-about-grid { grid-template-columns:1fr; gap:34px; } .perin-about-cta { margin-top:15px; } .perin-video { width:100%; max-width:480px; margin:auto; } .perin-whatsapp { right:14px; bottom:max(16px,env(safe-area-inset-bottom)); gap:8px; } .perin-wa-avatar { width:58px; height:58px; } .perin-wa-bubble { font-size:11px; padding:9px 11px; } .site-footer { padding-bottom:110px; } }
@media(prefers-reduced-motion:reduce) { html { scroll-behavior:auto; } *,*::before,*::after { animation:none!important; transition:none!important; } }
.hero .hero-copy h1 em,.final-cta h2 em,.coverage-inner i,.gallery-caption span,.pillar-ic,.area-detail-icon,.footer-contact i { color:#fff; }
.bg-navy .eyebrow,.page-hero .eyebrow,.article-hero .eyebrow,.final-cta .eyebrow { color:#fff; }
.adc-icon { color:#fff; }

/* Abertura e áreas profissionais — versão 2 */
.perin-hero { isolation:isolate; min-height:620px; background:#225795; }
.perin-hero-background { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 42%; z-index:-2; }
.perin-hero .hero-overlay { z-index:-1; background:linear-gradient(90deg,rgba(34,87,149,.96) 0%,rgba(34,87,149,.88) 44%,rgba(34,87,149,.48) 100%); }
.perin-hero .hero-inner { display:block; padding-top:100px; padding-bottom:90px; }
.perin-hero .hero-copy { max-width:700px; }
.perin-hero .eyebrow { color:#fff; font-size:10px; letter-spacing:.15em; margin-bottom:20px; }
.perin-hero .eyebrow:before { background:#fff; }
.perin-hero .hero-copy h1 { font-size:clamp(34px,4.1vw,56px); font-weight:700; line-height:1.12; letter-spacing:-.035em; margin:0 0 24px; text-wrap:balance; }
.perin-hero .hero-copy h1 em { color:white; font-style:normal; }
.perin-hero .hero-lead { max-width:560px; font-size:16px; line-height:1.85; color:white; margin:0 0 30px; }
.perin-hero .hero-cta { display:flex; flex-wrap:wrap; align-items:center; gap:24px; }
.perin-hero .btn-whatsapp { background:white; border-color:white; color:#225795; padding:17px 28px; border-radius:99px; font-size:13px; font-weight:700; gap:18px; }
.perin-hero-secondary { color:white; font-size:12px; border-bottom:1px solid rgba(255,255,255,.6); padding:7px 0; }
.perin-hero .google-rating { display:inline-flex; gap:16px; margin-top:30px; padding:15px 24px; background:rgba(34,87,149,.7); border:1px solid rgba(255,255,255,.3); border-radius:99px; backdrop-filter:blur(8px); }
.perin-rating-icon { width:40px; height:40px; display:grid; place-items:center; background:white; color:#225795; border-radius:50%; font-size:23px; }
.perin-hero .google-info strong { display:flex; align-items:center; gap:12px; font-size:14px; }
.perin-hero .google-info>span { color:#fff; font-size:11px; }
.perin-hero .google-stars { display:inline-flex; gap:3px; color:#fff; font-size:11px; }
.perin-practice { border-top:1px solid rgba(34,87,149,.18); border-bottom:1px solid rgba(34,87,149,.18); padding:90px 0; }
.perin-practice .section-head { max-width:760px; margin-bottom:44px; }
.perin-practice .section-title { font-weight:700; font-size:clamp(28px,3.3vw,42px); line-height:1.2; letter-spacing:-.025em; }
.perin-practice .section-title em { font-style:normal; }
.perin-practice .section-lead { font-size:15px; }
.perin-practice .areas-grid { gap:24px; counter-reset:practice; }
.perin-practice .area-card { padding:30px; border:1px solid rgba(34,87,149,.23); border-radius:16px; box-shadow:0 8px 28px rgba(34,87,149,.05); counter-increment:practice; }
.perin-practice .area-card:before { height:4px; transform:scaleX(1); }
.perin-practice .area-card:not(.area-card-cta):after { content:'0' counter(practice); position:absolute; right:28px; top:34px; font-size:12px; font-weight:600; color:#225795; letter-spacing:.12em; }
.perin-practice .area-icon { width:54px; height:54px; border:1px solid rgba(34,87,149,.2); background:white; border-radius:12px; margin-bottom:24px; }
.perin-practice .area-icon svg { width:26px; height:26px; }
.perin-practice .area-card h3 { font-size:20px; line-height:1.35; font-weight:700; min-height:81px; padding-bottom:18px; margin-bottom:16px; border-bottom:1px solid rgba(34,87,149,.2); }
.perin-practice .area-card p { font-size:13px; line-height:1.8; }
.perin-practice .area-card ul li { font-size:12px; padding-top:10px; padding-bottom:10px; border-bottom:1px solid rgba(34,87,149,.12); }
.perin-practice .area-card ul li:before { top:19px; }
.perin-practice .area-link { justify-content:space-between; border-top:1px solid rgba(34,87,149,.2); padding-top:20px; font-size:12px; }
.perin-practice .area-link .arr { display:grid; place-items:center; border:1px solid rgba(34,87,149,.25); width:32px; height:32px; border-radius:50%; }
.perin-practice .area-card-cta { background:#225795; }
.perin-practice .area-card-cta:before { background:white; }
.perin-practice .area-cta-text { font-weight:700; font-size:27px; padding-bottom:24px; border-bottom:1px solid rgba(255,255,255,.3); }
.perin-practice .area-card-cta p { color:white; margin-top:8px; }
.perin-practice .area-card-cta .btn { background:white; color:#225795; border-radius:99px; font-size:12px; }
.area-detail-grid { padding-bottom:32px; border-bottom:1px solid rgba(34,87,149,.2); }
.area-detail-card { border:1px solid rgba(34,87,149,.23); border-top:4px solid #225795; border-radius:16px; box-shadow:0 8px 28px rgba(34,87,149,.06); }
.area-detail-card h4 { padding-bottom:16px; border-bottom:1px solid rgba(34,87,149,.2); }
.perin-hero a:focus-visible,.perin-practice a:focus-visible { outline:3px solid currentColor; outline-offset:5px; }
@media(max-width:1000px) { .perin-practice .areas-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:600px) { .perin-hero { min-height:0; } .perin-hero .hero-inner { padding-top:62px; padding-bottom:60px; } .perin-hero .hero-overlay { background:rgba(34,87,149,.9); } .perin-hero .hero-copy h1 { font-size:34px; } .perin-hero .hero-lead { font-size:14px; } .perin-hero .hero-cta { gap:16px; } .perin-hero .eyebrow { font-size:9px; letter-spacing:.08em; } .perin-practice { padding:60px 0; } .perin-practice .areas-grid { grid-template-columns:1fr; } .perin-practice .area-card { padding:26px; } .perin-practice .area-card h3 { min-height:0; } }
/* Abertura sem imagem, conforme solicitado. */
.perin-hero { background:#225795; }
.perin-hero .hero-overlay { background:none; }

/* Serviços com abas e cards arredondados — V3 */
.perin-services { background:#edf2f8; padding:68px 0 80px; color:#225795; }
.perin-services>.container { max-width:1020px; }
.perin-services-heading { text-align:center; margin-bottom:34px; }
.perin-services-heading>span { display:block; font-size:11px; letter-spacing:.08em; margin-bottom:10px; }
.perin-services-heading h2 { font-size:clamp(28px,3vw,36px); font-weight:400; line-height:1.2; }
.perin-services-heading h2 strong { font-weight:800; }
.perin-service-tabs { display:flex; flex-wrap:wrap; justify-content:center; padding:0 18px; margin-bottom:52px; border-radius:0 0 28px 28px; box-shadow:0 10px 14px rgba(34,87,149,.09); }
.perin-service-tab { background:#fff; color:#225795; padding:16px 18px; text-align:center; font-size:13px; font-weight:600; transition:background .2s,color .2s; }
.perin-service-tab[aria-selected="true"],.perin-service-tab:hover { background:#225795; color:#fff; }
.perin-service-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:30px; align-items:start; padding:0 18px; }
.perin-service-card { display:grid; grid-template-columns:44px minmax(0,1fr); gap:13px; background:#fff; border-radius:28px; padding:22px 20px 24px 14px; }
.perin-service-icon { width:44px; height:44px; display:grid; place-items:center; background:#225795; color:#fff; border-radius:50%; margin-top:2px; font-size:20px; }
.perin-service-card h4 { color:#225795; font-size:13px; font-weight:600; line-height:1.55; margin-bottom:8px; }
.perin-service-card p { color:#515c69; font-size:12px; line-height:1.85; margin:0; }
.perin-service-card h4 a:hover { text-decoration:underline; text-underline-offset:3px; }
.perin-service-tab:focus-visible,.perin-service-card a:focus-visible { outline:3px solid #225795; outline-offset:4px; }
.perin-service-panel { scroll-margin-top:110px; }
.perin-service-panel[hidden] { display:none; }
.perin-service-group-title { margin:32px 18px 20px; font-size:21px; }
.perin-services.tabs-ready .perin-service-group-title { display:none; }
@media(max-width:850px) { .perin-service-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; } .perin-service-tab { padding:15px; font-size:12px; } }
@media(max-width:540px) { .perin-services { padding:48px 0 56px; } .perin-services>.container { padding:0 18px; } .perin-service-tabs { padding:0; margin-bottom:32px; border-radius:18px; overflow:hidden; } .perin-service-tab { flex:1 1 45%; padding:14px 10px; } .perin-service-grid { grid-template-columns:1fr; padding:0; gap:18px; } .perin-service-card { padding:22px 24px 24px 18px; } .perin-service-card p { font-size:13px; } }

/* Nossos Vídeos — V4 */
.perin-videos { background:#edf2f8; text-align:center; padding:48px 0 36px; }
.perin-videos>.container { max-width:960px; }
.perin-videos h2 { font-size:clamp(28px,3vw,36px); color:#225795; font-weight:400; line-height:1.25; margin:0 0 30px; }
.perin-videos h2 strong { font-weight:800; }
.perin-videos-grid { display:flex; justify-content:center; gap:16px; }
.perin-video-card { display:block; position:relative; flex:0 1 calc((100% - 32px)/3); min-width:0; aspect-ratio:16/9; border:3px solid #225795; overflow:hidden; background:#225795; color:#fff; }
.perin-video-card img { width:100%; height:100%; object-fit:cover; transition:transform .25s ease; }
.perin-video-card:hover img { transform:scale(1.035); }
.perin-video-card-play { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); display:grid; place-items:center; width:44px; height:44px; padding-left:3px; border-radius:50%; background:rgba(34,87,149,.85); border:2px solid white; font-size:17px; }
.perin-video-fallback { height:100%; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:12px; padding:18px; font-size:14px; }
.perin-video-fallback i { font-size:34px; }
.perin-video-fallback+.perin-video-card-play { display:none; }
.perin-videos .perin-videos-all { margin-top:32px; border-radius:99px; padding:15px 38px; font-size:12px; font-weight:500; text-transform:uppercase; background:#225795; border-color:#225795; color:#fff; }
.perin-videos-empty { color:#515c69; font-size:14px; padding:20px 0; }
.perin-video-card:focus-visible,.perin-videos-all:focus-visible { outline:3px solid #225795; outline-offset:5px; }
@media(max-width:640px) { .perin-videos-grid { flex-direction:column; align-items:center; gap:20px; } .perin-video-card { flex:auto; width:100%; max-width:420px; } .perin-videos { padding:44px 0; } }

/* Blog com quatro capas — V5 */
.perin-blog-showcase { background:#fff; text-align:center; padding:48px 0; }
.perin-blog-showcase>.container { max-width:930px; }
.perin-blog-showcase h2 { color:#225795; font-weight:400; font-size:clamp(28px,3vw,36px); line-height:1.25; margin:0 0 14px; }
.perin-blog-showcase h2 strong { font-weight:800; }
.perin-blog-intro { color:#303b48; font-size:12px; line-height:1.7; margin:0 auto 36px; max-width:680px; }
.perin-blog-covers { display:flex; justify-content:center; gap:24px; }
.perin-blog-tile { flex:0 1 calc((100% - 72px)/4); min-width:0; }
.perin-blog-cover { display:block; width:100%; aspect-ratio:1; border-radius:18px; overflow:hidden; background:#225795; color:#fff; transition:transform .25s ease,box-shadow .25s ease; }
.perin-blog-cover img { width:100%; height:100%; object-fit:cover; }
.perin-blog-cover:hover { transform:translateY(-4px); box-shadow:0 10px 22px rgba(34,87,149,.18); }
.perin-blog-cover:focus-visible,.perin-blog-more:focus-visible { outline:3px solid #225795; outline-offset:5px; }
.perin-blog-fallback { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:20px; gap:18px; font-size:14px; font-weight:600; line-height:1.5; overflow:auto; }
.perin-blog-fallback i { font-size:32px; }
.perin-blog-showcase .perin-blog-more { margin-top:36px; padding:15px 38px; border-radius:99px; background:#225795; color:#fff; border-color:#225795; font-size:12px; font-weight:500; text-transform:uppercase; }
@media(max-width:700px) { .perin-blog-covers { flex-wrap:wrap; gap:20px; } .perin-blog-tile { flex:0 1 calc((100% - 20px)/2); } }
@media(max-width:380px) { .perin-blog-covers { gap:14px; } .perin-blog-tile { flex-basis:calc((100% - 14px)/2); } .perin-blog-fallback { padding:12px; font-size:11px; gap:10px; } }

/* Nossos Advogados — V6 */
.perin-lawyers { background:#225795; color:#fff; text-align:center; padding:58px 0; }
.perin-lawyers>.container { max-width:1000px; }
.perin-lawyers h2 { color:white; font-size:clamp(28px,3vw,36px); font-weight:400; margin:0 0 44px; }
.perin-lawyers h2 strong { font-weight:800; }
.perin-lawyer-carousel { position:relative; padding:0 28px; }
.perin-lawyer-track { display:flex; gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:thin; padding:0 0 14px; }
.perin-lawyer-card { position:relative; flex:0 0 calc((100% - 36px)/4); min-width:0; min-height:340px; border-radius:14px; overflow:hidden; scroll-snap-align:start; background:#fff; text-align:left; display:flex; flex-direction:column; }
.perin-lawyer-card>img { width:100%; height:240px; object-fit:cover; object-position:center top; }
.perin-lawyer-info { position:relative; margin:-52px 20px 0 0; padding:18px 14px; border-radius:0 16px 0 0; background:#fff; color:#225795; flex:1; }
.perin-lawyer-info h3 { font-size:13px; line-height:1.5; font-weight:700; margin-bottom:5px; color:#225795; }
.lawyer-oab { display:block; font-size:10px; margin-bottom:8px; }
.perin-lawyer-info p { font-size:11px; line-height:1.8; margin-bottom:12px; overflow-wrap:anywhere; }
.perin-lawyer-info a { display:inline-block; background:#225795; color:white; padding:6px 16px; font-size:9px; border-radius:4px; text-transform:uppercase; }
.lawyer-no-photo { height:240px; display:grid; place-items:center; background:#edf2f8; color:#225795; font-size:60px; }
.perin-lawyer-intro { max-width:740px; margin:32px auto 0; font-size:13px; line-height:1.8; color:#fff; }
.lawyer-prev,.lawyer-next { position:absolute; top:40%; z-index:2; width:28px; height:28px; border-radius:50%; color:#225795; background:#fff; font-size:26px; line-height:1; }
.lawyer-prev { left:-7px; }.lawyer-next { right:-7px; }
.lawyer-prev:disabled,.lawyer-next:disabled { opacity:.45; cursor:default; }
.perin-lawyers :focus-visible { outline:3px solid #fff; outline-offset:4px; }
.perin-lawyer-info a:focus-visible { outline-color:#225795; }
@media(min-width:901px) { .perin-lawyer-track:not(.has-overflow) { justify-content:center; } }
@media(max-width:900px) { .perin-lawyer-card { flex-basis:calc((100% - 12px)/2); } }
@media(max-width:520px) { .perin-lawyer-card { flex-basis:100%; } .perin-lawyers { padding:44px 0; } .perin-lawyer-card>img,.lawyer-no-photo { height:320px; } }

/* Fundo das perguntas frequentes conforme referência — V7 */
.perin-faq-section { background:#EDF2F8; }

/* Página Sobre — V8 */
.perin-about-page { color:#225795; background:#fff; }
.perin-about-page h2 { font-size:clamp(28px,3.2vw,40px); line-height:1.2; font-weight:700; letter-spacing:-.025em; margin-bottom:24px; }
.about-page-hero { background:#225795; color:#fff; padding:30px 0 76px; }
.about-page-hero>.container { max-width:1100px; }
.about-breadcrumb { display:flex; gap:12px; color:rgba(255,255,255,.85); font-size:11px; margin-bottom:50px; }
.about-breadcrumb a:hover { text-decoration:underline; }
.about-kicker { display:block; font-size:11px; letter-spacing:.15em; text-transform:uppercase; margin-bottom:20px; }
.about-page-hero h1 { max-width:870px; font-size:clamp(34px,4.5vw,58px); line-height:1.12; font-weight:700; letter-spacing:-.035em; text-wrap:balance; color:#fff; margin-bottom:24px; }
.about-page-hero p { max-width:670px; font-size:16px; line-height:1.85; margin-bottom:30px; color:#fff; }
.about-white-btn { background:white; border-color:white; color:#225795; border-radius:99px; padding:16px 28px; font-size:13px; gap:20px; }
.about-story-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:70px; align-items:start; max-width:1100px; }
.about-story-text p { color:#515c69; font-size:14px; line-height:1.9; margin-bottom:18px; }
.about-story blockquote { padding:22px 26px; border-left:3px solid #225795; border-radius:0 12px 12px 0; background:#edf2f8; font-size:15px; line-height:1.8; margin-top:28px; }
.about-office-gallery { display:grid; gap:18px; }
.about-office-gallery figure { position:relative; border-radius:18px; overflow:hidden; background:#edf2f8; }
.about-office-gallery img { width:100%; height:225px; object-fit:cover; }
.about-office-gallery figcaption { padding:12px 18px; font-size:12px; font-weight:600; background:#edf2f8; }
.about-office-location { display:flex; gap:14px; align-items:center; padding:18px; border:1px solid rgba(34,87,149,.2); border-radius:14px; }
.about-office-location i { font-size:22px; }.about-office-location strong { display:block; font-size:13px; }.about-office-location span { font-size:11px; display:block; margin-top:4px; }
.about-principles { background:#edf2f8; }
.about-centered-heading { text-align:center; max-width:720px; margin:0 auto 40px; }
.about-centered-heading .eyebrow:before { display:none; }
.about-principle-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.about-principle-grid article { background:#fff; border:1px solid rgba(34,87,149,.1); border-radius:22px; padding:32px; }
.about-principle-icon { width:48px; height:48px; background:#225795; color:white; border-radius:50%; display:grid; place-items:center; font-size:20px; margin-bottom:24px; }
.about-principle-grid h3 { font-size:20px; padding-bottom:18px; border-bottom:1px solid rgba(34,87,149,.18); margin-bottom:18px; }
.about-principle-grid p { font-size:14px; line-height:1.85; color:#515c69; }
.about-page-contact { text-align:center; background:#fff; }
.about-page-contact>.container { max-width:780px; }
.about-page-contact p { color:#515c69; font-size:15px; line-height:1.85; margin-bottom:28px; }
.about-page-contact .btn { border-radius:99px; padding:16px 28px; font-size:13px; gap:18px; }
.about-page-hero a:focus-visible { outline:3px solid white; outline-offset:5px; }
@media(max-width:800px) { .about-story-grid { grid-template-columns:1fr; gap:36px; } .about-principle-grid { grid-template-columns:1fr; } .about-office-gallery { grid-template-columns:1fr 1fr; } .about-office-location { grid-column:1/-1; } }
@media(max-width:520px) { .about-page-hero { padding:24px 0 50px; } .about-breadcrumb { margin-bottom:30px; } .about-page-hero p { font-size:14px; } .perin-about-page .section { padding:52px 0; } .about-office-gallery { grid-template-columns:1fr; } .about-principle-grid article { padding:26px; } }

/* Página Contato — V9 */
.perin-contact-page { background:#fff; color:#225795; }
.contact-page-main { background:#fff; }
.perin-contact-page .contact-grid { display:grid; grid-template-columns:1.25fr 1fr; gap:48px; align-items:start; }
.perin-contact-page .contact-form-wrap { padding:36px; border:1px solid rgba(34,87,149,.16); box-shadow:0 12px 35px rgba(34,87,149,.06); border-radius:24px; background:#fff; }
.perin-contact-page h2 { color:#225795; font-size:clamp(26px,2.8vw,34px); font-weight:700; line-height:1.25; margin-bottom:18px; }
.perin-contact-page .form-desc { font-size:14px; line-height:1.8; color:#515c69; margin-bottom:28px; }
.perin-contact-page .form-group input,.perin-contact-page .form-group textarea,.perin-contact-page .form-group select { background:#fff; border:1px solid rgba(34,87,149,.28); border-radius:10px; min-height:48px; }
.perin-contact-page .form-group label { color:#225795; font-size:12px; }
.perin-contact-page .form-group :is(input,textarea,select):focus { outline:2px solid #225795; outline-offset:2px; }
.perin-contact-page .btn { border-radius:99px; font-size:13px; gap:14px; }
.perin-contact-page .contact-info { padding-top:12px; }
.perin-contact-page .contact-card { padding:22px; border-radius:18px; border:1px solid rgba(34,87,149,.14); background:#edf2f8; margin-bottom:16px; overflow-wrap:anywhere; }
.perin-contact-page .contact-whatsapp { background:#225795; color:white; border-color:#225795; }
.perin-contact-page .contact-whatsapp :is(strong,span,small,.cc-icon) { color:white; }
.perin-contact-page .cc-icon { width:42px; height:42px; font-size:24px; }
.perin-contact-page .contact-card strong { font-size:14px; }
.perin-contact-page .contact-card small { font-size:11px; line-height:1.6; }
.perin-contact-page .form-note { font-size:11px; line-height:1.7; color:#515c69; }
.contact-location { background:#edf2f8; }
.contact-location-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:48px; align-items:center; }
.contact-location p { color:#515c69; font-size:14px; line-height:1.8; margin-bottom:20px; }
.contact-location address { font-size:14px; line-height:1.9; font-style:normal; margin-bottom:24px; }
.contact-location iframe { width:100%; height:350px; border:0; border-radius:22px; background:#fff; }
.perin-contact-page a:focus-visible { outline:3px solid currentColor; outline-offset:5px; }
@media(max-width:850px) { .perin-contact-page .contact-grid,.contact-location-grid { grid-template-columns:1fr; gap:32px; } }
@media(max-width:520px) { .perin-contact-page .contact-form-wrap { padding:24px 18px; } .perin-contact-page .form-row { grid-template-columns:1fr; } .perin-contact-page .section { padding:48px 0; } .contact-location iframe { height:280px; } }

/* Área do Cliente — V10 */
.portal-page { background:#edf2f8; }
.portal-page>.container { max-width:1000px; }
.portal-box { background:white; border:1px solid rgba(34,87,149,.15); border-radius:20px; padding:32px; margin-bottom:24px; overflow-wrap:anywhere; }
.portal-box h2 { font-size:26px; margin:12px 0; color:#225795; line-height:1.3; }
.portal-box h3 { font-size:18px; margin:26px 0 18px; }
.portal-box p { font-size:14px; line-height:1.8; margin-bottom:18px; color:#515c69; }
.portal-login { max-width:520px; margin:0 auto; }
.portal-box input { width:100%; padding:12px; border:1px solid #bccce0; border-radius:8px; }
.portal-box .btn { border-radius:99px; }
.portal-help { margin-top:24px; }.portal-help a { color:#225795; text-decoration:underline; }
.portal-welcome { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom:26px; }
.portal-status { display:inline-block; background:#edf2f8; color:#225795; border-radius:99px; padding:7px 14px; font-size:12px; }
.portal-timeline { margin-left:8px; padding-left:24px; border-left:2px solid #d6e1ee; }
.portal-timeline li { position:relative; padding:0 0 18px; }
.portal-timeline li:before { content:''; width:10px; height:10px; background:#225795; border-radius:50%; position:absolute; left:-30px; top:6px; }
.portal-timeline time { font-size:12px; color:#225795; }.portal-timeline h4 { margin:6px 0; font-size:16px; }
.portal-box summary { cursor:pointer; font-weight:600; }.portal-box details form,.portal-box[open] form { margin-top:22px; }
.portal-page :focus-visible { outline:3px solid #225795; outline-offset:3px; }
@media(max-width:700px) { .portal-box { padding:24px 18px; } .portal-welcome { align-items:flex-start; flex-direction:column; } }
@media (min-width:769px) and (max-width:1150px) { .main-nav { display:none; } .hamburger { display:flex; } }

/* Ícone branco configurável no banner — V11 */
.perin-hero-with-icon .hero-inner { display:grid; grid-template-columns:minmax(0,1.4fr) minmax(0,1fr); align-items:center; gap:48px; }
.perin-banner-icon { display:flex; align-items:center; justify-content:center; width:100%; }
.perin-banner-icon img { width:min(100%,380px); height:auto; max-height:420px; object-fit:contain; filter:brightness(0) invert(1); }
@media(max-width:800px) { .perin-hero-with-icon .hero-inner { grid-template-columns:1fr; gap:34px; } .perin-banner-icon img { width:180px; max-height:180px; } }

/* Marca d'água ampliada — V12 */
.perin-hero-with-icon { overflow:hidden; }
.perin-hero-with-icon .hero-inner { display:block; position:relative; isolation:isolate; }
.perin-hero-with-icon .hero-copy { position:relative; z-index:2; max-width:700px; }
.perin-hero-with-icon .perin-banner-icon { position:absolute; z-index:-1; pointer-events:none; right:-110px; top:50%; transform:translateY(-50%); width:760px; height:760px; opacity:.16; }
.perin-hero-with-icon .perin-banner-icon img { width:100%; height:100%; max-height:none; object-fit:contain; filter:brightness(0) invert(1); }
@media(max-width:800px) { .perin-hero-with-icon .perin-banner-icon { width:580px; height:580px; right:-220px; opacity:.12; } }
@media(max-width:480px) { .perin-hero-with-icon .perin-banner-icon { width:440px; height:440px; right:-190px; } }

@media(min-width:1151px) and (max-width:1300px){.main-nav{display:none}.hamburger{display:flex}}

/* Google: original brand colors and fractional yellow rating stars. */
.perin-hero .perin-google-live { display:inline-flex; flex-direction:column; align-items:flex-start; gap:6px; border-radius:22px; max-width:100%; }
.google-rating-link { display:flex; align-items:center; gap:14px; text-decoration:none; }
.google-brand-g { flex:0 0 36px; background:#fff; border-radius:50%; padding:6px; box-sizing:content-box; }
.google-info .google-stars-live { position:relative; display:inline-block; color:#c6ccd4; font-size:17px; letter-spacing:1px; white-space:nowrap; line-height:1.4; }
.google-stars-live > span { color:inherit; font:inherit; }
.google-stars-live .google-stars-filled { position:absolute; left:0; top:0; overflow:hidden; color:#fbbc04; }
.google-info .google-attribution { color:#fff; font-family:Arial,sans-serif; font-size:12px; font-weight:400; font-style:normal; letter-spacing:normal; white-space:nowrap; }
.perin-google-live .google-rating-policy { font-size:11px; color:#fff; text-decoration:underline; margin-left:62px; }
.google-rating-link:focus-visible { outline:2px solid #fbbc04; outline-offset:6px; border-radius:6px; }

.testimonials-page{background:#e8eef7;padding:72px 0 80px;text-align:center;min-height:65vh}
.testimonials-page h1{font-size:clamp(30px,4vw,44px);font-weight:400;color:#225795;margin-bottom:16px}
.testimonials-page h1 strong{font-weight:800}.testimonials-intro{color:#536174;margin-bottom:16px}
.testimonials-summary{color:#225795;margin-bottom:28px}.review-stars{color:#fbbc04;letter-spacing:2px}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;max-width:1000px;margin:32px auto;text-align:left}
.testimonial-card{background:#fff;border-radius:14px;padding:22px;min-width:0;box-shadow:0 5px 20px #22579508;display:flex;flex-direction:column;gap:10px}
.testimonial-author{display:flex;align-items:center;gap:12px}.testimonial-author img,.testimonial-avatar{width:40px;height:40px;border-radius:50%;object-fit:cover;flex-shrink:0}.testimonial-avatar{display:grid;place-items:center;background:#225795;color:#fff;font-weight:600}
.testimonial-author a,.testimonial-author strong{font-size:14px;color:#1e293b;font-weight:600;overflow-wrap:anywhere}.testimonial-author small{display:block;color:#64748b;font-size:12px}
.testimonial-text{font-size:14px;line-height:1.7;color:#334155;max-height:180px;overflow:auto;overflow-wrap:anywhere}.testimonial-source{font-size:12px;color:#225795;margin-top:auto;padding-top:12px}.testimonials-note{font-size:12px;color:#536174;margin:24px auto;max-width:700px}.testimonials-note a{text-decoration:underline}.testimonials-empty{background:#fff;border-radius:16px;max-width:650px;margin:32px auto;padding:32px}.testimonials-empty h2{font-size:23px;color:#225795;margin-bottom:12px}
@media(max-width:900px){.testimonials-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:600px){.testimonials-grid{grid-template-columns:1fr}.testimonials-page{padding:42px 0}.testimonial-card{padding:20px}}

.google-snapshot-date{display:block;color:#fff;font-size:10px;margin-top:5px;line-height:1.5}
