/* =========================================
   DAMASCENA ADVOGADOS — Stylesheet
   Inspirado em escobaradvogados.com
   Paleta: navy #0f2847 + azul #174687 + branco
   Tipografia: Lato (sans-serif)
   ========================================= */

:root {
  /* ---- PALETA OFICIAL DAMASCENA ADVOGADOS ---- */
  --navy-900: #1F2845;   /* Azul oficial - C:100 M:85 Y:40 K:45 */
  --navy-800: #2A3356;
  --navy-700: #151A32;
  --navy-600: #3A4568;
  --navy-50:  #F3F4F8;

  --copper-500: #E1A368;  /* Golden Foil oficial - C:10 M:40 Y:60 K:0 */
  --copper-600: #C88654;  /* hover/darker */
  --copper-400: #EDBC88;  /* lighter */
  --copper-700: #A56A3E;  /* deep */

  --blue-accent: #E1A368; /* alias: acento agora é o copper */
  --blue-hover:  #C88654;

  --cream:    #F6F0F0;   /* Off-white oficial - C:5 M:5 Y:5 K:0 */
  --cream-dark:#EDE4E4;

  --gray-50:  #F8F6F6;
  --gray-100: #F0EBEB;
  --gray-200: #E3DDDD;
  --gray-400: #9A8F8F;
  --gray-600: #5A5050;
  --gray-900: #1A1515;

  --white:    #FFFFFF;

  --text:     #2A2A3A;
  --text-muted:#6B6070;
  --border:   #E8E0E0;

  --font-sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(15, 40, 71, 0.06), 0 1px 2px rgba(15, 40, 71, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 40, 71, 0.08), 0 2px 4px rgba(15, 40, 71, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 40, 71, 0.12);

  --transition: 220ms cubic-bezier(.4, 0, .2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-accent); }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--copper-500);
  color: var(--navy-900);
}
.btn--primary:hover {
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--gold {
  background: var(--copper-500);
  color: var(--navy-900);
}
.btn--gold:hover {
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}
.btn--full { width: 100%; }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--navy-900);
  z-index: 100;
  transition: all var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.logo__mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo__sub {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  font-weight: 400;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav__list { display: flex; gap: 28px; }
.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__link--active { color: var(--copper-500) !important; }
.nav__link--active::after { transform: scaleX(1); background: var(--copper-500); }

.nav__cta {
  background: var(--copper-500);
  color: var(--navy-900);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.nav__cta:hover {
  background: var(--white);
  color: var(--navy-900);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav__close {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31, 40, 69, 0.96) 0%, rgba(21, 26, 50, 0.92) 100%),
    var(--navy-900);
  z-index: -1;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(225, 163, 104, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(225, 163, 104, 0.06) 0%, transparent 50%);
}
.hero__inner {
  position: relative;
  max-width: 900px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper-500);
  padding: 8px 18px;
  background: rgba(225, 163, 104, 0.08);
  border: 1px solid rgba(225, 163, 104, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero__title .accent {
  color: var(--copper-500);
  font-weight: 300;
  font-style: italic;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 72px;
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 760px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero__trust-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--copper-500);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.hero__trust-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Trust item clicável (vira botão para WhatsApp) */
.hero__trust-item--link {
  display: block;
  padding: 14px 18px;
  margin: -14px -18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(225, 163, 104, 0.3);
  background: rgba(225, 163, 104, 0.04);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.hero__trust-item--link:hover {
  background: rgba(225, 163, 104, 0.12);
  border-color: var(--copper-500);
  transform: translateX(4px);
}
.hero__trust-item--link:hover strong {
  color: var(--copper-400);
}
.hero__trust-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--transition);
}
.hero__trust-item--link:hover .hero__trust-arrow {
  transform: translateX(4px);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 96px 0;
}
.section--light { background: var(--white); }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--navy-900);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 14px;
}
.section__header--light .section__eyebrow {
  color: rgba(255, 255, 255, 0.65);
}
.section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  color: var(--navy-900);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section__header--light .section__title { color: var(--white); }
.section__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 18px;
  line-height: 1.7;
  font-weight: 400;
}
.section__header--light .section__lead { color: rgba(255, 255, 255, 0.8); }
.divider {
  width: 48px;
  height: 3px;
  background: var(--blue-accent);
  margin: 0 auto;
  border-radius: 2px;
}
.divider--light { background: var(--white); }

