/* =============================================
   LINCOLN TSUYAMA ENGENHARIA
   Referência: arquitetomarcostadeu.com
   Clean · Minimalista · Branco · Profissional
   ============================================= */

:root {
  --branco:    #FFFFFF;
  --off:       #F8F8F6;
  --preto:     #111111;
  --cinza:     #555555;
  --cinza-lt:  #888888;
  --borda:     #DDDDDD;
  --vermelho:  #CC0000;
  --vermelho-hover: #e80000;
  --vermelho-glow:  rgba(204,0,0,0.14);
  --font-h:    'Raleway', sans-serif;
  --font-b:    'Lato', sans-serif;
  --t:         0.3s ease;
  --t-expo:    cubic-bezier(0.16, 1, 0.3, 1);

  /* Espaçamentos consistentes */
  --sp-xs:  24px;
  --sp-sm:  40px;
  --sp-md:  72px;
  --sp-lg:  96px;

  /* Border radius */
  --radius:    6px;
  --radius-sm: 4px;

  /* Shadow system */
  --shadow-sm:        0 0 0 1px rgba(0,0,0,0.05), 0 1px 8px rgba(0,0,0,0.06);
  --shadow-card:      0 0 0 1px rgba(0,0,0,0.06), 0 2px 20px rgba(0,0,0,0.08), 0 0 40px rgba(0,0,0,0.03);
  --shadow-card-hover:0 0 0 1px rgba(0,0,0,0.10), 0 8px 40px rgba(0,0,0,0.13), 0 0 60px rgba(204,0,0,0.07);
  --shadow-btn:       0 0 0 1px rgba(204,0,0,0.30), 0 4px 14px rgba(204,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.18);
  --shadow-btn-hover: 0 0 0 1px rgba(204,0,0,0.48), 0 8px 28px rgba(204,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.22);
}

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(1deg); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(-0.8deg); }
}
@keyframes float-alt {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50%       { transform: translateY(-22px) rotate(1.2deg) scale(1.02); }
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes spotlight-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Acessibilidade — sem animação se preferido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .slide { transition: none !important; }
  .bg-blob { display: none !important; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background:
    radial-gradient(ellipse 120% 50% at 75% -10%, rgba(204,0,0,0.042) 0%, transparent 55%),
    radial-gradient(ellipse 80% 40% at 15% 90%, rgba(180,0,0,0.028) 0%, transparent 50%),
    var(--branco);
  color: var(--preto);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* =============================================
   BLOBS DE FUNDO (LUZ AMBIENTE)
   ============================================= */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
  mix-blend-mode: multiply;
}
.bg-blob-1 {
  width: 900px; height: 700px;
  top: -250px; right: -200px;
  background: radial-gradient(ellipse, rgba(204,0,0,0.07) 0%, transparent 65%);
  animation: float 11s ease-in-out infinite;
}
.bg-blob-2 {
  width: 700px; height: 550px;
  top: 35%; left: -200px;
  background: radial-gradient(ellipse, rgba(180,10,10,0.05) 0%, transparent 60%);
  animation: float-slow 14s ease-in-out infinite;
  animation-delay: -5s;
}
.bg-blob-3 {
  width: 600px; height: 450px;
  bottom: 15%; right: 5%;
  background: radial-gradient(ellipse, rgba(204,0,0,0.04) 0%, transparent 60%);
  animation: float-alt 10s ease-in-out infinite;
  animation-delay: -8s;
}

/* Garante que todo conteúdo fique acima dos blobs */
header, section, footer {
  position: relative;
  z-index: 1;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* Linha divisória */
.linha {
  width: 100%;
  height: 1px;
  background: var(--borda);
  margin: 20px 0;
}
.linha-curta {
  width: 48px;
  height: 2px;
  background: var(--vermelho);
  margin: 20px 0;
}

/* Título de seção */
.sec-title {
  font-family: var(--font-h);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: 4px;
  text-align: center;
  background: linear-gradient(180deg, #111111 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 20px 0;
}

/* Tag label */
.tag-label {
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--vermelho);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 300ms var(--t-expo), background 300ms var(--t-expo);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 4px 24px rgba(0,0,0,0.08), 0 0 48px rgba(204,0,0,0.04);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 78px; width: auto; object-fit: contain; }

.logo-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.logo-txt strong {
  display: block;
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--preto);
  text-transform: uppercase;
  line-height: 1;
}
.logo-txt small {
  display: block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 7px;
  color: var(--cinza-lt);
  text-transform: lowercase;
  text-align: center;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--cinza);
  transition: color 200ms var(--t-expo);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--vermelho);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 250ms var(--t-expo);
}
.nav-links a:hover { color: var(--preto); }
.nav-links a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span { width: 24px; height: 1.5px; background: var(--preto); display: block; transition: all var(--t); }

