/* ============================================================
   JS Consultoria em Serviços de Alimentação — Folha de Estilos
   Personalize as variáveis abaixo para alterar toda a paleta
   ============================================================ */

:root {
  --cor-escura-1: #35201D;
  --cor-escura-2: #4E2F2A;
  --cor-escura-3: #6B403B;
  --cor-media-1: #875327;
  --cor-dourada: #C6813C;
  --cor-clara: #F79E4D;
  --branco-off: #FAF7F4;
  --texto-claro: #FDF8F3;
  --sombra: 0 4px 20px rgba(53, 32, 29, 0.12);
  --sombra-hover: 0 8px 32px rgba(53, 32, 29, 0.22);
  --radius: 12px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--branco-off);
  color: var(--cor-escura-1);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

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

/* ── UTILITÁRIOS ─────────────────────────────────────────── */
.container { width: 90%; max-width: 1160px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cor-dourada);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  color: var(--cor-escura-1);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--cor-escura-3);
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.btn-primary {
  background: var(--cor-dourada);
  color: #fff;
}
.btn-primary:hover {
  background: var(--cor-media-1);
  transform: translateY(-2px);
  box-shadow: var(--sombra);
}

.btn-outline {
  background: transparent;
  border-color: var(--cor-dourada);
  color: var(--cor-dourada);
}
.btn-outline:hover {
  background: var(--cor-dourada);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition),
              box-shadow var(--transition);
}

#navbar.scrolled {
  background: var(--cor-escura-1);
  padding: .75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--cor-escura-1);
  transition: color var(--transition);
}

#navbar.scrolled .nav-logo { color: var(--texto-claro); }

.logo-badge {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cor-dourada);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Navbar topo (fundo claro): logo original marrom+preto */
.logo-claro  { display: block; }
.logo-escuro { display: none;  }

/* Navbar ao rolar (fundo escuro): logo marrom+branco */
#navbar.scrolled .logo-claro  { display: none;  }
#navbar.scrolled .logo-escuro { display: block; }

footer .logo-img { height: 116px; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  line-height: 1.25;
  max-width: 180px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--cor-escura-2);
  font-weight: 600;
  font-size: .9rem;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--cor-dourada);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--cor-dourada); }
.nav-links a:hover::after { width: 100%; }

/* Após rolar: texto claro sobre fundo escuro */
#navbar.scrolled .nav-links a { color: rgba(253,248,243,.85); }
#navbar.scrolled .nav-links a:hover { color: var(--cor-clara); }

/* Hambúrguer */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cor-escura-1);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
#navbar.scrolled .nav-toggle span { background: var(--texto-claro); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
#inicio {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  background: var(--branco-off);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Overlay aplicado apenas quando há imagem de fundo definida via JS */
#inicio.tem-imagem::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(53,32,29,.88) 0%,
    rgba(78,47,42,.78) 55%,
    rgba(135,83,39,.60) 100%);
}

/* padrão decorativo */
#inicio::after {
  content: '';
  position: absolute;
  right: -120px; bottom: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,129,60,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  /* padding-top = altura da navbar (~120px) + espaço confortável */
  padding: 220px 1rem 80px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(198,129,60,.1);
  color: var(--cor-media-1);
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hero-tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cor-dourada);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

#inicio.tem-imagem .hero-tag {
  background: rgba(198,129,60,.2);
  color: var(--cor-clara);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--cor-escura-1);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-title span { color: var(--cor-dourada); }

#inicio.tem-imagem .hero-title { color: var(--texto-claro); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--cor-escura-3);
  margin-bottom: 2.5rem;
  max-width: 620px;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
}

#inicio.tem-imagem .hero-sub { color: rgba(253,248,243,.85); }

/* Botão ghost: ajusta para fundo claro */
.hero-actions .btn-ghost {
  border-color: var(--cor-dourada);
  color: var(--cor-media-1);
}
.hero-actions .btn-ghost:hover {
  background: var(--cor-dourada);
  color: #fff;
}
#inicio.tem-imagem .hero-actions .btn-ghost {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
#inicio.tem-imagem .hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── SOBRE ───────────────────────────────────────────────── */
#sobre {
  padding: 6rem 0;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.foto-wrapper {
  position: relative;
  overflow: visible;
  /* Centraliza o placeholder dentro da célula do grid */
  display: flex;
  justify-content: center;
  /* z-index maior que sobre-texto para badge ficar na frente */
  z-index: 2;
}

