/* ----------------------------
   Base / Reset
-----------------------------*/
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.5;
  color: #0e1320;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul,ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  :root { --dur: .25s; --ease: cubic-bezier(.2,.7,.2,1); }
}

/* ======== TEMA PAINTING (dourado) ======== */
:root {
  --bg: #ffffff;
  --ink: #0e1320;
  --muted: #5b6474;

  --brand: #d4a900;
  --brand-ink: #111827;

  --line: #e7eaf0;
  --surface: #f6f8fc;

  --shadow-1: 0 1px 2px rgba(2,6,23,.06), 0 1px 1px rgba(2,6,23,.04);
  --shadow-2: 0 10px 30px rgba(2,6,23,.10);

  --header-bg: var(--brand);
}

/* ----------------------------
   Layout helpers
-----------------------------*/
.container { width: min(1120px, 92vw); margin-inline: auto; }

/* ----------------------------
   Skip link
-----------------------------*/
.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-start: -100px;
  z-index: 10000;
  padding: .5rem .75rem;
  background: #fff;
  border-radius: .5rem;
  box-shadow: var(--shadow-1);
}
.skip-link:focus { inset-block-start: 1rem; }

/* ----------------------------
   Header (DOURADO)
-----------------------------*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 2px 4px rgba(0,0,0,.12);
}

.header-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: 16px;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}
.header-inner .brand img { height: 85px; width: auto; }

.brand { display: inline-flex; align-items: center; gap: .5rem; margin: 0; }
.brand img { display: block; height: 48px; width: auto; }

/* ----------------------------
   Desktop nav
-----------------------------*/
.main-nav { display: none; }
.nav-list { display: flex; gap: 1rem; }
.nav-item { position: relative; }

.nav-link,
.main-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  border-radius: .5rem;
  font-weight: 600;
  color: #111827;
  transition: background-color var(--dur,.15s) var(--ease,ease), color var(--dur,.15s) var(--ease,ease);
}

.nav-link:hover,
.main-nav-toggle:hover {
  background: #000;
  color: #ffffff;
}

.caret {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 2;
  transition: transform var(--dur,.2s) var(--ease,ease);
}
.has-subnav[aria-expanded="true"] .caret,
.main-nav-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }

.subnav-list {
  position: absolute;
  inset-block-start: calc(100% + .5rem);
  inset-inline-start: 0;
  min-width: 240px;
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  padding: .5rem;
  display: none;
}
.has-subnav.is-open .subnav-list { display: block; }

.subnav-link {
  display: block;
  padding: .625rem .75rem;
  border-radius: .5rem;
  color: #111827;
  font-weight: 500;
}
.subnav-link:hover { background: #0b0f19; color:#fff; }

/* ----------------------------
   Header CTAs
-----------------------------*/
.header-cta { display: none; gap: .5rem; align-items: center; margin-left: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .625rem 1rem; border-radius: .75rem; font-weight: 700;
  transition: transform var(--dur,.15s) var(--ease,ease), background-color var(--dur,.15s) var(--ease,ease), border-color var(--dur,.15s) var(--ease,ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #111827;
  color: #ffffff;
  border: 1px solid #111827;
}
.btn-primary:hover { background: #000; }

.btn-outline {
  border: 1px solid #111827;
  background: rgba(0,0,0,.06);
  color: #111827;
}
.btn-outline:hover { background: rgba(0,0,0,.12); }

/* ----------------------------
   Mobile toggle
-----------------------------*/
.mobile-toggle {
  position: relative;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: .75rem;
}
.mobile-toggle:hover { background: rgba(0,0,0,.10); }
.mobile-toggle .bar {
  width: 22px; height: 2px; background: #111827;
  display: block; border-radius: 2px; position: relative;
}
.mobile-toggle .bar + .bar { margin-top: 5px; }

/* ----------------------------
   Overlay
-----------------------------*/
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,19,32,.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur,.2s) var(--ease,ease), visibility var(--dur,.2s) var(--ease,ease);
  z-index: 10000;
}
.overlay.is-active,
.overlay:not([hidden]) { opacity: 1; visibility: visible; }

/* ----------------------------
   Mobile drawer
-----------------------------*/
.mobile-nav {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  width: min(92vw, 360px);
  background: #fff;
  border-inline-start: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform var(--dur,.25s) var(--ease,ease);
  z-index: 10000;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}
.mobile-nav.is-open { transform: translateX(0%); }

.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1rem .75rem;
  border-bottom: 1px solid var(--line);
}
.mobile-title { font-weight: 700; }
.mobile-close {
  width: 40px; height: 40px; display: inline-grid; place-items: center; border-radius: .5rem;
}
.mobile-close:hover { background: var(--surface); }
.mobile-close svg { width: 22px; height: 22px; stroke: #111827; stroke-width: 2; fill: none; }

.mobile-contact { padding: .75rem 1rem; display: grid; gap: .5rem; border-bottom: 1px solid var(--line); background: #fafbff; }
.mobile-phone { font-weight: 700; color: #111827; }
.mobile-quote { width: 100%; }

.mobile-menu { padding: .5rem; }
.mobile-list { display: grid; gap: .25rem; }
.mobile-link,
.mobile-sublink {
  display: block;
  padding: .75rem .75rem;
  border-radius: .5rem;
  font-weight: 700;
  color: #111827;
}
.mobile-link:hover,
.mobile-sublink:hover { background: #0b0f19; color:#fff; }

.mobile-group { padding-block: .25rem .5rem; }
.mobile-group-title {
  display: block; padding: .5rem .75rem; color: var(--muted); font-size: .9rem; text-transform: uppercase; letter-spacing: .02em;
}
.mobile-sublist { padding-inline-start: .5rem; display: grid; gap: .125rem; }

.mobile-cta {
  margin-top: .25rem;
  background: #111827; color: #fff;
  text-align: center;
}
.mobile-cta:hover { background: #000; }

.mobile-foot {
  padding: .75rem 1rem 1rem;
  border-top: 1px solid var(--line);
}
.trust-copy { color: var(--muted); font-size: .95rem; margin: 0 0 .5rem 0; }
.badges { display: flex; align-items: center; gap: .5rem; }

/* ----------------------------
   Desktop ≥ 992px
-----------------------------*/
@media (min-width: 992px) {
  .mobile-toggle { display: none; }
  .header-cta { display: inline-flex; }

  .main-nav {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    translate: 0 -50%;
    margin: 0;
    z-index: 10000;
  }

  .has-subnav:hover .subnav-list,
  .has-subnav:focus-within .subnav-list { display: block; }
}

/* ----------------------------
   Utilities
-----------------------------*/
.has-drawer { overflow-x: hidden; }
.muted { color: var(--muted); }

#main { min-height: 1px; }

@media print {
  .mobile-toggle, .overlay, .mobile-nav { display: none !important; }
  .site-header { position: static; }
}

/* ====== Ajustes hamburger no mobile ====== */
@media (max-width: 991.98px) {
  #mobile-toggle,
  .mobile-toggle {
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0,0,0,.08);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.20);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    z-index: 10000;
  }
  .mobile-toggle:hover { background: rgba(0,0,0,.14); }

  .mobile-toggle .bar {
    position: static !important;
    width: 22px;
    height: 2px;
    background: #111827;
    border-radius: 1px;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    transition: transform .18s ease, opacity .18s ease, width .18s ease;
  }

  #mobile-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg); width: 24px;
  }
  #mobile-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  #mobile-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg); width: 24px;
  }

  .header-inner {
    padding-inline: max(16px, env(safe-area-inset-left)) max(16px, env(safe-area-inset-right));
    justify-content: space-between;
  }
}

/* ===========================
   FOOTER (dourado + preto)
============================= */
.site-footer{
  background: var(--header-bg);
  color:#000;
  border-top:1px solid rgba(0,0,0,.25);
  box-shadow:0 -2px 4px rgba(0,0,0,.25);
}

.footer--wide{ width:100%; }

.footer-wrap{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: clamp(16px,2vw,28px);
  padding-inline: clamp(12px, 2vw, 20px);
  padding-block: clamp(18px, 3vw, 28px);
}

.f-col{ display:grid; gap:.55rem; align-content:start; min-width:0; }
.f-brand{ gap:.85rem; }
.f-logo img{ height:44px; width:auto; display:block; }

.f-title{
  margin:0;
  font-weight:700;
  color:#000;
}

.f-text{
  margin:0;
  color:#000;
}

.f-links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.35rem;
}
.f-links a{
  color:#000;
  text-decoration:none;
  padding:.2rem .3rem;
  border-radius:.4rem;
}
.f-links a:hover{
  background:#000;
  color:#fff;
}

