/* ============================================
   PJ ODONTOLOGIA — depoimentos-bundle.css
   Agência Mori · 2026
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');

/* --- Variáveis --- */
:root {
  --azul:     #0D3A52;
  --azul-m:   #1a4f6e;
  --azul-cl:  #e8f2f8;
  --ouro:     #C8992A;
  --ouro-cl:  #e8b84b;
  --ouro-bg:  #fdf6e8;
  --bg:       #f5f3ef;
  --branco:   #ffffff;
  --cinza:    #f0ede8;
  --ct:       #666666;
  --txt:      #1a1a1a;
  --r:        14px;
  --rl:       20px;
  --section-pad: 80px;
  --container: 1200px;
  --container-narrow: 860px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--txt);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Tipografia --- */
h1 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; line-height: 1.15; color: var(--azul); }
h2 { font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; line-height: 1.2; color: var(--azul); }
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ouro);
  display: block;
  margin-bottom: 12px;
}

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; width: 100%; }

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn--primary { background: var(--ouro); color: var(--branco); }
.btn--secondary { border: 2px solid var(--azul); color: var(--azul); background: transparent; }

/* --- Breadcrumb --- */
.breadcrumb { padding: 88px 0 0; background: var(--branco); }
.breadcrumb__list { display: flex; align-items: center; gap: 8px; padding: 12px 0; font-size: 13px; color: var(--ct); list-style: none; }
.breadcrumb__item a { color: var(--ct); transition: color .15s; }
.breadcrumb__item a:hover { color: var(--azul); }
.breadcrumb__item + .breadcrumb__item::before { content: '›'; color: rgba(13,58,82,.3); margin-right: 8px; }
.breadcrumb__item--active { color: var(--azul); font-weight: 600; }

/* ============================================
   HERO (com imagem, padrão sobre-hero)
   ============================================ */
.depo-hero { padding: 56px 0 72px; background: var(--branco); }
.depo-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.depo-hero__content h1 { margin: 12px 0 20px; }
.depo-hero__content h1 .accent { color: var(--ouro); }
.depo-hero__content p { font-size: 16px; line-height: 1.75; color: var(--ct); max-width: 480px; }
.depo-hero__img-wrap { border-radius: var(--rl); overflow: hidden; aspect-ratio: 5/4; background: var(--cinza); }
.depo-hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   STATS
   ============================================ */
.local-stats { background: var(--azul); padding: 40px 24px; }
.local-stats__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container); margin: 0 auto; text-align: center; }
.local-stats__number { font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--branco); line-height: 1; }
.local-stats__number .accent { color: var(--ouro-cl); }
.local-stats__label { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 8px; }

/* ============================================
   VALORES / ORGULHO (mesmo padrão de card da /sobre)
   ============================================ */
.depo-valores { padding: var(--section-pad) 0; background: var(--bg); }
.depo-valores__header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.depo-valores__header p { font-size: 15px; line-height: 1.75; color: var(--ct); margin-top: 12px; }
.depo-valores__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.valor-card {
  background: var(--branco);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.valor-card:hover {
  border-color: rgba(200,153,42,.25);
  box-shadow: 0 4px 20px rgba(13,58,82,.06);
  transform: translateY(-2px);
}
.valor-card__icon { font-size: 32px; margin-bottom: 16px; display: block; }
.valor-card__title { font-size: 15px; font-weight: 700; color: var(--ouro); margin-bottom: 10px; }
.valor-card__desc { font-size: 13px; line-height: 1.7; color: var(--ct); }

/* ============================================
   VÍDEOS (grid horizontal 16:9, novo componente)
   ============================================ */
.depo-video-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 8px; }
.depo-video-grid__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r);
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 30px -14px rgba(13,58,82,.35);
}
.depo-video-grid__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================
   DEPOIMENTOS (cards)
   ============================================ */
.depoimentos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.depo-card { background: var(--branco); border-radius: var(--r); padding: 28px 24px; box-shadow: 0 2px 12px rgba(13,58,82,.06); }
.depo-card__stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--ouro); font-size: 16px; }
.depo-card__text { font-size: 14px; line-height: 1.75; color: var(--txt); font-style: italic; margin-bottom: 20px; }
.depo-card__author { display: flex; align-items: center; gap: 12px; }
.depo-card__avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: var(--branco); flex-shrink: 0; }
.depo-card__name { font-size: 14px; font-weight: 700; color: var(--azul); }
.depo-card__local { font-size: 12px; color: var(--ct); margin-top: 1px; }
.depo-card__badge { font-size: 10px; font-weight: 700; letter-spacing: .08em; color: var(--ouro); margin-top: 2px; }
.depo-unit-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ct);
  background: var(--cinza);
  border-radius: 100px;
  padding: 3px 10px;
  margin-top: 6px;
}

.depo-section-label { text-align: center; margin-bottom: 40px; }

/* ============================================
   CTA FINAL
   ============================================ */
.depo-cta-final { padding: 56px 0 var(--section-pad); text-align: center; background: var(--bg); }
.depo-cta-final h2 { margin-bottom: 12px; }
.depo-cta-final p { font-size: 15px; color: var(--ct); line-height: 1.75; margin-bottom: 32px; max-width: 460px; margin-left: auto; margin-right: auto; }
.depo-cta-final__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .breadcrumb { padding-top: 86px; }
  .breadcrumb__list { padding: 10px 0; }

  .depo-hero { padding: 16px 0 48px; }
  .depo-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .depo-hero__img-wrap { aspect-ratio: 4/3; }

  .local-stats__inner { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .local-stats__number { font-size: clamp(20px, 6vw, 28px); }

  .depo-valores__grid { grid-template-columns: 1fr; gap: 14px; }

  .depoimentos__grid { grid-template-columns: 1fr; gap: 16px; }

  .depo-cta-final__btns { flex-direction: column; align-items: stretch; }
  .depo-cta-final__btns .btn { width: 100%; }
}

@media (min-width: 900px) {
  .depo-video-grid { grid-template-columns: repeat(3, 1fr); }
}