/* ---------- ABOUT ---------- */
/* ---------- TEAM PHOTO (foto institucional da equipe) ---------- */
.team-photo {
  position: relative;
  margin: 0 auto 72px;
  max-width: 1100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31, 40, 69, 0.25), 0 8px 20px rgba(31, 40, 69, 0.12);
  transition: transform .5s cubic-bezier(.4, 0, .2, 1), box-shadow .5s;
}
.team-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(225, 163, 104, 0.45);
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: 3;
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(225, 163, 104, 0.25);
  border-radius: calc(var(--radius-md) - 4px);
  pointer-events: none;
  z-index: 3;
}
.team-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(31, 40, 69, 0.32), 0 10px 28px rgba(31, 40, 69, 0.15);
}
.team-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 30%;
  aspect-ratio: 4 / 5;
  transition: transform .8s cubic-bezier(.4, 0, .2, 1);
}
.team-photo:hover img {
  transform: scale(1.02);
}
.team-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 72px 40px 36px;
  background: linear-gradient(to top,
    rgba(31, 40, 69, 0.92) 0%,
    rgba(31, 40, 69, 0.65) 55%,
    rgba(31, 40, 69, 0) 100%);
  color: var(--white);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-photo__caption-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper-500);
}
.team-photo__caption-text {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  max-width: 520px;
  line-height: 1.4;
  font-style: italic;
}

@media (max-width: 768px) {
  .team-photo { margin-bottom: 48px; border-radius: var(--radius-sm); }
  .team-photo::after { inset: 5px; }
  .team-photo figcaption {
    padding: 48px 22px 22px;
  }
  .team-photo__caption-text {
    font-size: 0.95rem;
  }
  .team-photo__caption-eyebrow {
    font-size: 10px;
    letter-spacing: 0.25em;
  }
}

.about {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.about__lead {
  font-size: 1.18rem;
  color: var(--navy-900);
  font-weight: 400;
  line-height: 1.65;
  padding-left: 24px;
  border-left: 3px solid var(--blue-accent);
  margin-bottom: 32px;
}

.history {
  max-width: 820px;
  margin: 72px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  font-size: 1.02rem;
  line-height: 1.8;
}
.history__title {
  font-size: 1.65rem;
  color: var(--navy-900);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 800;
}

/* ---------- PURPOSE (Missão, Visão, Valores - emocional) ---------- */
.purpose {
  position: relative;
  padding: 120px 0 110px;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.purpose__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 25%, rgba(225, 163, 104, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(225, 163, 104, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
}
.purpose__bg::before,
.purpose__bg::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--copper-500), transparent);
  transform: translateX(-50%);
}
.purpose__bg::before { top: 40px; }
.purpose__bg::after { bottom: 40px; }

.purpose__inner {
  position: relative;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}
.purpose-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.purpose-grid--two::before { left: 50%; }
.purpose-grid--two::after { display: none; }
.purpose-valores {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.purpose-valores__header {
  text-align: center;
  margin-bottom: 32px;
}

/* linhas douradas verticais entre os cards */
.purpose-grid::before,
.purpose-grid::after {
  content: '';
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(225, 163, 104, 0.4), transparent);
  pointer-events: none;
}
.purpose-grid::before { left: 33.333%; }
.purpose-grid::after { left: 66.666%; }

