/* Estúdio Hertz — Landing page de podcasts (versão estática) */
:root {
  --hertz-blue: #1d3557;
  --hertz-blue-deep: #0f2137;
  --hertz-gray: #e5e5e5;
  --hertz-gray-warm: #f4f4f2;
  --hertz-green: #2a9d8f;
  --hertz-green-deep: #1f7b70;
  --hertz-accent: #AEA1D9;
  --hertz-red: #F4A261;
  --hertz-red-deep: #b11e32;
  --hertz-ink: #0b1a2b;
  --hertz-paper: #fafaf8;
  --radius: 0.75rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--hertz-ink);
  background: var(--hertz-paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.font-display { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; letter-spacing: -0.02em; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600;
  border: none; cursor: pointer; font-size: 15px;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--hertz-red); color: #fff; box-shadow: 0 10px 30px -12px rgba(244,162,97,.55); }
.btn-primary:hover { background: var(--hertz-red-deep); transform: translateY(-1px); }
.btn-secondary { background: var(--hertz-green); color: #fff; box-shadow: 0 10px 30px -12px rgba(42,157,143,.55); }
.btn-secondary:hover { background: var(--hertz-green-deep); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.05); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(15,33,55,.92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; background: var(--hertz-red);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: 'Bricolage Grotesque', sans-serif;
  box-shadow: 0 8px 20px -8px rgba(244,162,97,.7);
}
.logo-text { color: #fff; line-height: 1.1; }
.logo-text .name { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 18px; }
.logo-text .tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hertz-accent); }
.nav-links { display: none; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.header-cta { display: none; }
.mobile-toggle { background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }
@media (min-width: 860px) {
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; }
  .mobile-toggle { display: none; }
}
.mobile-menu { display: none; background: var(--hertz-blue-deep); border-top: 1px solid rgba(255,255,255,.1); padding: 16px 20px; }
.mobile-menu.open { display: flex; flex-direction: column; gap: 14px; }
.mobile-menu a { color: rgba(255,255,255,.9); font-size: 16px; }

/* Hero */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: #fff; padding-top: 100px; padding-bottom: 80px;
  text-align: center;
}
.hero-solid {
  background: radial-gradient(ellipse at top, #254874 0%, #1d3557 40%, #0f2137 100%);
}
.hero-center { max-width: 960px; margin: 0 auto; text-align: center; }
.hero-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-blobs .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .28; }
.hero-blobs .blob-green { width: 460px; height: 460px; top: -12%; left: -8%; background: #2a9d8f; }
.hero-blobs .blob-red { width: 500px; height: 500px; bottom: -18%; right: -8%; background: #F4A261; opacity: .22; }
.hero-blobs .blob-lilac { width: 300px; height: 300px; top: 30%; right: 22%; background: #AEA1D9; opacity: .22; }
.hero-center > * { position: relative; z-index: 1; }
.hero-bg {
  position: absolute; inset: 0; object-fit: cover;
  width: 100%; height: 100%; z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(15,33,55,.88) 0%, rgba(15,33,55,.55) 50%, rgba(15,33,55,.25) 100%);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  background: rgba(255,255,255,.05); backdrop-filter: blur(10px);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hertz-accent);
}
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: 2.5rem; line-height: 1.05; letter-spacing: -0.02em; margin: 24px auto;
  max-width: 780px;
}
.hero h1 .accent { color: var(--hertz-green); }
.hero p.lead { font-size: 1.125rem; max-width: 640px; margin: 0 auto; color: rgba(255,255,255,.85); line-height: 1.6; }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; justify-content: center; align-items: center; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 48px auto 0; max-width: 720px; }
@media (min-width: 768px) { .hero-specs { grid-template-columns: repeat(4, 1fr); } }
.hero-spec {
  display: flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; font-size: 13.5px; color: rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
}
.hero-spec .icon { color: var(--hertz-green); flex-shrink: 0; }

/* Sections */
section { padding: 80px 0; }
@media (min-width: 768px) { section { padding: 112px 0; } }
.section-navy { background: var(--hertz-blue-deep); color: #eef2f7; }
.section-paper { background: var(--hertz-paper); }
.section-gray { background: var(--hertz-gray-warm); }

.eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 12px;
}
.eyebrow.green { color: var(--hertz-green); }
.eyebrow.red { color: var(--hertz-red); }
.eyebrow.blue { color: var(--hertz-blue); }
.eyebrow.accent { color: var(--hertz-accent); }

h2 {
  font-family: 'Bricolage Grotesque'; font-weight: 700;
  font-size: 2rem; line-height: 1.1; letter-spacing: -0.02em;
}
@media (min-width: 768px) { h2 { font-size: 3rem; } }