/* Ancora o badge relativo à foto */
.foto-anchor {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.foto-placeholder {
  position: relative;
  width: 520px;
  height: 640px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cor-escura-2), var(--cor-media-1));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  overflow: hidden;
  box-shadow: var(--sombra);
}

.foto-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.foto-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--cor-dourada);
  color: #fff;
  padding: .9rem 1.3rem;
  border-radius: var(--radius);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(53,32,29,.3);
  line-height: 1.2;
  z-index: 10;
  white-space: nowrap;
}
.foto-badge small { display: block; font-family: 'Lato', sans-serif; font-size: .75rem; font-weight: 400; opacity: .9; }

.sobre-texto { position: relative; z-index: 1; }
.sobre-texto .section-subtitle { max-width: 100%; margin-bottom: 2rem; }

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.numero-card {
  background: #fff;
  border: 1px solid rgba(198,129,60,.25);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--sombra);
  transition: transform var(--transition);
}
.numero-card:hover { transform: translateY(-4px); }

.numero-valor {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cor-dourada);
}
.numero-rotulo {
  font-size: .82rem;
  color: var(--cor-escura-3);
  margin-top: .2rem;
}

/* ── SERVIÇOS ────────────────────────────────────────────── */
#servicos {
  padding: 6rem 0;
  background: #fff;
}

.servicos-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.servicos-header .section-subtitle { margin: 0 auto; }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servico-card {
  background: var(--branco-off);
  border: 1px solid rgba(198,129,60,.2);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
  border-color: var(--cor-dourada);
}

.servico-icone {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(198,129,60,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--cor-dourada);
}
.servico-icone svg { width: 26px; height: 26px; }

.servico-titulo {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: .6rem;
  color: var(--cor-escura-1);
}
.servico-desc { font-size: .9rem; color: var(--cor-escura-3); }

/* ── DEPOIMENTOS ─────────────────────────────────────────── */
#depoimentos {
  padding: 6rem 0;
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.carrossel-wrap { position: relative; overflow: hidden; }

.carrossel-track {
  display: flex;
  transition: transform .45s ease;
}

.depo-card {
  min-width: 100%;
  padding: .5rem;
}

.depo-inner {
  background: #fff;
  border: 1px solid rgba(198,129,60,.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--sombra);
  max-width: 760px;
  margin: 0 auto;
}

.depo-stars { color: var(--cor-dourada); font-size: 1.1rem; margin-bottom: 1rem; }
.depo-texto {
  font-size: 1.05rem;
  color: var(--cor-escura-2);
  font-style: italic;
  margin-bottom: 1.8rem;
  line-height: 1.8;
}

.depo-autor { display: flex; align-items: center; gap: 1rem; }

.depo-foto {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cor-escura-2), var(--cor-media-1));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}
.depo-foto img { width: 100%; height: 100%; object-fit: cover; }

.depo-nome { font-weight: 700; font-size: .95rem; color: var(--cor-escura-1); }
.depo-cargo { font-size: .82rem; color: var(--cor-escura-3); }

.carrossel-controles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carrossel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--cor-dourada);
  color: var(--cor-dourada);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.carrossel-btn:hover { background: var(--cor-dourada); color: #fff; }
.carrossel-btn svg { width: 18px; height: 18px; }

.carrossel-dots { display: flex; gap: .5rem; }
.carrossel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(198,129,60,.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carrossel-dot.active { background: var(--cor-dourada); transform: scale(1.3); }

/* ── CONTATO / CTA ───────────────────────────────────────── */
#contato {
  background: var(--cor-escura-2);
  padding: 6rem 0;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contato-info .section-title,
.contato-info .section-tag { color: var(--texto-claro); }
.contato-info .section-title { color: var(--texto-claro); }
.contato-info p { color: rgba(253,248,243,.75); margin-bottom: 2rem; }

.contato-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(198,129,60,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--cor-clara);
  transition: background var(--transition), border-color var(--transition);
}
.social-link:hover { background: rgba(198,129,60,.2); border-color: var(--cor-dourada); }
.social-link svg { width: 20px; height: 20px; }

.contato-form {
  background: rgba(253,248,243,.06);
  border: 1px solid rgba(198,129,60,.25);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(253,248,243,.75);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(198,129,60,.3);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--texto-claro);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(253,248,243,.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cor-dourada);
  background: rgba(255,255,255,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
  margin-top: .5rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-whatsapp svg { width: 22px; height: 22px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--cor-escura-1);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(198,129,60,.2);
}

.footer-brand .logo-text { color: var(--texto-claro); font-size: 1rem; max-width: 220px; margin-top: .4rem; }
.footer-crn { font-size: .82rem; color: rgba(253,248,243,.5); margin-top: .4rem; }

.footer-links h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--cor-dourada);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .8rem;
}
.footer-links a {
  display: block;
  color: rgba(253,248,243,.65);
  font-size: .9rem;
  margin-bottom: .4rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cor-clara); }

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: .82rem;
  color: rgba(253,248,243,.4);
}