.purpose-card {
  position: relative;
  padding: 40px 44px;
  text-align: center;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
.purpose-card:hover {
  transform: translateY(-6px);
}

/* Número decorativo gigante ao fundo */
.purpose-card__number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  color: rgba(225, 163, 104, 0.08);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color .4s;
}
.purpose-card:hover .purpose-card__number {
  color: rgba(225, 163, 104, 0.14);
}

.purpose-card__icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  margin: 48px auto 28px;
  color: var(--copper-500);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(225, 163, 104, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  transition: all .4s;
}
.purpose-card:hover .purpose-card__icon {
  border-color: var(--copper-500);
  background: rgba(225, 163, 104, 0.08);
  transform: scale(1.05);
}

.purpose-card__label {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper-500);
  margin-bottom: 18px;
}

.purpose-card__quote {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}
.purpose-card__quote::before,
.purpose-card__quote::after {
  color: var(--copper-500);
  font-family: Georgia, serif;
  font-size: 1.1em;
  font-style: normal;
  line-height: 1;
}
.purpose-card__quote::before { content: '\201C'; margin-right: 4px; }
.purpose-card__quote::after { content: '\201D'; margin-left: 4px; }

.purpose-card__text {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 400;
}

.purpose-card__values {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.purpose-card__values li {
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--copper-500);
  background: rgba(225, 163, 104, 0.06);
  border: 1px solid rgba(225, 163, 104, 0.3);
  border-radius: var(--radius-full);
  transition: all .3s;
}
.purpose-card__values li:hover {
  background: var(--copper-500);
  color: var(--navy-900);
  border-color: var(--copper-500);
  transform: translateY(-2px);
}

/* Footer quote da seção */
.purpose__footer {
  margin: 90px auto 0;
  max-width: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--copper-500);
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-align: center;
}
.purpose__footer em {
  font-style: italic;
  white-space: nowrap;
}
.purpose__footer-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(225, 163, 104, 0.5), transparent);
}
.purpose__footer-line:first-child {
  background: linear-gradient(to left, rgba(225, 163, 104, 0.5), transparent);
}
.purpose__footer-line:last-child {
  background: linear-gradient(to right, rgba(225, 163, 104, 0.5), transparent);
}

@media (max-width: 900px) {
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .purpose-grid::before,
  .purpose-grid::after {
    display: none;
  }
  .purpose-card {
    padding: 32px 24px;
    border-bottom: 1px solid rgba(225, 163, 104, 0.2);
  }
  .purpose-card:last-child { border-bottom: none; }
  .purpose-card__number { font-size: 140px; }
  .purpose-card__quote { font-size: 1.3rem; }
  .purpose__footer {
    flex-direction: column;
    gap: 16px;
    margin-top: 64px;
    font-size: 1.15rem;
  }
  .purpose__footer-line {
    width: 60px;
    flex: none;
  }
}

@media (max-width: 480px) {
  .purpose { padding: 80px 0 72px; }
  .purpose-card__number { font-size: 120px; top: -5px; }
  .purpose-card__quote { font-size: 1.2rem; }
  .purpose-card__icon { margin-top: 36px; width: 64px; height: 64px; }
}

/* ---------- AREAS ---------- */
.areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--copper-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--copper-500);
}
.area-card:hover::before {
  transform: scaleX(1);
}
.area-card__icon {
  width: 56px;
  height: 56px;
  color: var(--copper-600);
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.area-card:hover .area-card__icon {
  background: var(--copper-500);
  color: var(--navy-900);
}
.area-card h3 {
  font-size: 1.1rem;
  color: var(--navy-900);
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.35;
}
.area-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.areas__cta {
  margin-top: 56px;
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(225, 163, 104, 0.15), rgba(225, 163, 104, 0.05));
  border: 1px solid rgba(225, 163, 104, 0.3);
  border-radius: var(--radius-md);
}
.areas__cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  margin-bottom: 24px;
  font-weight: 400;
}