/* =============================================
   HERO SLIDER — FULLWIDTH
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  margin-top: 80px;
}
.slider { position: absolute; inset: 0; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.hero-text {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: #fff;
  white-space: nowrap;
}
.hero-sub {
  font-family: var(--font-b);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.hero-text h1 {
  font-family: var(--font-h);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: 8px;
  line-height: 1.2;
}
.hero-text h1 span { font-weight: 700; color: #fff; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.sdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: background var(--t);
}
.sdot.active { background: #fff; }

.slider-prev, .slider-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
  line-height: 1;
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,0.3); }

/* =============================================
   APRESENTAÇÃO
   ============================================= */
.apresentacao {
  padding: var(--sp-md) 0;
  background: rgba(255,255,255,0.94);
}
.apresentacao-txt {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.9;
  color: var(--cinza);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 0;
}

/* =============================================
   PROJETOS EXCLUSIVOS (split)
   ============================================= */
.exclusivos {
  background: var(--off);
  padding: 0;
}
.exclusivos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.exclusivos-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
}
.exclusivos-txt h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: 4px;
  background: linear-gradient(180deg, #111111 0%, #2a2a2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}
.exclusivos-txt p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--cinza);
  margin-bottom: 32px;
  max-width: 440px;
}
.btn-outline {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--preto);
  border: 1px solid rgba(17,17,17,0.5);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: background 220ms var(--t-expo), color 220ms var(--t-expo),
              border-color 220ms var(--t-expo), box-shadow 220ms var(--t-expo),
              transform 220ms var(--t-expo);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 500ms var(--t-expo);
}
.btn-outline:hover {
  background: var(--vermelho);
  color: var(--branco);
  border-color: var(--vermelho);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}
.btn-outline:hover::after { transform: translateX(100%); }
.btn-outline:active { transform: translateY(0) scale(0.98); }

.exclusivos-foto { overflow: hidden; }
.exclusivos-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.exclusivos-foto:hover img { transform: scale(1.04); }

/* =============================================
   PORTFÓLIO GRID 5 CARDS
   ============================================= */
.portfolio-sec { width: 100%; }
.portfolio-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 480px;
}
.pgrid-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}
.pgrid-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.pgrid-card:hover .pgrid-img { transform: scale(1.08); }
.pgrid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  transition: background var(--t);
}
.pgrid-card:hover .pgrid-overlay { background: linear-gradient(to top, rgba(204,0,0,0.80) 0%, rgba(100,0,0,0.3) 60%, transparent 100%); }
.pgrid-overlay span {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

/* =============================================
   VALORES / SERVIÇOS
   ============================================= */
.valores {
  padding: var(--sp-lg) 0;
  background: rgba(255,255,255,0.94);
}
.valores-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.valores-esq .sec-title { text-align: left; padding: 20px 0; }
.valores-esq p { font-size: 15px; color: var(--cinza); line-height: 1.8; margin-top: 12px; }

.valores-lista { display: flex; flex-direction: column; }
.valores-lista li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--borda);
}
.valores-lista li:first-child { border-top: 1px solid var(--borda); }
.val-num {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--vermelho);
  flex-shrink: 0;
  width: 24px;
  margin-top: 3px;
}
.valores-lista h4 {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--preto);
  margin-bottom: 6px;
}
.valores-lista p { font-size: 13px; color: var(--cinza-lt); line-height: 1.7; }