.f-social{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin:.25rem 0 0;
  padding:0;
  list-style:none;
}

.f-ico{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:.7rem;
  background:rgba(0,0,0,.10);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
  transition: transform .2s ease, background-color .2s ease;
}

.f-ico:hover{
  transform:translateY(-1px);
  background:#000;
}

.f-ico svg{
  width:20px;
  height:20px;
  fill:#000;
}

.f-ico img{
  width:40px;
  height:40px;
  object-fit:contain;
  filter: brightness(0);
}

.f-cta{
  margin-top:.6rem;
}

.site-footer .btn.btn-primary{
  background:#000;
  color:#fff;
  border-color:#000;
}
.site-footer .btn.btn-primary:hover{
  background:#333;
  color:#fff;
}

.f-hr{
  height:1px;
  background:rgba(0,0,0,.25);
}

.f-bottom{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:.9rem clamp(12px,2vw,20px) 1.2rem;
  color:#000;
  font-size:.95rem;
}

@media (max-width: 1040px){
  .footer-wrap{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-wrap{ grid-template-columns: 1fr; }
  .f-bottom{ justify-content:flex-start; }
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ============================
   WHY CHOOSE US — Lupa Painting
============================ */
.trust {
  padding: clamp(32px, 5vw, 64px) 0;
  background: #fff8e5;
  color: #0E1320;
}

.trust .container {
  width: min(1080px, 90vw);
  margin-inline: auto;
}

.trust-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}

.owner img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.owner-cap {
  color: #4a4a4a;
  font-size: 0.95rem;
  margin-top: 0.3rem;
  text-align: center;
}

.trust-title {
  margin: 0;
  font-size: clamp(1.9rem, 1.2vw + 1.4rem, 2.7rem);
  font-weight: 800;
  color: #0E1320;
}

.trust-sub {
  margin: 0.4rem 0 0;
  color: #333;
  max-width: 52ch;
}

.trust-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #fffbe8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border-left: 6px solid #D4AA00;
}

.trust-item .ico {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #D4AA00;
  color: #0E1320;
  border-radius: 0.8rem;
}

.trust-item h3 {
  margin: 0.1rem 0;
  font-size: 1.1rem;
  color: #0E1320;
}

.trust-item p {
  margin: 0;
  color: #555;
  font-size: 0.96rem;
}

.trust-cta {
  margin-top: 1.6rem;
}

.trust-cta .btn-primary {
  background: #D4AA00;
  color: #0E1320;
  font-weight: 700;
  border-radius: 0.6rem;
  padding: 0.8rem 1.4rem;
  transition: background 0.2s ease;
}

.trust-cta .btn-primary:hover {
  background: #e0b900;
}

/* vídeo */
.trust-video-full {
  margin-top: clamp(24px, 3.5vw, 40px);
  width: 100%;
}

.ratio,
.yt-fallback {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9.5;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #000;
}

.yt-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

.yt-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease;
}

.yt-fallback:hover .yt-play {
  background: #fff;
}

.yt-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(212, 170, 0, 0.85);
  color: #0E1320;
  padding: 0.35rem 0.6rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .trust-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .trust-list {
    text-align: left;
  }
}

/* ===========================
   Services Grid (geral)
=========================== */
.svc-section { 
  padding: clamp(32px, 6vw, 64px) 0; 
  background: var(--bg); 
}

.svc-head { 
  text-align: center; 
  max-width: 820px; 
  margin: 0 auto clamp(20px, 3vw, 32px); 
}

.svc-head h2 { 
  margin: 0 0 .35rem 0; 
  font-size: clamp(1.6rem, 2.4vw, 2.2rem); 
  color: #0e1320; 
}

.svc-sub { 
  margin: 0; 
  color: var(--muted); 
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(18px, 2.6vw, 28px);
}

.svc-card {
  list-style: none;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  transition: transform .18s var(--ease, ease),
              box-shadow .18s var(--ease, ease),
              border-color .18s var(--ease, ease);
}

.svc-link {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 8px;
  padding: clamp(16px, 2.2vw, 22px);
  height: 100%;
}

.svc-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(23,75,130,.06);
  display: grid; 
  place-items: center;
}

.svc-ico svg { 
  width: 26px; 
  height: 26px; 
  stroke: var(--brand); 
  fill: none; 
  stroke-width: 1.8; 
}

.svc-title { 
  font-weight: 700; 
  color: #0e1320; 
}

.svc-desc  { 
  color: var(--muted); 
  font-size: .975rem; 
}

.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: rgba(23,75,130,.25);
}

/* 2 colunas em tablets */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE: carrossel horizontal */
@media (max-width: 560px) {
  .svc-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 16px;
  }

  .svc-card {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
    margin: 0 auto;
  }

  .svc-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(23,75,130,.07);
  }

  .svc-title {
    font-size: 1.05rem;
    font-weight: 700;
  }

  .svc-desc {
    font-size: .95rem;
    line-height: 1.35;
  }
}

/* ===========================
   Painting Section Variant
=========================== */
#painting.svc-section {
  background: #fff8e1;
}

#painting .svc-head h2 {
  color: #5a4200;
}

#painting .svc-ico {
  background: rgba(163,114,0,.08);
}

#painting .svc-ico svg {
  stroke: #a37200;
}

#painting .svc-title {
  color: #3a2a00;
}

#painting .svc-card:hover {
  border-color: rgba(163,114,0,.4);
  box-shadow: 0 10px 30px rgba(163,114,0,.2);
}

/* =========
   AJUSTE FORTE DE TEXTO EM TELAS ATÉ 900px
   (isso empurra só os textos pra direita)
========= */
@media (max-width: 900px) {

  /* título e subtítulo menores para não “explodir” */
  #painting .svc-head h2 {
    font-size: 1.25rem;
    line-height: 1.15;
    margin-bottom: 0.25rem;
    padding-inline: 8px;
  }

  #painting .svc-sub {
    font-size: 0.85rem;
    line-height: 1.35;
    padding-inline: 12px;
  }

  /* mais padding interno no card */
  #painting .svc-link {
    padding: 14px 18px 14px 26px; /* << aumenta a margem à esquerda */
  }

  /* ícone volta um pouquinho para a esquerda
     pra não parecer “solto” demais */
  #painting .svc-ico {
    margin-left: -6px;
  }

  /* textos empurrados ainda mais para a direita */
  #painting .svc-title,
  #painting .svc-desc {
    padding-left: 4px;
    font-size: 0.9rem;
  }

  #painting .svc-desc {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}