/* ── AVISO INLINE DO FORMULÁRIO ──────────────────────────── */
.form-aviso {
  display: none;
  align-items: flex-start;
  gap: .6rem;
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  border-radius: 10px;
  font-size: .9rem;
  line-height: 1.5;
  animation: fadeInUp .3s ease;
}
.form-aviso svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: .05rem; }
.form-aviso a { font-weight: 700; text-decoration: underline; }

.form-aviso--sucesso {
  background: rgba(39,174,96,.15);
  border: 1px solid rgba(39,174,96,.35);
  color: #a8f0c6;
}
.form-aviso--sucesso svg { stroke: #27ae60; }

.form-aviso--erro {
  background: rgba(192,57,43,.15);
  border: 1px solid rgba(192,57,43,.35);
  color: #f4a49e;
}
.form-aviso--erro svg { stroke: #e74c3c; }
.form-aviso--erro a { color: #f4a49e; }

.recaptcha-aviso {
  font-size: .72rem;
  color: rgba(253,248,243,.35);
  margin-top: .75rem;
  line-height: 1.5;
}
.recaptcha-aviso a { color: rgba(253,248,243,.45); text-decoration: underline; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ANIMAÇÕES AO SCROLL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVO ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cor-escura-1);
    padding: 1.5rem 5%;
    gap: 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .sobre-grid { grid-template-columns: 1fr; }
  .foto-wrapper { display: flex; justify-content: center; }
  .foto-placeholder { width: 260px; height: 320px; }
  .foto-badge { right: -1rem; bottom: 1rem; }
  .numeros-grid { grid-template-columns: repeat(3, 1fr); }

  .servicos-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* Navbar na página clientes: fundo claro até rolar */
.clientes-page #navbar:not(.scrolled) {
  background: var(--branco-off);
  box-shadow: 0 2px 12px rgba(53,32,29,.08);
}

/* ── PÁGINA CLIENTES ─────────────────────────────────────── */
.page-banner {
  background: var(--cor-escura-1);
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner .container { width: 100%; }
.page-banner::after {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,129,60,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-banner .section-tag { margin-bottom: .6rem; }
.page-banner .section-title { color: var(--texto-claro); margin-bottom: 1rem; }
.page-banner .section-subtitle {
  color: rgba(253,248,243,.7);
  margin: 0 auto;
}

#clientes-section {
  padding: 6rem 0;
  background: #fff;
}

.clientes-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.clientes-header .section-subtitle { margin: 0 auto; }

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.cliente-card {
  background: var(--branco-off);
  border: 1px solid rgba(198,129,60,.2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cliente-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
  border-color: var(--cor-dourada);
}

.cliente-foto-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--cor-escura-2), var(--cor-media-1));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cliente-foto-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.cliente-foto-iniciais {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
}

.cliente-info {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cliente-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cor-escura-1);
  margin-bottom: .3rem;
}
.cliente-setor {
  font-size: .78rem;
  font-weight: 700;
  color: var(--cor-dourada);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .9rem;
}
.cliente-desc {
  font-size: .9rem;
  color: var(--cor-escura-3);
  line-height: 1.65;
  flex: 1;
}

/* Depoimentos na página clientes: min-height para uniformidade */
.clientes-page .depo-inner { min-height: 220px; }

@media (max-width: 1024px) {
  .clientes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .clientes-grid { grid-template-columns: 1fr; }
  .page-banner { padding: 8rem 0 3.5rem; }
}