/* =============================================
   FORMULÁRIO ORÇAMENTO
   ============================================= */
.orcamento {
  padding: var(--sp-md) 0;
  background: var(--off);
}
.orcamento-sub {
  text-align: center;
  font-size: 15px;
  color: var(--cinza);
  margin: 16px 0 40px;
}
.orc-form { max-width: 860px; margin: 0 auto; }
.orc-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.orc-field { display: flex; flex-direction: column; gap: 6px; }
.orc-full { margin-bottom: 20px; }
.orc-field label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cinza);
  text-transform: uppercase;
}
.orc-field input,
.orc-field select,
.orc-field textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--borda);
  background: transparent;
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--preto);
  outline: none;
  transition: border-color var(--t);
  resize: vertical;
}
.orc-field input::placeholder,
.orc-field textarea::placeholder { color: var(--cinza-lt); }
.orc-field input:focus,
.orc-field select:focus,
.orc-field textarea:focus {
  border-bottom-color: var(--vermelho);
  box-shadow: 0 2px 0 0 rgba(204,0,0,0.2);
  outline: none;
}

.orc-submit { text-align: center; margin-top: 32px; }
.orc-submit button {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--branco);
  background: var(--vermelho);
  border: none;
  padding: 16px 56px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: background 220ms var(--t-expo), box-shadow 220ms var(--t-expo), transform 220ms var(--t-expo);
  position: relative;
  overflow: hidden;
}
.orc-submit button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 500ms var(--t-expo);
}
.orc-submit button:hover {
  background: var(--vermelho-hover);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}
.orc-submit button:hover::after { transform: translateX(100%); }
.orc-submit button:active { transform: translateY(0) scale(0.98); }

/* =============================================
   DEPOIMENTOS
   ============================================= */
.depoimentos {
  padding: var(--sp-md) 0;
  background: rgba(255,255,255,0.94);
}
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}
.dep-card {
  padding: 28px 24px 28px 0;
  border-top: 2px solid var(--borda);
  transition: border-top-color 250ms var(--t-expo), transform 250ms var(--t-expo);
}
.dep-card:hover {
  border-top-color: var(--vermelho);
  transform: translateY(-3px);
}
.dep-stars {
  font-size: 16px;
  color: var(--vermelho);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.dep-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--cinza);
  font-style: italic;
  margin-bottom: 20px;
}
.dep-card strong {
  display: block;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--preto);
}
.dep-card span { font-size: 11px; color: var(--cinza-lt); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--off);
  border-top: 1px solid var(--borda);
  padding: 56px 0 0;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  border-bottom: 1px solid var(--borda);
}
.footer-logo { height: 52px; width: auto; margin-bottom: 20px; }
.footer-logo-txt {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.4;
  color: var(--preto);
}
.footer-logo-txt small { display: block; font-size: 9px; letter-spacing: 4px; color: var(--cinza-lt); font-weight: 400; }
.footer-col p { font-size: 14px; color: var(--cinza); line-height: 1.8; }
.footer-col a { color: var(--cinza); transition: color var(--t); }
.footer-col a:hover { color: var(--vermelho); }
.footer-end-title {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--preto);
  margin-bottom: 10px;
}
.footer-bottom {
  text-align: center;
  padding: 18px 32px;
}
.footer-bottom p { font-size: 11px; color: var(--cinza-lt); letter-spacing: 1px; }
.footer-bottom a { color: var(--cinza-lt); transition: color var(--t); }
.footer-bottom a:hover { color: var(--vermelho); }

/* =============================================
   STATS COUNTER
   ============================================= */
.stats-bar {
  background: var(--preto);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 800;
  color: var(--branco);
  line-height: 1;
  display: inline-block;
  text-shadow: 0 0 40px rgba(204,0,0,0.4), 0 0 80px rgba(204,0,0,0.15);
}
.stat-plus {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  color: var(--vermelho);
  vertical-align: super;
  line-height: 1;
}
.stat-item p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* =============================================
   NAV ATIVO
   ============================================= */