/* ================================
   INVERTER CORES — WHY CHOOSE US
   ================================ */
.trust-item {
  border-left: 6px solid #000 !important;  /* amarelo → preto */
  background: #fffbe8; /* mantém o fundo original */
}

/* Caixinha do ícone (era amarela → vira preta) */
.trust-item .ico {
  background: #000 !important;
  color: #D4AA00 !important; /* ícone amarelo */
}

/* Ícone interno (SVG) — garantir amarelo */
.trust-item .ico svg {
  stroke: #D4AA00 !important;
  fill: #D4AA00 !important;
}

/* TÍTULO (era preto → vira amarelo) */
.trust-item h3 {
  color: #D4AA00 !important;
}

/* PARÁGRAFO (cinza → amarelo suave e legível) */
.trust-item p {
  color: #C9A200 !important;
}
/* ================================
   AJUSTE TRUST CARDS – texto + ícone menor
   ================================ */

/* Texto de título e parágrafo em preto */
.trust-item h3 {
  color: #0E1320 !important;   /* título preto */
}

.trust-item p {
  color: #333333 !important;   /* corpo em cinza escuro legível */
}

/* Ícone: caixa menor */
.trust-item .ico {
  width: 32px !important;      /* antes 40px */
  height: 32px !important;
  border-radius: 0.6rem !important;
}

/* Ícone interno (check, estrela, linhas) menor também */
.trust-item .ico svg {
  width: 18px !important;      /* antes ~24px */
  height: 18px !important;
}
/******************************************************
  COVERAGE AREA — THEME: PAINTING
  Estilo 100% baseado no arquivo Style Painting enviado
*******************************************************/

/* ===== Wrapper geral ===== */
#coverage-area {
  background: #fff8e1; /* igual às seções Painting */
  padding: clamp(32px, 6vw, 72px) 0;
  color: var(--ink);
}

.covwrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* ===== Bloco principal ===== */
.covmap {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-2);
}

/* ===== Título ===== */
.covmap-head h3 {
  margin: 0 0 1.2rem 0;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 800;
  color: #5a4200; /* dourado queimado típico do tema */
}

/* ============================================
   FORM STYLE — mesmo padrão dos botões e inputs
   ============================================ */
.addr-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 1rem;
}

/* INPUT */
.addr-form input {
  flex: 1 1 420px;
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #faf6f1; /* superfície suave usada no tema */
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.addr-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(212,169,0,.25);
}

/* ============================================
   BOTÕES — idênticos ao sistema de botões Painting
=============================================== */
.addr-form button {
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  transition: background .2s var(--ease), transform .2s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* SUBMIT (amarelo escuro → brand) */
#addr-submit {
  background: #111827;
  color: #fff;
  border: 1px solid #111827;
}
#addr-submit:hover {
  background: #000;
  transform: translateY(-1px);
}

/* GPS BUTTON (azul igual ao tema? NÃO — manter estilo Painting) */
#gps-btn {
  background: #d4a900;
  color: #0e1320;
  border: 1px solid #b48f00;
}
#gps-btn:hover {
  background: #e0b900;
  transform: translateY(-1px);
}

/* STATUS */
#addr-status {
  margin-top: 4px;
  text-align: center;
  font-size: .95rem;
  color: var(--muted);
}

/* ===== Diagnostics ===== */
.diag summary {
  cursor: pointer;
  font-weight: 600;
  color: #3a2a00;
}
.diag pre {
  margin-top: 6px;
  background: #fffbe8;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: .85rem;
  overflow: auto;
}

/* ===== Mapa ===== */
#map {
  margin-top: 20px;
  width: 100%;
  height: 550px;
  border-radius: 18px;
  overflow: hidden;

  /* Sombras painting */
  box-shadow: var(--shadow-2);
}

/* ===== Responsivo ===== */
@media (max-width: 600px) {
  .addr-form {
    flex-direction: column;
  }

  /* NÃO deixar o input com flex-basis: 420px na coluna */
  .addr-form input {
    flex: 0 0 auto;      /* não estica em altura */
    width: 100%;
  }

  .addr-form button {
    width: 100%;
  }
}

.divider-blue {
  height: 4px;
  background-color: #164B82;
  border-radius: 2px;
}

.divider-yellow {
  height: 4px;
  background-color: #CDA000;
  border-radius: 2px;
}
/* Scrollbar Premium Amarelo */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f3f4f6; /* cinza suave */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #CDA000; /* amarelo da sua paleta */
  border-radius: 10px;
  border: 2px solid #f3f4f6;
  transition: background .2s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: #b78f00; /* tom mais escuro, elegante */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #CDA000 #f3f4f6;
}
/* ===========================
   Reviews / Testimonials
=========================== */
.reviews-section {
  padding: clamp(32px, 6vw, 64px) 0;
  background: #fffdf3;
  color: #0e1320;
}

.reviews-section .container {
  width: min(1080px, 92vw);
  margin-inline: auto;
}

.reviews-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(20px, 3vw, 32px);
}

.reviews-head h2 {
  margin: 0 0 .4rem 0;
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
  font-weight: 800;
  color: #3a2a00;
}

.reviews-sub {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.reviews-shell {
  position: relative;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

/* Cards */
.review-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  padding: 18px 20px;
  display: grid;
  gap: 8px;
  position: relative;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(212, 169, 0, 0.3);
  pointer-events: none;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.review-name {
  margin: 0;
  font-weight: 700;
  color: #111827;
  font-size: .98rem;
}

.review-stars {
  margin: 0;
  font-size: .95rem;
  letter-spacing: .06em;
  color: #d4a900;
}

.review-body {
  margin: 4px 0 0;
  font-size: .96rem;
  color: #374151;
}

.review-meta {
  margin: 4px 0 0;
  font-size: .85rem;
  color: #9ca3af;
}

/* Dots (mobile) */
.reviews-dots {
  display: none;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 24, 39, 0.25);
}

.reviews-dot.is-active {
  background: #111827;
  transform: scale(1.25);
}

/* Nav arrows (mobile) */
.reviews-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.reviews-btn {
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px 10px;
  cursor: pointer;
}

/* Tablet: 1 coluna se quiser mais respiro */
@media (max-width: 900px) {
  .reviews-track {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* MOBILE: carrossel em tela pequena */
@media (max-width: 640px) {
  .reviews-track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 0;
  }

  .review-card {
    min-width: 100%;
    max-width: 100%;
    border-radius: 20px;
    /* sombra removida no mobile */
    box-shadow: none;
    border: 1px solid var(--line);
  }

  .reviews-dots {
    display: flex;
  }

  .reviews-nav {
    display: flex;
  }
}
/* ===========================
   FAQ Section (Painting)
=========================== */

.faq-section {
  padding: clamp(32px, 6vw, 64px) 0;
  background: #fff8e1;              /* fundo quente, igual às seções painting */
  color: var(--ink);
}

.faq-section .container {
  width: min(1080px, 92vw);
  margin-inline: auto;
}

.faq-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(20px, 3vw, 32px);
}

.faq-head h2 {
  margin: 0 0 .35rem 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: #5a4200;                    /* marrom/dourado forte (combina com painting) */
}

.faq-sub {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

/* Card base */
.faq-item {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-weight: 700;
  color: #0e1320;
  font-size: .98rem;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--brand);               /* dourado da paleta */
  transition: transform var(--dur, .2s) var(--ease, ease);
}

/* Quando aberto, gira o "+" (fica com cara de "x") */
.faq-button[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 16px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .96rem;
}

.faq-panel p {
  margin: 10px 0 0;
}

/* responsivo: só 1 coluna mesmo, mas com respiro extra em telas maiores */
@media (min-width: 900px) {
  .faq-grid {
    gap: 12px;
  }
}
/* ============ ABOUT – SECTION 1: OUR STORY ============ */

.about-history {
  padding: 4rem 0 5rem;
}

.about-history-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

/* TEXT CARD */

.history-text-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.history-text-card .section-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 0.6rem;
}