/* Studio showcase */
.showcase { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .showcase { grid-template-columns: 5fr 7fr; gap: 64px; } }
.feature-list { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list .chip {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(42,157,143,.14); color: var(--hertz-green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.showcase-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(6, 1fr);
  gap: 12px; height: 520px;
}
.showcase-grid img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
  transition: transform .6s ease;
}
.showcase-grid > div { overflow: hidden; border-radius: 18px; }
.showcase-grid > div:hover img { transform: scale(1.03); }
.showcase-grid .s1 { grid-column: span 4; grid-row: span 4; }
.showcase-grid .s2, .showcase-grid .s3 { grid-column: span 2; grid-row: span 3; }
.showcase-grid .s4 { grid-column: span 4; grid-row: span 2; }
@media (min-width: 768px) { .showcase-grid { height: 560px; gap: 16px; } }

/* Videos */
.section-head {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 24px; margin-bottom: 40px;
}
@media (min-width: 768px) { .section-head { flex-direction: row; align-items: flex-end; } }
.carousel-controls { display: flex; gap: 12px; }
.ctrl-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s ease;
}
.ctrl-btn:hover { background: rgba(255,255,255,.1); }
.ctrl-btn:disabled { opacity: .3; cursor: not-allowed; }
.ctrl-btn-dark { border-color: rgba(29,53,87,.25); color: var(--hertz-blue); }
.ctrl-btn-dark:hover { background: var(--hertz-blue); color: #fff; }

/* Photo card */
.photo-card {
  display: block; width: 100%; text-align: left; border: none; background: var(--hertz-gray);
  cursor: pointer; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; position: relative;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-card:hover img { transform: scale(1.04); }
.photo-card .photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px; color: #fff; font-size: 14px; font-weight: 500;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  text-align: left;
}

/* Final CTA solid variant (sem imagem de fundo) */
.final-cta-solid {
  background: radial-gradient(ellipse at center, #1d3557 0%, #0f2137 65%, #0b1a2b 100%);
}
.final-cta-solid::before { display: none; }
.final-cta-solid .hero-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.final-cta-solid .hero-blobs .blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .25; }
.final-cta-solid .hero-blobs .blob-green { width: 420px; height: 420px; top: -20%; left: 10%; background: #2a9d8f; }
.final-cta-solid .hero-blobs .blob-red { width: 480px; height: 480px; bottom: -22%; right: 10%; background: #F4A261; }
.final-cta-solid .container > * { position: relative; z-index: 1; }
.final-cta-solid h2 { max-width: 820px; margin: 0 auto; }
.final-cta-solid p.lead { margin: 24px auto 36px; }

.carousel {
  overflow: hidden;
}
.carousel-track {
  display: flex; transition: transform .5s cubic-bezier(.22,.8,.26,.99);
}
.video-slide {
  flex: 0 0 100%; padding: 0 8px; min-width: 0;
}
@media (min-width: 768px) { .video-slide { flex-basis: 50%; } }
@media (min-width: 1100px) { .video-slide { flex-basis: 33.3333%; } }
.video-card {
  display: block; width: 100%; text-align: left; cursor: pointer;
  border-radius: 18px; overflow: hidden;
  background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.1);
  transition: border-color .2s ease;
}
.video-card:hover { border-color: var(--hertz-green); }
.video-thumb { position: relative; aspect-ratio: 16/9; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.video-card:hover .video-thumb img { transform: scale(1.03); }
.video-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent 50%);
}
.video-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; z-index: 2;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.6));
}
.video-body { padding: 18px 20px; color: #fff; }
.video-title { font-weight: 500; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-author { color: rgba(255,255,255,.55); font-size: 12px; margin-top: 8px; }

.video-lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.88); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.video-lightbox.open { display: flex; }
.video-lightbox-inner { position: relative; width: 100%; max-width: 1100px; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; box-shadow: 0 40px 80px -20px rgba(0,0,0,.8); }
.video-lightbox iframe { width: 100%; height: 100%; border: none; }
.video-close {
  position: absolute; top: 12px; right: 12px;
  width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,.7);
  border: none; color: #fff; font-size: 20px; cursor: pointer;
}

/* Steps */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  background: #fff; border: 1px solid rgba(29,53,87,.08);
  border-radius: 18px; padding: 28px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 22px 60px -25px rgba(29,53,87,.25); }
.step-n { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 5.5rem; line-height: 1; color: var(--hertz-gray); position: absolute; top: -6px; right: 16px; }
.step-icon { width: 44px; height: 44px; background: var(--hertz-blue); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; position: relative; z-index: 2; }
.step-card h3 { font-family: 'Bricolage Grotesque'; font-size: 20px; margin-bottom: 8px; position: relative; z-index: 2; }
.step-card p { font-size: 15px; color: rgba(26,43,64,.75); position: relative; z-index: 2; }