.nav-links a.active {
  color: var(--vermelho) !important;
}
.nav-links a.active::after { transform: scaleX(1); background: var(--vermelho); }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  width: 85vw;
  height: 80vh;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  color: #fff; font-size: 40px;
  cursor: pointer; line-height: 1;
  opacity: 0.7; transition: opacity var(--t);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 32px;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background var(--t);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-caption {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
.pgrid-card { cursor: zoom-in; }

/* =============================================
   BANNER LGPD
   ============================================= */
.lgpd-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--preto);
  border-top: 2px solid var(--vermelho);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.lgpd-banner.show { transform: translateY(0); }
.lgpd-txt { flex: 1; }
.lgpd-txt strong { display: block; color: #fff; font-size: 14px; margin-bottom: 4px; }
.lgpd-txt p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.lgpd-txt a { color: var(--vermelho); text-decoration: underline; }
.lgpd-btns { display: flex; gap: 12px; flex-shrink: 0; }
.lgpd-aceitar {
  background: var(--vermelho); color: #fff;
  border: none; padding: 10px 24px;
  font-family: var(--font-h); font-size: 12px;
  font-weight: 700; letter-spacing: 1px;
  cursor: pointer; border-radius: 2px;
  transition: background var(--t);
}
.lgpd-aceitar:hover { background: var(--vermelho-hover, #e00); }
.lgpd-recusar {
  background: transparent; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
  font-family: var(--font-h); font-size: 12px;
  font-weight: 700; letter-spacing: 1px;
  cursor: pointer; border-radius: 2px;
  transition: all var(--t);
}
.lgpd-recusar:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* =============================================
   ANIMAÇÕES MELHORADAS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--t-expo), transform 0.65s var(--t-expo);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

/* =============================================
   COMO TRABALHAMOS
   ============================================= */
.como-trabalhamos {
  padding: var(--sp-md) 0;
  background: rgba(255,255,255,0.94);
}
.ct-intro {
  text-align: center;
  font-size: 15px;
  color: var(--cinza);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.ct-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 48px;
}
.ct-step {
  padding: 40px 32px;
  border-right: 1px solid var(--borda);
  border-top: 2px solid transparent;
  transition: border-top-color 250ms var(--t-expo), background 250ms var(--t-expo), transform 250ms var(--t-expo);
  position: relative;
  overflow: hidden;
}
.ct-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(204,0,0,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.ct-step:last-child { border-right: none; }
.ct-step:hover { border-top-color: var(--vermelho); }
.ct-step:hover::before { opacity: 1; }
.ct-num {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--vermelho);
  margin-bottom: 20px;
  display: block;
}
.ct-step h3 {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--preto);
  margin-bottom: 12px;
}
.ct-step p { font-size: 14px; color: var(--cinza); line-height: 1.8; }
.ct-step p strong { color: var(--preto); }
.ct-cta { text-align: center; padding-top: 8px; }

/* =============================================
   BADGES CREA
   ============================================= */
.crea-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.crea-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.85);
  box-shadow: var(--shadow-card);
  transition: border-color 250ms var(--t-expo), box-shadow 250ms var(--t-expo), transform 250ms var(--t-expo);
  position: relative;
  overflow: hidden;
}
.crea-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(204,0,0,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.crea-badge:hover {
  border-color: rgba(204,0,0,0.25);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.crea-badge:hover::before { opacity: 1; }
.crea-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--vermelho); }
.crea-badge strong {
  display: block;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--preto);
  letter-spacing: 0.5px;
}
.crea-badge span { font-size: 12px; color: var(--cinza-lt); }

/* =============================================
   CASES DE SUCESSO
   ============================================= */
.cases {
  padding: var(--sp-md) 0;
  background: var(--off);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.case-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color 250ms var(--t-expo), box-shadow 250ms var(--t-expo), transform 250ms var(--t-expo);
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(204,0,0,0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.case-card:hover {
  border-color: rgba(204,0,0,0.18);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.case-card:hover::before { opacity: 1; }
.case-tipo {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vermelho);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--borda);
}
.case-etapas { display: flex; flex-direction: column; gap: 20px; }
.case-etapa { padding-left: 16px; border-left: 2px solid var(--borda); }
.case-etapa--resultado { border-left-color: var(--vermelho); }
.case-label {
  display: block;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cinza-lt);
  margin-bottom: 6px;
}
.case-label--resultado { color: var(--vermelho); }
.case-etapa p { font-size: 13px; color: var(--cinza); line-height: 1.75; }