.history-text-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  margin-bottom: 1.2rem;
}

.history-text-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* PHOTO FRAME */

.history-photo {
  display: flex;
  justify-content: center;
}

.history-photo-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 55%),
    #0f172a; /* fundo escuro neutro, pode trocar pela cor do tema */

  border: 2px solid rgba(37, 99, 235, 0.4); /* azul: ajuste para a cor Lupa Painting */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(15, 23, 42, 0.4);
}

/* Se usar <img> dentro do frame */
.history-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .about-history-grid {
    grid-template-columns: 1fr;
  }

  .history-photo {
    order: -1; /* foto sobe em mobile, se você quiser inverter, remova esta linha */
  }
}
/* ============ ABOUT – SECTION 2: FOUNDER STORY ============ */

.about-founder {
  padding: 3.5rem 0 5rem;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
}

/* PHOTO */

.founder-photo {
  display: flex;
  justify-content: flex-start;
}

.founder-photo-frame {
  width: 100%;
  max-width: 380px; /* ajuste se quiser maior */
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;

  /* Fallback caso a imagem não carregue */
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 55%),
    #0b1120;

  border: 2px solid rgba(21, 83, 143, 0.45);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.40),
    0 0 0 1px rgba(15, 23, 42, 0.50);

  /* REMOVE aspect-ratio fixed value */
  /* aspect-ratio: 4 / 5;  <-- saiu */
}

/* IMAGE RESPONSIVA QUE DEFINE O TAMANHO DO CARD */
.founder-photo-frame img {
  width: 100%;
  height: auto;       /* ESSENCIAL — o card cresce baseado na foto */
  display: block;
  object-fit: cover;  /* mantém estilo moderno */
}


/* TEXT CARD */

.founder-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem 2.25rem 2.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.founder-card .section-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 0.6rem;
}

.founder-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  margin-bottom: 1.1rem;
}

.founder-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.founder-intro {
  font-weight: 500;
}

/* QUOTE DESTACADA */

.founder-quote {
  margin-top: 0.75rem;
  border-left: 3px solid rgba(37, 99, 235, 0.7); /* azul – ajuste se necessário */
  padding-left: 1rem;
}

.founder-quote p {
  font-size: 0.96rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}

/* RESPONSIVO */

@media (max-width: 960px) {
  .about-founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    justify-content: center;
  }

  .founder-photo-frame {
    max-width: 320px;
  }
}
/* ============ ABOUT – SECTION 3: WHY CHOOSE US ============ */

.about-why {
  padding: 3.5rem 0 5rem;
}

.about-why-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.about-why-header .section-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 0.6rem;
}

.about-why-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}

.about-why-lead {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* SCROLL HINT (MOBILE ONLY) */

.why-scroll-hint {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0 0 0.75rem;
  display: none;
}

/* CARDS – MOBILE: CARROSSEL HORIZONTAL */

.why-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.why-cards::-webkit-scrollbar {
  height: 6px;
}

.why-cards::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18); /* ajuste se quiser */
}

.why-card {
  flex: 0 0 85%;
  max-width: 320px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* DESKTOP: GRID EM VEZ DE CARROSSEL */

@media (min-width: 960px) {
  .why-scroll-hint {
    display: none;
  }

  .why-cards {
    overflow: visible;
    scroll-snap-type: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .why-card {
    flex: 0 0 auto;
    max-width: none;
    height: 100%;
  }
}

/* MOSTRAR HINT NO MOBILE */

@media (max-width: 959px) {
  .why-scroll-hint {
    display: block;
  }
}
/* REMOVE SHADOWS ON MOBILE CAROUSEL */
@media (max-width: 959px) {
  .why-card {
    box-shadow: none !important;
    border: 1px solid rgba(0,0,0,0.06); /* mantém o card definido */
  }
}
/* ============ ABOUT – SINGLE CARD: VISION / MISSION / PURPOSE ============ */

.about-vmp-single .vmp-bg {
  /* use aqui o amarelo que você mandou */
  background-color: #fff6e1; /* troque para o hex exato se tiver */
  padding: 4rem 0 5rem;
}

/* HEADER */

.about-vmp-header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.about-vmp-header .section-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 0.7rem;
}

.about-vmp-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.about-vmp-lead {
  font-size: 1rem;
  opacity: 0.9;
}

/* OUTER BLACK CARD */

.vmp-shell {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.vmp-shell {
  border-radius: 1.8rem;
  background: #020617; /* preto quase azul escuro */
  padding: 0.4rem;
  box-shadow:
    0 26px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.6);
}

/* INNER WHITE CARD */

.vmp-inner {
  width: 100%;
  border-radius: 1.4rem;
  background: #ffffff;
  padding: 2rem 2.25rem;
}

/* GRID INTERNO */

.vmp-inner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.vmp-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.vmp-block p {
  font-size: 0.96rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* RESPONSIVO */

@media (max-width: 960px) {
  .vmp-inner {
    padding: 1.75rem 1.6rem;
  }

  .vmp-inner-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
/* ========= OUR CORE VALUES – FINAL LAYOUT ========= */

:root {
  --lupa-soft-yellow: #fff6e1;  /* fundo da seção */
  --lupa-gold: #d4af37;        /* dourado da estrela/linha */
}

.about-values-stars {
  background-color: var(--lupa-soft-yellow);
  padding: 4rem 0 5rem;
}

/* HEADER */

.about-values-header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.about-values-header .section-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 0.7rem;
}

.about-values-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.about-values-lead {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* GRID DE 6 VALORES */

.values-stars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

/* CADA CARD DE VALOR */

.value-star {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 1.8rem 1.6rem;
  border-radius: 1.4rem;
  background: #fffaf0; /* ligeiramente mais claro que o fundo */
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

/* ESTRELA – CENTRALIZADA, SEM BOLHA */

.value-icon {
  width: auto;
  height: auto;
  margin-bottom: 0.5rem;

  display: flex;
  align-items: center;
  justify-content: center;

  background: none;
  box-shadow: none;
}

.star-icon {
  font-size: 2rem;
  color: var(--lupa-gold);
  line-height: 1;
  transition: transform 0.25s ease;
}

.value-star:hover .star-icon {
  transform: scale(1.12);
}

/* TÍTULO + LINHA DOURADA */

.value-star h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  position: relative;
}

.value-star h3::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  background: var(--lupa-gold);
  border-radius: 999px;
  margin: 0.45rem auto 0;
}

/* TEXTO */

.value-star p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-top: 0.6rem;
}

/* RESPONSIVO */

/* Tablet: ainda em grid, só 2 colunas */
@media (max-width: 960px) {
  .values-stars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: vira carrossel horizontal */
@media (max-width: 640px) {
  .values-stars-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }

  .values-stars-grid::-webkit-scrollbar {
    height: 6px;
  }

  .values-stars-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
  }

  .value-star {
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: start;
    margin-inline: 0.25rem;
  }
}
/* ========= TRAINING & PROFESSIONAL DEVELOPMENT ========= */