/* Proof strip */
.proof-strip { margin-top: 60px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .proof-strip { grid-template-columns: 2fr 1fr; } }
.proof-img { position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: 18px; }
.proof-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.proof-img:hover img { transform: scale(1.02); }
.proof-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  color: #fff; font-size: 12px; padding: 6px 12px; border-radius: 999px;
}

/* Differentials */
.diff-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(2, 1fr); gap: 80px; } }
.diff-cards { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 640px) { .diff-cards { grid-template-columns: repeat(2, 1fr); } }
.diff-card {
  padding: 20px; border-radius: 14px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12); transition: border-color .2s ease;
}
.diff-card:hover { border-color: rgba(42,157,143,.6); }
.diff-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(42,157,143,.2); color: var(--hertz-green);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.diff-card h3 { font-family: 'Bricolage Grotesque'; font-size: 18px; margin-bottom: 6px; color: #fff; }
.diff-card p { color: rgba(255,255,255,.7); font-size: 14px; }
.diff-photo { position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; }
.diff-photo img { width: 100%; height: 100%; object-fit: cover; }
.diff-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--hertz-red); color: #fff; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 10px 25px -6px rgba(0,0,0,.35);
}
.diff-inset {
  position: absolute; bottom: -24px; left: -24px;
  width: 160px; height: 160px; border-radius: 18px; overflow: hidden;
  border: 4px solid var(--hertz-blue-deep);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.5);
  display: none;
}
@media (min-width: 640px) { .diff-inset { display: block; } }

/* SEO block */
.seo-block p { font-size: 17px; color: rgba(26,43,64,.8); line-height: 1.7; margin-top: 16px; max-width: 720px; }
.seo-block strong { color: var(--hertz-ink); }

/* Reviews */
.reviews { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: #fff; border: 1px solid rgba(29,53,87,.08);
  border-radius: 18px; padding: 28px; position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 22px 60px -25px rgba(29,53,87,.25); }
.review-quote { color: var(--hertz-accent); margin-bottom: 12px; }
.review-stars { display: flex; gap: 4px; margin-bottom: 12px; color: var(--hertz-red); }
.review-stars svg { width: 16px; height: 16px; fill: currentColor; }
.review-text { font-size: 15px; line-height: 1.6; color: var(--hertz-ink); }
.review-author { display: flex; gap: 12px; align-items: center; margin-top: 20px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--hertz-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque'; font-weight: 600; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.review-name { font-weight: 600; font-size: 14px; }
.review-time { font-size: 12px; color: rgba(26,43,64,.6); }

.clients-strip {
  margin-top: 64px; border-top: 1px solid rgba(29,53,87,.15);
  border-bottom: 1px solid rgba(29,53,87,.15);
  padding: 20px 0; overflow: hidden;
}
.clients-label { text-align: center; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(26,43,64,.6); margin-bottom: 20px; }
.marquee { overflow: hidden; display: flex; }
.marquee-track {
  display: flex; gap: 56px; animation: marquee 35s linear infinite;
  white-space: nowrap; width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track span { font-family: 'Bricolage Grotesque'; font-weight: 600; color: rgba(29,53,87,.45); font-size: 20px; }

/* Final CTA */
.final-cta {
  position: relative; overflow: hidden;
  text-align: center; color: #fff; padding: 96px 0 128px;
}
.final-cta .bg { position: absolute; inset: 0; z-index: -2; object-fit: cover; width: 100%; height: 100%; }
.final-cta::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(11,26,43,.88); }
.final-cta h2 { font-size: 2.25rem; }
@media (min-width: 768px) { .final-cta h2 { font-size: 3.75rem; } }
.final-cta p.lead { margin: 24px auto 36px; max-width: 640px; color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.6; }
.final-cta-buttons { display: flex; flex-direction: column; gap: 12px; justify-content: center; align-items: center; }
@media (min-width: 640px) { .final-cta-buttons { flex-direction: row; } }
.final-cta-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 32px; margin-top: 36px; font-size: 14px; color: rgba(255,255,255,.7); }

/* Footer */
footer.site-footer { background: var(--hertz-ink); color: rgba(255,255,255,.75); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-col h4 { font-family: 'Bricolage Grotesque'; color: #fff; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 12px; font-size: 15px; }
.footer-col li { display: flex; gap: 10px; align-items: flex-start; }
.footer-col li svg { color: var(--hertz-green); flex-shrink: 0; margin-top: 2px; }
.footer-col a:hover { color: #fff; }
.footer-about p { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.6; max-width: 420px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; flex-direction: column; gap: 14px; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.55);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 10px 24px; }

/* WhatsApp Float */
.wa-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  transition: opacity .4s ease, transform .4s ease;
}
.wa-float.hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.wa-float a {
  width: 64px; height: 64px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 36px -10px rgba(37,211,102,.75);
  transition: transform .2s ease;
  position: relative;
}
.wa-float a:hover { transform: scale(1.08); }
.wa-float a::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  animation: wa-ping 2.2s cubic-bezier(0,0,.2,1) infinite; opacity: .6; z-index: -1;
}
@keyframes wa-ping { 0% { transform: scale(1); opacity: .6; } 80%,100% { transform: scale(1.8); opacity: 0; } }