/* =============================================
   MAPA
   ============================================= */
.mapa-wrap {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--borda);
}
.mapa-legenda {
  background: var(--off);
  text-align: center;
  padding: 10px;
  font-size: 13px;
  color: var(--cinza);
  border-top: 1px solid var(--borda);
  margin: 0;
}

@media (max-width: 960px) {
  .ct-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-step:nth-child(2) { border-right: none; }
  .ct-step:nth-child(3) { border-top: 1px solid var(--borda); }
  .ct-step:nth-child(4) { border-top: 1px solid var(--borda); border-right: none; }
  .crea-badges { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .ct-grid { grid-template-columns: 1fr; }
  .ct-step { border-right: none; border-top: 1px solid var(--borda); }
  .ct-step:first-child { border-top: none; }
  .crea-badges { grid-template-columns: 1fr; }
}

/* =============================================
   PARCEIROS
   ============================================= */
.parceiros { padding: 40px 0; background: rgba(255,255,255,0.94); }
.parceiros-titulo {
  text-align: center;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cinza-lt);
  margin-bottom: 32px;
}
.parceiros-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.parceiro-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid var(--borda);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cinza-lt);
  line-height: 1.5;
  transition: color var(--t);
}
.parceiro-item:last-child { border-right: none; }
.parceiro-item:hover { color: var(--preto); }
.parceiro-item strong { display: block; font-size: 14px; font-family: var(--font-h); color: var(--cinza); }
.parceiros-aviso { text-align: center; font-size: 11px; color: var(--borda); margin-top: 12px; font-style: italic; }

/* =============================================
   FAQ
   ============================================= */
.faq { padding: var(--sp-lg) 0; background: var(--off); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.faq-esq p { font-size: 15px; color: var(--cinza); line-height: 1.8; margin-top: 16px; }
.faq-dir { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--borda); }
.faq-item:first-child { border-top: 1px solid var(--borda); }
.faq-pergunta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--preto);
  letter-spacing: 0.3px;
  text-align: left;
  gap: 16px;
  transition: color var(--t);
}
.faq-pergunta:hover { color: var(--vermelho); }
.faq-icone {
  font-size: 22px;
  font-weight: 300;
  color: var(--vermelho);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t);
}
.faq-item.open .faq-icone { transform: rotate(45deg); }
.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-resposta { max-height: 300px; padding-bottom: 20px; }
.faq-resposta p { font-size: 14px; color: var(--cinza); line-height: 1.8; }

/* =============================================
   BLOG
   ============================================= */
.blog { padding: var(--sp-lg) 0; background: rgba(255,255,255,0.94); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.blog-card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-card);
  transition: box-shadow 250ms var(--t-expo), transform 250ms var(--t-expo), border-color 250ms var(--t-expo);
  position: relative;
}
.blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
  border-color: rgba(204,0,0,0.15);
}
.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-content { padding: 24px; }
.blog-tag {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vermelho);
  display: block;
  margin-bottom: 10px;
}
.blog-content h3 {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--preto);
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-content h3 a { color: inherit; transition: color var(--t); }
.blog-content h3 a:hover { color: var(--vermelho); }
.blog-content p { font-size: 13px; color: var(--cinza); line-height: 1.7; margin-bottom: 16px; }
.blog-link {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vermelho);
  transition: letter-spacing var(--t);
}
.blog-link:hover { letter-spacing: 3px; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-inner h3 {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.newsletter-inner p { font-size: 14px; color: rgba(255,255,255,0.55); }
.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--branco);
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 28px;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px rgba(37,211,102,0.3), 0 4px 16px rgba(37,211,102,0.25);
  transition: background 220ms var(--t-expo), transform 220ms var(--t-expo), box-shadow 220ms var(--t-expo);
  flex-shrink: 0;
}
.newsletter-btn:hover {
  background: #1ebe5a;
  box-shadow: 0 0 0 1px rgba(37,211,102,0.5), 0 8px 24px rgba(37,211,102,0.35);
  transform: translateY(-3px);
}