:root {
  --training-bg: #ffffff;   /* COR EXATA DO FUNDO DO SEU SITE */
  --lupa-gold: #d4af37;
}

.about-training {
  background: var(--training-bg);
  padding: 4rem 0 5rem;
}

/* HEADER */

.training-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.training-header .section-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.6rem;
}

.training-header h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 0.9rem;
}

.training-lead {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* GRID */

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

/* CARDS */

.training-card {
  background: #fff7f1; /* mantém branco limpo */
  border-radius: 1.4rem;
  padding: 2rem 1.8rem;
  text-align: center;

  box-shadow: 0 14px 30px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}

/* ICONES */

.training-icon {
  font-size: 2.4rem;
  margin-bottom: 0.9rem;
}

/* TITULO */

.training-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
}

.training-card h3::after {
  content: "";
  width: 2.3rem;
  height: 2px;
  background: var(--lupa-gold);
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 999px;
}

/* TEXTO */

.training-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* RESPONSIVO */

@media (max-width: 960px) {
  .training-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .training-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }

  .training-card {
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: start;
  }
}
/* =========================================================
   LUPA PAINTING – BLOG CARDS
   Mesmo layout do Cleaning, com amarelo/preto/branco
   ========================================================= */

/* Hero do blog */
.page-hero--blog {
  padding: clamp(32px, 6vw, 56px) 0 clamp(20px, 4vw, 28px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.page-hero--blog .container {
  text-align: center;
}

.page-hero--blog h1 {
  margin: 0 0 .4rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--ink);
}

.page-hero--blog p {
  margin: 0 auto;
  max-width: 700px;
  color: var(--muted);
}

/* Grid correto: 2 em cima, featured, 2 embaixo */
.blog-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

/* ============================
   CARD PADRÃO
   ============================ */
.blog-card {
  background: #ffffff;
  border: 1px solid #e6eaf0;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(212, 169, 0, 0.18); /* leve toque dourado */
}

/* Texto interno (fallback de erro) */
.blog-card-error {
  font-size: 0.95rem;
  color: #6b7280;
}

/* =============================
   DETALHES AMARELOS SUTIS
   ============================= */
.blog-card-title a {
  color: var(--ink);
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--brand);            /* amarelo Lupa Painting */
  text-decoration: underline;
}

.blog-card-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.blog-card-link:hover {
  text-decoration: underline;
}

/* =============================
   FEATURED (POST PRINCIPAL)
   ============================= */
.blog-featured-card {
  background: #ffffff;
  border: 1px solid #e6eaf0;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
}

.blog-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 169, 0, 0.22);
}

.blog-featured-label {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.blog-featured-title a {
  color: var(--ink);
}

.blog-featured-title a:hover {
  color: var(--brand);
}

/* =============================
   CTA - mais espaço antes do footer
   ============================= */
.blog-cta-inline {
  margin: 50px 0 70px;
  text-align: center;
}

.blog-cta-inline-text {
  max-width: 700px;
  margin: 0 auto 14px;
  color: var(--muted);
}

.blog-cta-inline .btn {
  padding: 14px 26px;
  background: var(--brand);
  color: var(--brand-ink);
  border-radius: 999px;
  border: none;
  font-weight: 700;
}

/* =============================
   Responsivo
   ============================= */
@media (max-width: 900px) {
  .blog-row {
    grid-template-columns: 1fr;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }
}

/* Espaço entre featured e linha de baixo */
.blog-row--bottom {
  margin-top: 32px !important;
}
/* remover linha abaixo do hero do blog */
.page-hero--blog {
  border-bottom: none !important;
}
/* ================== LUPA PAINTING – INTERIOR PAINTING ================== */
:root {
  --lp-gold: #C59F0C;        /* amarelo queimado premium */
  --lp-gold-dark: #A88307;   /* hover/variação */
  --lp-navy: #0A0F1A;        /* azul quase preto */
  --lp-white: #ffffff;
  --lp-gray: #6b7280;
}

/* Fundo geral da área de conteúdo (header amarelo é outro CSS) */
.page-content {
  background: #ffffff;
}

/* ================== INTRO SEO ================== */

.tl-seo-intro {
  padding: 3rem 1rem 2.5rem;
  text-align: center;
}

.tl-seo-intro .container {
  max-width: 900px;
  margin: 0 auto;
}

.tl-seo-intro h2 {
  color: var(--lp-navy);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.tl-seo-intro p {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
}

/* ================== CARDS – GRID 3x2 DESKTOP / CARROSSEL MOBILE ================== */

.tl-gallery {
  padding: 2.5rem 1rem 3rem;
  background: #ffffff;
}

.tl-gallery-head {
  max-width: 1100px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.tl-gallery-head h2 {
  color: var(--lp-navy);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.tl-gallery-head p {
  color: var(--lp-navy);
  opacity: 0.8;
  max-width: 540px;
  margin: 0 auto;
}

/* DESKTOP – grid 3 colunas, 2 linhas */
.tl-gallery-track {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

/* Cards */
.tl-g-card {
  background: var(--lp-white);
  border-radius: 16px;
  padding: 1.4rem 1.25rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.tl-g-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lp-navy);
}

.tl-g-card p {
  margin: 0;
  line-height: 1.5;
  color: #374151;
  font-size: 0.9rem;
}

/* Dots – aparecem só no mobile */
.tl-gallery-dots {
  display: none;
}

/* ================== BLOCO PROCESSO + FOTO ================== */

.svc-block {
  padding: 4rem 0;
  background: #f7f7f7;
}

.svc-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.svc-text {
  background: var(--lp-navy);
  color: var(--lp-white);
  padding: 3rem 3.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 18px 0 0 18px;
}

.svc-text h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.svc-text p {
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.svc-text p:last-of-type {
  margin-bottom: 1.75rem;
}

.svc-text strong {
  color: var(--lp-gold);
}

.svc-btn {
  background: var(--lp-gold);
  color: var(--lp-navy);
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.svc-btn:hover {
  background: var(--lp-gold-dark);
}

.svc-image {
  border-radius: 0 18px 18px 0;
  overflow: hidden;
}

.svc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================== DIVISOR ================== */

.footer-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

/* ================== GALERIA DE FOTOS – CARROSSEL ================== */

.tl-work {
  padding: 3rem 1rem 4rem;
  background: #ffffff;
}

.tl-work-head {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.tl-work-head h2 {
  color: var(--lp-navy);
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.tl-work-head p {
  color: var(--lp-navy);
  opacity: 0.85;
}

.tl-work-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tl-work-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 360px;
  border-radius: 18px;
  background: #fefce8;
}

.tl-work-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tl-work-slide.is-active {
  opacity: 1;
}

.tl-work-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.tl-w-btn {
  background: var(--lp-navy);
  color: var(--lp-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
}

.tl-w-btn:hover {
  background: #111827;
}

/* CTA final */
.tl-work-cta {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.98rem;
  color: var(--lp-navy);
}

.tl-work-cta a {
  color: var(--lp-navy);
  font-weight: 600;
  text-decoration: none;
}

.tl-work-cta a:hover {
  text-decoration: underline;
}

/* ================== LIGHTBOX (ZOOM NAS FOTOS) ================== */

.tl-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 1.5rem;
}

.tl-lightbox img {
  max-width: 96%;
  max-height: 92vh;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  background: #ffffff;
}

/* ================== RESPONSIVO ================== */

@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-text {
    border-radius: 18px 18px 0 0;
  }

  .svc-image {
    border-radius: 0 0 18px 18px;
  }

  .tl-work-track {
    height: 300px;
  }
}

@media (max-width: 768px) {
  /* MOBILE: cards viram carrossel horizontal */
  .tl-gallery-track {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 1rem;
  }

  .tl-g-card {
    min-width: 78vw;
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .tl-gallery-track::-webkit-scrollbar {
    height: 6px;
  }

  .tl-gallery-track::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
  }

  .tl-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
  }

  .tl-g-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background: transparent;
  }

  .tl-g-dot.is-active {
    background: var(--lp-navy);
    border-color: var(--lp-navy);
  }

  .svc-block {
    padding: 3rem 1rem;
  }

  .svc-text {
    padding: 2.5rem 1.5rem 2.5rem;
  }

  .tl-work-track {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .tl-seo-intro {
    padding-top: 2.5rem;
  }

  .tl-work-track {
    height: 220px;
  }
}
/* ===========================================
   BLOG ARTICLE – LUPA PAINTING (AMARELO + AZUL ESCURO)
   Mesmo layout do Lupa Cleaning, só trocando cores
=========================================== */

/* Paleta específica do Painting */
:root {
  --paint-bg: #ffffff;
  --paint-ink: #0f172a;
  --paint-muted: #6b7280;

  --paint-gold: #D4A515;   /* header / destaques */
  --paint-gold-soft: #FFF7D6;
  --paint-dark: #0B1120;   /* texto forte / botões */
}

/* Página do artigo */
.blog-article-page {
  background: var(--paint-bg);
  color: var(--paint-ink);
}

/* HERO (topo do artigo) */
.ba-hero {
  padding: 3.5rem 1rem 2.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.ba-hero .container {
  max-width: 900px;
  margin: 0 auto;
}

/* HERO GRID COM IMAGEM */
.ba-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1fr);
  gap: 2rem;
  align-items: center;
}

.ba-hero-copy {
  /* nada aqui por enquanto – usa tipografia padrão */
}

.ba-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--paint-muted);
  margin-bottom: 0.5rem;
}

.ba-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--paint-dark);
}