/* Legal pages */
.legal-hero { background: var(--hertz-blue-deep); color: #fff; padding: 100px 0 56px; }
.legal-hero .back { font-size: 14px; color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: 6px; }
.legal-hero .back:hover { color: #fff; }
.legal-hero h1 { font-family: 'Bricolage Grotesque'; font-size: 2.5rem; margin-top: 12px; }
@media (min-width: 768px) { .legal-hero h1 { font-size: 3rem; } }
.legal-hero .date { color: rgba(255,255,255,.7); margin-top: 8px; }
.legal-body { max-width: 780px; padding: 56px 20px; margin: 0 auto; }
.legal-body section { padding: 0; margin-bottom: 28px; }
.legal-body h2 { font-family: 'Bricolage Grotesque'; font-size: 1.5rem; margin-bottom: 8px; }
.legal-body p { font-size: 16px; line-height: 1.7; color: rgba(11,26,43,.85); }
.legal-body a { color: var(--hertz-green); text-decoration: underline; }

/* Skeleton */
.skeleton { background: rgba(255,255,255,.06); border-radius: 16px; aspect-ratio: 16/9; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }

/* Focus rings */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--hertz-green); outline-offset: 3px; border-radius: 8px;
}

/* Lead form */
.lead-form-wrap {
  max-width: 520px; margin: 56px auto 0;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 20px;
  padding: 28px 24px; text-align: left;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.45);
}
.lead-form-wrap h3 { font-family: 'Bricolage Grotesque'; color: #fff; font-size: 22px; text-align: center; letter-spacing: -0.02em; }
.lead-form-wrap .lead-sub { color: rgba(255,255,255,.7); font-size: 13.5px; text-align: center; margin-top: 6px; }
.lead-form-wrap form { display: grid; gap: 10px; margin-top: 18px; }
.lead-form-wrap input, .lead-form-wrap textarea {
  width: 100%; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); border-radius: 10px;
  padding: 12px 14px; color: #fff; font: inherit; font-size: 15px;
  outline: none; transition: border-color .2s ease, background .2s ease;
}
.lead-form-wrap input::placeholder, .lead-form-wrap textarea::placeholder { color: rgba(255,255,255,.5); }
.lead-form-wrap input:focus, .lead-form-wrap textarea:focus { border-color: #2a9d8f; }
.lead-form-wrap textarea { resize: none; min-height: 90px; }
.lead-form-wrap button { width: 100%; justify-content: center; margin-top: 4px; }
.lead-form-wrap button[disabled] { opacity: .6; cursor: not-allowed; }
.lead-privacy { color: rgba(255,255,255,.5); font-size: 12px; text-align: center; margin-top: 8px; }
.lead-privacy a { color: rgba(255,255,255,.75); text-decoration: underline; }
.lead-success {
  margin-top: 14px; padding: 14px 18px; border-radius: 12px;
  background: rgba(42,157,143,.18); border: 1px solid rgba(42,157,143,.4);
  color: #fff; text-align: center; font-weight: 500;
}

/* Desenvolvido by badge (mobile friendly) */
@media (max-width: 520px) {
  .lead-form-wrap { padding: 22px 18px; }
}

/* Client logos */
.clients-strip { margin-top: 72px; padding: 32px 0; border-top: 1px solid rgba(29,53,87,.12); border-bottom: 1px solid rgba(29,53,87,.12); }
.clients-label { text-align: center; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(26,43,64,.55); margin-bottom: 28px; }
.client-logo { display: flex; align-items: center; justify-content: center; height: 56px; min-width: 160px; flex-shrink: 0; }
.client-logo img {
  max-height: 56px; max-width: 170px; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .55; transition: filter .35s ease, opacity .35s ease;
}
.client-logo img:hover { filter: grayscale(0); opacity: .95; }
.marquee-track { align-items: center; }

/* ============ Reviews pagination & centered cards ============ */
.review-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.review-stars { justify-content: center; }
.review-author { justify-content: center; text-align: left; }
.reviews-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(29,53,87,.25);
  background: transparent; color: #1d3557;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s ease;
}
.reviews-nav-btn:hover { background: #1d3557; color: #fff; }

/* ============ Centralized text for how-it-works & differentials ============ */
.step-card { text-align: center; }
.step-card .step-icon { margin-left: auto; margin-right: auto; }
.diff-card { text-align: center; }
.diff-card .diff-card-icon { margin-left: auto; margin-right: auto; }