/* Responsive novas seções */
@media (max-width: 960px) {
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; }
  .parceiro-item { min-width: 50%; border-bottom: 1px solid var(--borda); }
}

@media (max-width: 620px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .lgpd-banner { flex-direction: column; gap: 16px; padding: 20px 20px 90px; }
  .lgpd-btns { width: 100%; }
  .lgpd-aceitar, .lgpd-recusar { flex: 1; text-align: center; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-img { width: 95vw; height: 60vh; }
}

/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 0 0 1px rgba(37,211,102,0.3), 0 4px 16px rgba(37,211,102,0.4), 0 0 32px rgba(37,211,102,0.15);
  transition: transform 250ms var(--t-expo), box-shadow 250ms var(--t-expo);
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 0 0 1px rgba(37,211,102,0.5), 0 8px 24px rgba(37,211,102,0.5), 0 0 48px rgba(37,211,102,0.2);
}
.wa-float svg { width: 28px; height: 28px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    padding: 36px 32px;
    gap: 28px;
    border-top: 1px solid rgba(0,0,0,0.06);
    z-index: 99;
    animation: menu-slide-in 280ms var(--t-expo);
  }
  @keyframes menu-slide-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open a { font-size: 16px; }
  .credencial-item { flex: 0 0 20%; min-width: 0; }
  .exclusivos-inner { grid-template-columns: 1fr; }
  .exclusivos-foto { height: 340px; }
  .exclusivos-txt { padding: 48px 32px; }
  .portfolio-grid-5 { grid-template-columns: repeat(3, 1fr); height: 360px; }
  .portfolio-grid-5 .pgrid-card:nth-child(4),
  .portfolio-grid-5 .pgrid-card:nth-child(5) { display: none; }
  .valores-inner { grid-template-columns: 1fr; gap: 40px; }
  .dep-grid { grid-template-columns: 1fr; gap: 24px; }
  .orc-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero-text { white-space: normal; text-align: center; width: 90%; }
  .portfolio-grid-5 { grid-template-columns: repeat(2, 1fr); height: 320px; }
  .portfolio-grid-5 .pgrid-card:nth-child(4) { display: block; }
  .portfolio-grid-5 .pgrid-card:nth-child(5) { display: none; }
  .pgrid-overlay { opacity: 1; }
  .exclusivos-txt { padding: 40px 24px; }
}

/* =============================================
   HERO — PARALAXE (classe adicionada via JS)
   ============================================= */
.hero-parallax {
  will-change: transform, opacity;
  transition: none;
}

/* =============================================
   NEWSLETTER — REFINADO
   ============================================= */