.ba-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 720px;
}

.ba-meta {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--paint-muted);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* IMAGEM DO HERO – borda e sombra combinando com painting */
.ba-hero-image {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.ba-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ===== ARTICLE WRAPPER ===== */

.ba-article {
  padding: 2.8rem 1rem 4rem;
}

.ba-layout.container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1.2fr);
  gap: 2.75rem;
  align-items: flex-start;
}

/* Coluna principal */
.ba-main {
  max-width: 720px;
}

.ba-section {
  margin-bottom: 2.25rem;
}

.ba-section h2 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  color: var(--paint-dark);
}

.ba-section h3 {
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--paint-dark);
}

.ba-section p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--paint-ink);
  margin-bottom: 0.75rem;
}

.ba-section ul {
  padding-left: 1.2rem;
  margin: 0 0 0.8rem;
}

.ba-section ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--paint-ink);
  margin-bottom: 0.3rem;
}

/* Intro com um respiro maior */
.ba-intro {
  margin-bottom: 2.5rem;
}

/* Destaques tipo “stat” – em amarelo Lupa Painting */
.ba-stat {
  background: var(--paint-gold-soft);
  border-left: 3px solid var(--paint-gold);
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.94rem;
  color: var(--paint-ink);
}

/* Checklist em duas colunas (quando usado) */
.ba-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0.8rem;
}

.ba-checklist {
  list-style: none;
  padding-left: 0;
}

.ba-checklist li::before {
  content: "▢ ";
  color: var(--paint-gold);
}

.ba-checklist li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

/* Lista de referências (se usar) */
.ba-ref-list {
  padding-left: 1.2rem;
}

.ba-ref-list li {
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

/* Conclusão – só garante espaçamento final limpo */
.ba-conclusion p:last-of-type {
  margin-bottom: 0;
}

/* ===== SIDEBAR – Quick checklist / CTA ===== */

.ba-sidebar {
  position: sticky;
  top: 6.5rem; /* ajuste se o header for mais alto/baixo */
}

.ba-side-card {
  background: #f9fafb;
  border-radius: 1.25rem;
  padding: 1.6rem 1.5rem 1.8rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.ba-side-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--paint-dark);
}

.ba-side-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
}

.ba-side-list li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--paint-ink);
  margin-bottom: 0.3rem;
}

/* Botão do sidebar: fundo amarelo, texto azul escuro */
.ba-cta-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--paint-gold);
  color: var(--paint-dark);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.ba-cta-btn:hover {
  background: #e0b626;
  color: var(--paint-dark);
}

/* ===== RESPONSIVO ===== */

@media (max-width: 992px) {
  .ba-layout.container {
    grid-template-columns: minmax(0, 1fr);
  }

  .ba-main {
    max-width: 100%;
  }

  .ba-sidebar {
    position: static;
  }

  .ba-side-card {
    margin-top: 0.5rem;
  }

  .ba-checklist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .ba-hero-grid {
    grid-template-columns: 1fr;
  }

  .ba-hero-image {
    margin-top: 1.5rem;
  }
}

@media (max-width: 640px) {
  .ba-hero {
    padding-top: 2.5rem;
  }

  .ba-title {
    font-size: 1.8rem;
  }

  .ba-article {
    padding-bottom: 3rem;
  }
}
/* Esconde CTA mobile por padrão */
.hero-cta-mobile {
  display: none;
}

/* Em telas pequenas: troca os CTAs */
@media (max-width: 768px) {
  .hero-cta-desktop {
    display: none !important;
  }
  .hero-cta-mobile {
    display: inline-flex !important;
  }
}
/* rating fix — canto inferior esquerdo */
.hero-note {
  position: absolute;
  bottom: 28px;
  left: 32px;
  right: auto;
  color: #fff;
  font-weight: 600;
  z-index: 20;
  margin: 0;
}
/* Ajuste de posição do star rating */
.hero-note {
  position: absolute !important;
  bottom: 26px !important;
  left: 120px !important; /* antes 32px */
  right: auto !important;
  margin: 0;
  color: #fff;
}
/* Remove o fundo/sombra/blur do passador (hero-rail) */
.hero-rail {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
/* Seção do vídeo */
.trust-video-full {
  width: 100%;          /* ocupa toda a largura do container */
  margin: 40px 0;
}

/* Wrapper em 16:9 e responsivo */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;    /* 16:9 */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

/* iFrame ocupa tudo */
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Thumbnail antes de clicar */
.video-thumbnail {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ícone de play */
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 20px 30px;
  border-radius: 50%;
  pointer-events: none;
}

/* Texto embaixo */
.yt-caption {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.45);
  padding: 8px 16px;
  border-radius: 6px;
}
.trust-video-full {
  background-color: #FFF7E3;   /* cor bege */
  padding: 40px 0;
  margin: 0;                   /* importante pra não criar faixa */
}

.svc-section {
  background-color: #FFF7E3;   /* mesma cor da seção do vídeo */
  padding-top: 40px;
  margin: 0;                   /* tira “buraco” entre as seções */
}
/* =========================================
   LUPA PAINTING – FUNDO DA PÁGINA TODO BRANCO
   ========================================= */
body {
  background: #ffffff;
}