/* ---------- TEAM (cards com foto retrato) ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1),
              box-shadow .4s,
              border-color .4s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--copper-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
  z-index: 3;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(31, 40, 69, 0.18);
  border-color: var(--copper-500);
}
.team-card:hover::before {
  transform: scaleX(1);
}

.team-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.95) contrast(1.02);
  transition: filter .6s, transform .6s cubic-bezier(.4, 0, .2, 1);
}
.team-card:hover .team-card__photo img {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.04);
}

/* Overlay sutil navy no topo da foto (gradiente elegante) */
.team-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 40, 69, 0) 60%,
    rgba(31, 40, 69, 0.35) 100%
  );
  pointer-events: none;
  transition: opacity .4s;
}

/* Placeholder (sem foto) — Karol e Gustavo */
.team-card__photo--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  position: relative;
}
.team-card__photo--initials::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(225, 163, 104, 0.3);
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.team-card__photo--initials span {
  color: var(--copper-500);
  font-family: var(--font-sans);
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.team-card__body {
  padding: 22px 22px 26px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.team-card__name {
  font-size: 1.1rem;
  color: var(--navy-900);
  margin: 0 0 2px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.team-card__role {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}
.team-card__oab {
  color: var(--copper-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 6px 0 0;
}

/* Responsivo */
@media (max-width: 1024px) {
  .team { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .team { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .team-card__body { padding: 18px 16px 22px; }
  .team-card__name { font-size: 1rem; }
  .team-card__role { font-size: 0.85rem; }
  .team-card__photo--initials span { font-size: 3.5rem; }
}
@media (max-width: 480px) {
  .team { grid-template-columns: 1fr 1fr; gap: 14px; }
  .team-card__name { font-size: 0.95rem; }
}

/* ---------- CONTACT ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--navy-900);
  color: var(--copper-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.contact__item h4 {
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 4px;
  font-weight: 800;
}
.contact__item p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}
.contact__item a { color: var(--navy-900); font-weight: 700; }
.contact__item a:hover { color: var(--blue-accent); }

.contact__form {
  background: var(--white);
  padding: 44px 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact__form-title {
  font-size: 1.4rem;
  color: var(--navy-900);
  margin-bottom: 28px;
  font-weight: 800;
}
.form-field { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(23, 70, 135, 0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 20px 0 24px;
  line-height: 1.5;
  cursor: pointer;
}
.form-check input { margin-top: 3px; flex-shrink: 0; }
.form-check a { color: var(--blue-accent); text-decoration: underline; font-weight: 700; }

.form-status {
  margin: 16px 0 0;
  font-size: 0.9rem;
  min-height: 20px;
  text-align: center;
}
.form-status.success { color: #1b7f3d; }
.form-status.error { color: #c0392b; }

/* ---------- MAP ---------- */
.map-section {
  height: 420px;
  background: var(--gray-100);
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- FOOTER (estilo Escobar adaptado) ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding-top: 0;
}
.footer__topbar {
  height: 4px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--copper-500) 20%,
    var(--copper-400) 50%,
    var(--copper-500) 80%,
    transparent 100%);
  opacity: 0.85;
}

/* LINHA 1: Logo + Menu */
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 0 44px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity var(--transition);
}
.footer__brand:hover { opacity: 0.85; }
.footer__brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.footer__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer__brand-name {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
}
.footer__brand-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper-500);
  margin-top: 5px;
  font-weight: 500;
}

.footer__nav {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--copper-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.footer__nav a:hover {
  color: var(--copper-500);
}
.footer__nav a:hover::after {
  transform: scaleX(1);
}

/* Divisor dourado suave */
.footer__divider {
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(225, 163, 104, 0.35),
    transparent);
}

/* LINHA 2: Informações com ícones (pins) */
.footer__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 56px 0;
}
.footer__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.footer__info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(225, 163, 104, 0.08);
  border: 1px solid rgba(225, 163, 104, 0.35);
  color: var(--copper-500);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all var(--transition);
}
.footer__info-item:hover .footer__info-icon {
  background: var(--copper-500);
  color: var(--navy-900);
  transform: scale(1.05);
}
.footer__info-text h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-500);
  margin: 4px 0 6px;
}
.footer__info-text p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.footer__info-text a {
  color: var(--white);
  font-weight: 600;
  transition: color var(--transition);
}
.footer__info-text a:hover { color: var(--copper-500); }