.newsletter {
  background: linear-gradient(135deg, #111111 0%, #1a0000 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(204,0,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* =============================================
   FOOTER — REFINADO
   ============================================= */
.footer {
  background: linear-gradient(to bottom, rgba(248,248,246,0.96), rgba(240,240,238,0.98));
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* =============================================
   STATS BAR — REFINADO
   ============================================= */
.stats-bar {
  background: linear-gradient(135deg, #111111 0%, #1a0000 50%, #111111 100%);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 200px;
  background: radial-gradient(ellipse, rgba(204,0,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.stat-item {
  transition: transform 250ms var(--t-expo);
}
.stat-item:hover { transform: translateY(-3px); }

/* =============================================
   FORMA HIGHLIGHT — linha divisória com gradiente
   ============================================= */
.linha-curta {
  position: relative;
  overflow: hidden;
}
.linha-curta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--vermelho), rgba(204,0,0,0.4), var(--vermelho));
  background-size: 200%;
  animation: shimmer 2.5s linear infinite;
}

/* =============================================
   VALORES LISTA — hover refinado
   ============================================= */
.valores-lista li {
  transition: padding-left 250ms var(--t-expo), background 250ms var(--t-expo);
  border-radius: var(--radius-sm);
}
.valores-lista li:hover {
  padding-left: 8px;
  background: rgba(204,0,0,0.02);
}

/* =============================================
   FAQ — hover refinado
   ============================================= */
.faq-pergunta {
  transition: color 200ms var(--t-expo);
}
.faq-item.open .faq-pergunta { color: var(--vermelho); }

/* =============================================
   PARCEIROS — hover refinado
   ============================================= */
.parceiro-item {
  transition: color 200ms var(--t-expo), background 200ms var(--t-expo);
  border-radius: var(--radius-sm);
}
.parceiro-item:hover {
  color: var(--preto);
  background: rgba(204,0,0,0.03);
}

/* =============================================
   FOCUS RING — acessibilidade com acento
   ============================================= */
:focus-visible {
  outline: 2px solid rgba(204,0,0,0.6);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* =============================================
   BLOG LINK — hover mais preciso
   ============================================= */
.blog-link {
  transition: letter-spacing 250ms var(--t-expo), color 200ms var(--t-expo);
}
.blog-link:hover { letter-spacing: 3px; }

/* =============================================
   SLIDER CONTROLS — refinados
   ============================================= */
.slider-prev, .slider-next {
  transition: background 200ms var(--t-expo), transform 200ms var(--t-expo);
}
.slider-prev:hover, .slider-next:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-50%) scale(1.08);
}


/* =============================================
   HERO — BOTÕES CTA
   ============================================= */
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-btn {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background 220ms var(--t-expo), color 220ms var(--t-expo),
              box-shadow 220ms var(--t-expo), transform 220ms var(--t-expo);
  white-space: nowrap;
}
.hero-btn--primary {
  background: var(--vermelho);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.hero-btn--primary:hover {
  background: var(--vermelho-hover);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
  color: #fff;
}
.hero-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.hero-btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  color: #fff;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  white-space: normal;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.hero-trust-item--art {
  color: #fff;
  background: rgba(180,0,0,0.82);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,100,100,0.35);
  font-weight: 700;
  letter-spacing: 2px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(204,0,0,0.4);
}
.hero-trust-sep { color: rgba(255,255,255,0.22); }

/* =============================================
   APRESENTAÇÃO — LAYOUT COM FOTO
   ============================================= */
.apresentacao-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 48px;
}
.apresentacao-conteudo .sec-title {
  text-align: left;
}
.apresentacao-crea {
  font-size: 13px;
  color: var(--cinza-lt);
  line-height: 1.6;
}
.apresentacao-crea strong { color: var(--preto); }
.apresentacao-crea a { color: var(--vermelho); transition: opacity 200ms; }
.apresentacao-crea a:hover { opacity: 0.75; }

.foto-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-card);
}
.foto-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.foto-overlay-text {
  display: none;
}
.foto-placeholder.foto-sem-imagem img {
  display: none;
}
.foto-placeholder.foto-sem-imagem .foto-overlay-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.02) 0px,
    rgba(0,0,0,0.02) 2px,
    transparent 2px,
    transparent 10px
  );
}
.foto-overlay-text span { font-size: 40px; opacity: 0.4; }
.foto-overlay-text p {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  color: var(--cinza-lt);
  text-transform: uppercase;
}
.foto-overlay-text small {
  font-size: 10px;
  color: var(--borda);
  font-family: monospace;
  letter-spacing: 0;
}

@media (max-width: 960px) {
  .apresentacao-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .foto-placeholder { max-width: 280px; margin: 0 auto; }
}

/* =============================================
   FORMULÁRIO — WHATSAPP ALTERNATIVO
   ============================================= */
.orc-wa-alt {
  margin-top: 16px;
  font-size: 13px;
  color: var(--cinza-lt);
  text-align: center;
}
.orc-wa-alt a {
  color: var(--vermelho);
  font-weight: 600;
  transition: opacity 200ms;
}
.orc-wa-alt a:hover { opacity: 0.75; }

/* =============================================
   CREDENCIAIS (substituiu parceiros)
   ============================================= */