/* Seções que estavam com fundo amarelo/creme */
.trust,
#painting.svc-section,
.reviews-section,
.faq-section,
#coverage-area,
.svc-section,
.trust-video-full {
  background: #ffffff !important;
}

/* Se quiser que o espaço entre as seções também pareça branco liso */
#main {
  background: #ffffff;
}
/* =========================================
   PAINTING SERVICES – CARDS COM FOTO + CARROSSEL
   ========================================= */
#painting.svc-section {
  background: #ffffff;              /* fundo branco, como você pediu */
  padding: clamp(48px, 6vw, 72px) 0;
}

/* Kicker "OUR SERVICES" */
.svc-kicker {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: #f97362;                   /* um coral suave estilo referência */
  margin: 0 0 0.4rem;
  font-weight: 600;
}

#painting .svc-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

#painting .svc-sub {
  max-width: 620px;
  margin-inline: auto;
}

/* Shell do carrossel (setas + track) */
.svc-carousel-shell {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* TRACK – carrossel horizontal com scroll-snap */
.svc-track {
  flex: 1;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-block: 0.5rem 0.75rem;
}

/* Cada slide (card) */
.svc-slide {
  flex: 0 0 320px;                 /* largura do card */
  max-width: 340px;
  scroll-snap-align: start;
}

/* CARD com foto em cima + texto embaixo */
.svc-card-img {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Imagem */
.svc-card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.svc-card-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Faixinha "Most Popular" */
.svc-ribbon {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97362;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Corpo do card */
.svc-card-body {
  padding: 1.4rem 1.6rem 1.45rem;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
  border-bottom: 3px solid #f97362;    /* linha colorida embaixo, estilo print */
}

.svc-card-title {
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: #111827;
}

.svc-card-text {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f97362;
  text-decoration: none;
}

.svc-card-link::after {
  content: "›";
  font-size: 1rem;
}

.svc-card-link:hover {
  text-decoration: underline;
}

/* Botões de navegação (setas) */
.svc-nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: #111827;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.svc-nav:hover {
  background: #000;
  transform: translateY(-1px);
}

.svc-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

/* Responsivo */
@media (max-width: 960px) {
  .svc-carousel-shell {
    gap: 0.5rem;
  }

  .svc-slide {
    flex: 0 0 82vw;          /* ocupa quase a tela no mobile */
    max-width: 82vw;
  }
}

@media (max-width: 640px) {
  .svc-nav {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
}
/* =========================================
   FIXES – Painting Services Carousel
   ========================================= */

/* tirar as bolinhas de lista e a barra de scroll interna */
#painting .svc-track {
  list-style: none;          /* remove os bullets (•) */
  padding-inline: 0.75rem;   /* dá um respiro lateral */
  scrollbar-width: none;     /* esconde a barra no Firefox */
}

#painting .svc-track::-webkit-scrollbar {
  height: 0;                 /* esconde a barra no Chrome/Edge */
}

/* primeiro e último card não grudam tanto nas bordas */
#painting .svc-slide:first-child {
  margin-left: 0.25rem;
}
#painting .svc-slide:last-child {
  margin-right: 0.25rem;
}

/* ===== BASE DO CARROSSEL – IGUAL AO PAINTING ===== */
#cleaning-services .svc-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  list-style: none;
  padding-inline: 0.75rem;
  scrollbar-width: none;
}
#cleaning-services .svc-track::-webkit-scrollbar { height: 0; }
#cleaning-services .svc-slide { flex: 0 0 280px; }

#cleaning-services .svc-card-img {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: none !important; /* ← SOMBRA REMOVIDA */
}
#cleaning-services .svc-card-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
#cleaning-services .svc-card-body {
  padding: 1rem;
  border-bottom: 3px solid #0e5eb5; /* azul LUPA */
}

/* Botões de navegação */
#cleaning-services .svc-nav {
  background: #fff;
  border: 2px solid #0e5eb5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

/* ===== Lupa Cleaning – remover sombra dos cards ===== */
#cleaning-services .svc-card,
#cleaning-services .svc-card-img {
  box-shadow: none !important;       /* ← SOMBRA REMOVIDA */
  border: 1px solid #e5e7eb;
}

#cleaning-services .svc-card:hover,
#cleaning-services .svc-card-img:hover {
  box-shadow: none !important;
  transform: translateY(0);
}
/* Remove sombra dos cards e também do contêiner do carrossel — APENAS no PAINTING */
#painting .svc-card,
#painting .svc-card-img,
#painting .svc-carousel-shell,
#painting.svc-section {
  box-shadow: none !important;
}
/* =========================================
   INSPIRATION GALLERY – Lupa Painting
   (baseado no layout tl-work + amarelo antigo)
   ========================================= */

.insp-gallery {
  /* usa o amarelo mais quente do tema antigo */
  background-color: #fff6e1; /* ou #fff8e1 se preferir ainda mais claro */
  padding: clamp(32px, 6vw, 64px) 0;
}

/* Cabeçalho da seção */
.insp-gallery .insp-head {
  max-width: 900px;
  margin: 0 auto clamp(20px, 3vw, 32px);
  text-align: center;
}

.insp-gallery .insp-head .section-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #a37200;              /* dourado queimado */
  margin-bottom: 0.5rem;
}

.insp-gallery .insp-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #3a2a00;              /* marrom/dourado forte */
}

.insp-gallery .insp-sub {
  margin: 0.3rem auto 0;
  max-width: 720px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Wrapper reaproveita a estrutura padrão do tl-work */
.insp-gallery .tl-work-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Track de fotos – em vez do fundo amarelo do deck, colocamos branco com borda e sombra suave */
.insp-gallery .tl-work-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 360px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
}

/* Slides e imagens */
.insp-gallery .tl-work-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.insp-gallery .tl-work-slide.is-active {
  opacity: 1;
}

.insp-gallery .tl-work-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

/* Botões de navegação – bolinha escura com ícone branco */
.insp-gallery .tl-w-btn {
  background: #111827;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.insp-gallery .tl-w-btn:hover {
  background: #000000;
  transform: translateY(-1px);
}

/* CTA embaixo */
.insp-gallery .insp-cta {
  max-width: 900px;
  margin: 1.8rem auto 0;
  text-align: center;
  font-size: 0.98rem;
  color: #3a2a00;
}

.insp-gallery .insp-cta a {
  color: #a37200;
  font-weight: 600;
  text-decoration: none;
}

.insp-gallery .insp-cta a:hover {
  text-decoration: underline;
}