/* LINHA 3: Social */
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 0 32px;
  flex-wrap: wrap;
}
.footer__social-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.footer__social-icons {
  display: flex;
  gap: 14px;
}
.footer__social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(225, 163, 104, 0.4);
  background: rgba(225, 163, 104, 0.05);
  color: var(--copper-500);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all var(--transition);
}
.footer__social-icons a:hover {
  background: var(--copper-500);
  color: var(--navy-900);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(225, 163, 104, 0.3);
}

/* Rodapé inferior */
.footer__bottom {
  padding: 32px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer__tagline-final {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-style: normal;
  color: var(--copper-500);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.footer__tagline-final em {
  font-style: italic;
  font-weight: 300;
}
.footer__tagline-final span {
  color: rgba(225, 163, 104, 0.5);
  margin: 0 10px;
}
.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 6px;
  line-height: 1.6;
}
.footer__copyright strong {
  color: var(--white);
  font-weight: 700;
}
.footer__disclaimer {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 900px) {
  .footer__info {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 44px 0;
  }
}
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    text-align: center;
    padding: 44px 0 36px;
    gap: 28px;
  }
  .footer__brand { justify-content: center; }
  .footer__nav {
    justify-content: center;
    gap: 18px 24px;
    font-size: 14px;
  }
  .footer__nav a { font-size: 14px; }
  .footer__info {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }
  .footer__info-item {
    justify-content: flex-start;
  }
  .footer__social {
    flex-direction: column;
    gap: 18px;
    padding: 32px 0 24px;
  }
  .footer__tagline-final span { display: none; }
  .footer__bottom { padding: 28px 0 24px; }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 120px 0 70px; min-height: auto; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  .nav__toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 340px;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    gap: 24px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 20px; width: 100%; }
  .nav__link {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 400;
  }
  .nav__cta { width: 100%; text-align: center; padding: 14px 20px; font-size: 14px; }
  .nav__close { display: block; }

  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 32px 24px; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__col--brand .logo { justify-content: center; }

  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
  .hero__trust { grid-template-columns: 1fr; gap: 20px; }
  .container { padding: 0 18px; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Body lock when mobile menu is open */
body.nav-open { overflow: hidden; }

/* ---------- 4-COLUMN VALUE PROPOSITION (estilo Escobar) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.value-item {
  text-align: center;
}
.value-item__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--copper-600);
  background: var(--white);
  border: 2px solid var(--copper-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  transition: all var(--transition);
}
.value-item:hover .value-item__icon {
  background: var(--copper-500);
  color: var(--navy-900);
  transform: scale(1.05);
}
.value-item h4 {
  font-size: 1.1rem;
  color: var(--navy-900);
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.value-item p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ========================================
   REVIEWS - Avaliações Google
   ======================================== */
.reviews {
  position: relative;
  padding: 110px 0 100px;
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.reviews__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 12%, rgba(225, 163, 104, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 92% 88%, rgba(31, 40, 69, 0.06) 0%, transparent 45%);
}
.reviews__bg::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--copper-500), transparent);
}

.reviews__inner {
  position: relative;
}

.reviews .section__header .section__eyebrow { color: var(--copper-600); }
.reviews .section__header .section__title { color: var(--navy-900); }
.reviews .section__header .divider--light { background: var(--copper-500); }