.credenciais { padding: 48px 0; background: rgba(248,248,246,0.96); }
.credenciais-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 24px 0;
}
.credencial-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--borda);
  transition: background 200ms var(--t-expo);
  border-radius: var(--radius-sm);
}
.credencial-item:last-child { border-right: none; }
.credencial-item:hover { background: rgba(204,0,0,0.03); }
.credencial-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: rgba(204,0,0,0.07);
  border-radius: 10px;
  color: var(--vermelho);
}
.credencial-item strong {
  display: block;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--preto);
  margin-bottom: 6px;
}
.credencial-item small {
  display: block;
  font-size: 11px;
  color: var(--cinza-lt);
  line-height: 1.5;
}
@media (max-width: 620px) {
  .credencial-item { min-width: 50%; border-bottom: 1px solid var(--borda); }
  .credencial-item:nth-child(2n) { border-right: none; }
}

/* =============================================
   DEPOIMENTOS — LINK GOOGLE
   ============================================= */
.dep-google-link {
  text-align: center;
  margin-bottom: 32px;
}
.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cinza);
  border: 1px solid var(--borda);
  padding: 10px 20px;
  border-radius: 100px;
  transition: border-color 200ms var(--t-expo), color 200ms var(--t-expo), box-shadow 200ms var(--t-expo);
}
.google-review-link:hover {
  border-color: rgba(204,0,0,0.3);
  color: var(--preto);
  box-shadow: var(--shadow-sm);
}
.google-stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 1px;
}

/* =============================================
   FOOTER — 3 COLUNAS + CTA
   ============================================= */
.footer-col--cta { display: flex; flex-direction: column; align-items: flex-start; }
.footer-cta-btn {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  background: var(--vermelho);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  transition: background 220ms var(--t-expo), box-shadow 220ms var(--t-expo), transform 220ms var(--t-expo);
}
.footer-cta-btn:hover {
  background: var(--vermelho-hover);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
  color: #fff;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cinza);
  font-size: 13px;
  transition: color 200ms var(--t-expo);
}
.footer-social-link:hover { color: var(--vermelho); }
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col--cta { grid-column: 1 / -1; border-top: 1px solid var(--borda); padding-top: 32px; }
}
@media (max-width: 620px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-col--cta { border-top: 1px solid var(--borda); }
}

/* =============================================
   SLIDER — BOTÃO PAUSA
   ============================================= */
.slider-pause {
  position: absolute;
  top: 18px; right: 72px;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 11px;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms var(--t-expo);
  line-height: 1;
  letter-spacing: -1px;
  padding-left: 1px;
}
.slider-pause:hover { background: rgba(255,255,255,0.25); }
@media (max-width: 620px) { .slider-pause { display: none; } }

/* =============================================
   SEÇÃO VÍDEO
   ============================================= */
.video-sec {
  padding: var(--sp-lg) 0;
  background: rgba(248,248,246,0.96);
}
.video-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/9;
  background: #111;
}
.video-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 2px,
    rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 12px
  );
}
.video-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,0.6);
}
.video-play-icon {
  font-size: 56px;
  margin-bottom: 16px;
  opacity: 0.4;
}
.video-placeholder-inner p {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.video-placeholder-inner small {
  font-size: 11px;
  opacity: 0.5;
  font-family: monospace;
}

/* =============================================
   BARRA WHATSAPP MOBILE
   ============================================= */
.mobile-wa-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 350ms var(--t-expo);
}
.mobile-wa-bar.show { transform: translateY(0); }
.mobile-wa-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 20px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(37,211,102,0.3);
}
@media (max-width: 768px) {
  .mobile-wa-bar { display: block; }
  /* afastar o wa-float do botão fixo mobile */
  .wa-float { bottom: 80px; }
  /* dar espaço na LGPD banner */
  .lgpd-banner { padding-bottom: calc(20px + 60px); }
}

/* =============================================
   PÁGINAS DE SERVIÇO
   ============================================= */
.servico-hero .slider-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.65) 100%
  );
}
.servico-link {
  color: var(--vermelho);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}
.servico-link:hover {
  color: var(--vermelho-hover);
  border-bottom-color: var(--vermelho-hover);
}