/* Responsivo – mesmo espírito do tl-work padrão */
@media (max-width: 1024px) {
  .insp-gallery .tl-work-track {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .insp-gallery .tl-work-wrapper {
    padding-inline: 1rem;
  }

  .insp-gallery .tl-work-track {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .insp-gallery .tl-work-track {
    height: 210px;
  }
}
/* =========================================
   LUPA PAINTING – CUSTOMER VIDEO CARD (v2)
   Estilo com contraste e personalidade visual
   ========================================= */

.painting-video {
  padding: clamp(40px, 6vw, 72px) 0;
  background: #fff6e1; /* contexto geral */
}

/* CARD com DUAS cores: texto amarelo, vídeo escuro */
.pv-card {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 0;

  border-radius: 26px;
  overflow: hidden; /* importante para bordas ficarem certinhas */

  /* borda grossa para visual "premium" */
  border: 4px solid #d4a900;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(0, 0, 0, 0.08);
}

/* BLOCO ESQUERDO – TEXTO COM FUNDO AMARELO */
.pv-text {
  background: #fff6da; /* Amarelo suave diferenciado */
  padding: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pv-kicker {
  color: #946600; /* mais escuro para contraste */
}

.pv-text h2 {
  color: #0b1120;
}

.pv-body {
  color: #3a2a00; /* marrom suave */
}

/* BLOCO DE LISTA EM TONS AMARELO ESFUMAÇADO */
.pv-list li {
  color: #2a1a00;
}
.pv-list li::marker {
  color: #d4a900;
}

/* BLOCO DIREITO – VÍDEO COM FUNDO ESCURO PREMIUM */
.pv-video {
  background: #0b1120;
  display: flex;
  align-items: center;
  padding: clamp(12px, 2vw, 22px);
}

/* Wrapper do vídeo – mantém estrutura antiga */
.pv-video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background: #0b1120;
}

/* Thumbnail com brilho e textura */
.pv-video .video-thumbnail img {
  filter: brightness(0.92) contrast(1.04) saturate(1.08);
}

/* Botão play com efeito metálico */
.pv-video .yt-play {
  border-color: #f2c700;
  background: rgba(0,0,0,0.55);
  box-shadow: 0 10px 22px rgba(0,0,0,0.7);
}

.pv-video .yt-caption {
  background: linear-gradient(#d4a900, #b99400);
  color: #0b1120;
  font-weight: 700;
}
/* ===== RESPONSIVO – MOBILE ===== */
@media (max-width: 768px) {

  /* empilha os blocos */
  .pv-card {
    grid-template-columns: 1fr !important;
  }

  /* muda a ordem – vídeo primeiro */
  .pv-video {
    order: -1; /* Sobe o vídeo para cima */
  }

  /* ajusta espaçamentos para mobile */
  .pv-text {
    padding: 20px 18px;
  }

  .pv-video {
    padding: 12px;
  }

  /* dimensão do vídeo no mobile (mais alto = mais impacto) */
  .pv-video .video-wrapper {
    padding-bottom: 65%; /* ao invés de 56% para mais destaque */
  }

  /* botão de play um pouco menor */
  .pv-video .yt-play {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .pv-video .yt-caption {
    bottom: 14px;
    left: 14px;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }
}
/* ================================
   PALETA LUPA PAINTING (IMG)
   ================================ */
:root {
  --lp-yellow: #F4BB23;  /* amarelo do fundo da imagem */
  --lp-white:  #ffffff;
}

/* ================================
   HEADER – fundo amarelo / texto branco
   ================================ */
.site-header {
  background: var(--lp-yellow) !important;
  border-bottom: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 2px 4px rgba(0,0,0,.16);
}

.brand,
.brand a,
.brand span {
  color: var(--lp-white);
}

.nav-link,
.main-nav-toggle {
  color: var(--lp-white) !important;
}

.nav-link:hover,
.main-nav-toggle:hover {
  background: var(--lp-white) !important;
  color: var(--lp-yellow) !important;
}

/* caret (setinha) branca */
.caret {
  stroke: currentColor;
}

/* toggle mobile – barrinhas brancas */
.mobile-toggle {
  background: rgba(255,255,255,.08);
}
.mobile-toggle:hover {
  background: rgba(255,255,255,.18);
}
.mobile-toggle .bar {
  background: var(--lp-white) !important;
}

/* ===== drawer mobile topo/cta amarelos também ===== */
.mobile-nav-head {
  background: var(--lp-yellow);
  color: var(--lp-white);
}
.mobile-title { color: var(--lp-white); }

.mobile-phone {
  color: var(--lp-yellow);
}

/* botão “Get a Quote” dentro do mobile menu */
.mobile-cta {
  background: var(--lp-yellow) !important;
  color: var(--lp-white) !important;
}
.mobile-cta:hover {
  background: #e3aa10 !important;
}

/* ================================
   CTAs GERAIS (botões)
   ================================ */

/* Botão primário padrão */
.btn-primary,
.blog-cta-inline .btn,
.ba-cta-btn {
  background: var(--lp-yellow) !important;
  color: var(--lp-white) !important;
  border: 1px solid var(--lp-yellow) !important;
}
.btn-primary:hover,
.blog-cta-inline .btn:hover,
.ba-cta-btn:hover {
  background: #e3aa10 !important;   /* amarelo um pouco mais escuro */
}

/* Botão outline vira “outline amarelo” */
.btn-outline {
  border: 1px solid var(--lp-yellow) !important;
  background: transparent !important;
  color: var(--lp-yellow) !important;
}
.btn-outline:hover {
  background: var(--lp-yellow) !important;
  color: var(--lp-white) !important;
}

/* CTAs específicos de seções */
.svc-btn,
#addr-submit,
#gps-btn,
.tl-w-btn,
.svc-nav,
.insp-gallery .tl-w-btn {
  background: var(--lp-yellow) !important;
  color: var(--lp-white) !important;
  border: 1px solid var(--lp-yellow) !important;
}
.svc-btn:hover,
#addr-submit:hover,
#gps-btn:hover,
.tl-w-btn:hover,
.svc-nav:hover,
.insp-gallery .tl-w-btn:hover {
  background: #e3aa10 !important;
}

/* ================================
   FOOTER – fundo amarelo / texto branco
   ================================ */
.site-footer {
  background: var(--lp-yellow) !important;
  color: var(--lp-white) !important;
  border-top: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 -2px 4px rgba(0,0,0,.18);
}

.f-title,
.f-text,
.f-bottom,
.f-bottom a {
  color: var(--lp-white) !important;
}

.f-links a {
  color: var(--lp-white) !important;
}
.f-links a:hover {
  background: var(--lp-white) !important;
  color: var(--lp-yellow) !important;
}

/* ícones sociais – círculo branco, símbolo amarelo */
.f-ico {
  background: var(--lp-white) !important;
  box-shadow: none;
}
.f-ico svg {
  fill: var(--lp-yellow) !important;
}
.f-ico img {
  filter: brightness(1) !important;
}

/* CTA no footer */
.site-footer .btn.btn-primary {
  background: var(--lp-white) !important;
  color: var(--lp-yellow) !important;
  border-color: var(--lp-white) !important;
}
.site-footer .btn.btn-primary:hover {
  background: rgba(255,255,255,.9) !important;
}

/* linha divisória do footer mais suave */
.f-hr {
  background: rgba(255,255,255,.35);
}
/* ====================================
   CALL BUTTON NO HEADER – caixa branca
   ==================================== */

/* Versão desktop (header-cta) */
.header-cta .btn.btn-outline {
  background: transparent !important;      /* sem fundo */
  color: #ffffff !important;               /* texto branco */
  border: 2px solid #ffffff !important;    /* caixa branca ao redor */
  border-radius: 999px;
}

/* Hover: inverte e mantém contraste */
.header-cta .btn.btn-outline:hover {
  background: #ffffff !important;
  color: var(--lp-yellow) !important;      /* amarelo da barra */
  border-color: #ffffff !important;
  transform: translateY(-2px);
}
/* ===== PADRONIZA OS ÍCONES, SOMENTE BORDAS ===== */
.site-footer .f-social a img,
.site-footer .f-social a svg {
  border-radius: 16px !important;   /* igual a maioria */
}
/* Só os dois que estavam quadrados */
.site-footer .f-social a img[src*="bark"],
.site-footer .f-social a img[src*="nextdoor"] {
  border-radius: 16px !important;
}
.site-footer .f-social a:hover img {
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