/* Rating card (cabeçalho com 5.0 + estrelas + CTA) */
.reviews__rating {
  margin: 0 auto 64px;
  max-width: 720px;
  background: var(--white);
  border: 1px solid rgba(225, 163, 104, 0.35);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 12px 32px rgba(31, 40, 69, 0.08);
  position: relative;
}
.reviews__rating::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--copper-500), transparent);
}
.reviews__rating-logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.reviews__rating-info {
  flex: 1;
  min-width: 0;
}
.reviews__rating-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.reviews__rating-number {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.reviews__rating-stars {
  display: flex;
  gap: 3px;
  color: #FFC107;
}
.reviews__rating-stars svg {
  width: 22px;
  height: 22px;
}
.reviews__rating-caption {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}
.reviews__rating-caption strong {
  color: var(--navy-900);
  font-weight: 700;
}
.reviews__rating-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: var(--navy-900);
  color: var(--copper-500);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.reviews__rating-cta:hover {
  background: var(--copper-500);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.reviews__rating-cta svg {
  transition: transform var(--transition);
}
.reviews__rating-cta:hover svg {
  transform: translate(2px, -2px);
}

/* Grid de cards */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--copper-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.review-card::after {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 88px;
  font-weight: 700;
  color: var(--copper-500);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(31, 40, 69, 0.12);
  border-color: var(--copper-500);
}
.review-card:hover::before {
  transform: scaleX(1);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.review-card__avatar {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  letter-spacing: 0;
}
.review-card__header > div:not(.review-card__avatar) {
  flex: 1;
  min-width: 0;
}
.review-card__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 2px;
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
}
.review-card__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.review-card__google {
  flex-shrink: 0;
  opacity: 0.85;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: #FFC107;
}
.review-card__stars svg {
  width: 16px;
  height: 16px;
}

.review-card__text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* CTA final */
.reviews__cta {
  margin-top: 64px;
  text-align: center;
  padding: 48px 32px;
  background: var(--navy-900);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.reviews__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(225, 163, 104, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(225, 163, 104, 0.08) 0%, transparent 50%);
}
.reviews__cta > * {
  position: relative;
  z-index: 1;
}
.reviews__cta p {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
  font-family: var(--font-sans);
}

/* Responsivo */
@media (max-width: 768px) {
  .reviews { padding: 80px 0 72px; }
  .reviews__rating {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
  .reviews__rating-top {
    justify-content: center;
  }
  .reviews__rating-cta { width: 100%; justify-content: center; }
  .reviews__grid { gap: 18px; }
  .review-card { padding: 26px 22px; }
  .reviews__cta { padding: 40px 24px; margin-top: 40px; }
  .reviews__cta p { font-size: 1.05rem; }
}

/* ---------- VALORES MATHRIE ---------- */
.valores {
  background: var(--navy-900);
  padding: 96px 0 104px;
}
.valores .section__header { margin-bottom: 64px; }
.valores__acronym {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.valores__acronym-letter {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(200, 146, 74, 0.15);
  border: 1px solid rgba(200, 146, 74, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--copper-500);
  letter-spacing: 0;
}
.valores__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .valores__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .valores__grid { grid-template-columns: 1fr; }
  .valores__acronym-letter { width: 36px; height: 36px; font-size: 0.95rem; }
}
.valor-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px 32px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.valor-card:hover {
  background: rgba(200, 146, 74, 0.08);
  border-color: rgba(200, 146, 74, 0.3);
  transform: translateY(-4px);
}
.valor-card__letter {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(200, 146, 74, 0.15);
  border: 1px solid rgba(200, 146, 74, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--copper-500);
  margin-bottom: 18px;
}
.valor-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.valor-card__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
/* 7 cards: last row centering (4+3) */
.valor-card:nth-child(5) { grid-column: 1; }
@media (min-width: 1025px) {
  .valor-card:nth-child(5) { grid-column: 1; }
  .valores__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  /* last 3 cards centered on second row */
  .valor-card:nth-child(5),
  .valor-card:nth-child(6),
  .valor-card:nth-child(7) {
    grid-column: auto;
  }
  .valores__grid::after {
    content: '';
    grid-column: span 1;
  }
}
