/* SBARDELATTI — Stylesheet global */


/* Variáveis — tema único (claro)
   ---------------------------------------- */
:root {
  --bg:       #f6f1e6;
  --bg-rgb:   246, 241, 230;
  --bg-alt:   #ece3d0;
  --bronze:   #6b5636;
  --bege:     #8a6d3f;
  --text:     #241a0d;
  --gold:     linear-gradient(135deg, #c6b28e 0%, #a08962 45%, #7a6541 100%);
  --ink:      #1c1407;
  --text-rgb: 58, 46, 26;
  --glow-rgb: 122, 101, 65;
}


/* Reset
   ---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}


/* Base
   ---------------------------------------- */
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
}


/* Header / Nav
   ---------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.1);
  background: rgba(var(--bg-rgb), 0.92);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3.5rem;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.header-logo img {
  height: 56px;
  width: auto;
}

.logo-name {
  font-family: 'Forum', serif;
  font-size: 24px;
  letter-spacing: 1.5px;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.logo-sub {
  font-size: 8.5px;
  color: var(--bronze);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

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

.header-nav a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(var(--text-rgb), 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--bronze);
}

.header-nav .btn-gold {
  padding: 10px 22px;
  font-size: 9px;
}


/* Botões
   ---------------------------------------- */
.btn-gold,
.btn-outline {
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 34px;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: none;
  box-shadow: 0 10px 24px -10px rgba(var(--glow-rgb), 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(var(--glow-rgb), 0.65);
}

.btn-outline {
  background: transparent;
  color: var(--bronze);
  font-weight: 500;
  border: 1px solid rgba(var(--text-rgb), 0.3);
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--bronze);
  background: rgba(var(--text-rgb), 0.05);
}


/* Rótulos de seção
   ---------------------------------------- */
.sec-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--bronze);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.sec-eyebrow::before,
.sec-eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(var(--text-rgb), 0.3);
}

.sec-eyebrow.left {
  justify-content: flex-start;
}

.sec-eyebrow.left::after {
  display: none;
}

.sec-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 4rem;
  color: var(--text);
}

.sec-title em {
  font-style: italic;
  font-family: 'Forum', serif;
  font-weight: 400;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* Hero — homepage
   ---------------------------------------- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--glow-rgb), 0.1) 0%, transparent 65%);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-eyebrow {
  position: relative;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 800px;
  margin-bottom: 1.5rem;
  color: var(--text);
  position: relative;
}

.hero h1 em {
  font-style: italic;
  font-family: 'Forum', serif;
  font-weight: 400;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero > p {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(var(--text-rgb), 0.8);
  letter-spacing: 0.3px;
  line-height: 2.1;
  max-width: 460px;
  margin-bottom: 2.75rem;
  position: relative;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin-bottom: 3rem;
}

.hero-person {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(var(--text-rgb), 0.14);
  position: relative;
}

.hero-person-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px rgba(var(--glow-rgb), 0.35), 0 10px 24px -10px rgba(var(--text-rgb), 0.4);
}

.hero-person-text {
  text-align: left;
  line-height: 1.5;
}

.hero-person-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.hero-person-text span {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(var(--text-rgb), 0.65);
  letter-spacing: 0.3px;
}


/* Hero — páginas internas
   ---------------------------------------- */
.page-hero {
  padding: 7rem 3.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--glow-rgb), 0.1) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  color: var(--bronze);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}

.page-eyebrow::before,
.page-eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(var(--text-rgb), 0.3);
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.25;
  letter-spacing: -1px;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.page-hero h1 em {
  font-style: italic;
  font-family: 'Forum', serif;
  font-weight: 400;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero > p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(var(--text-rgb), 0.8);
  max-width: 500px;
  margin: 0 auto;
  line-height: 2;
  position: relative;
}


/* Barra de confiança
   ---------------------------------------- */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--bg-alt);
  border-top: 1px solid rgba(var(--text-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--text-rgb), 0.1);
  padding: 1.5rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0.5rem 2.25rem;
  border-right: 1px solid rgba(var(--text-rgb), 0.15);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(var(--text-rgb), 0.75);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--bronze);
}


/* Divisor
   ---------------------------------------- */
.divisor {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 3.5rem;
}

.divisor .linha {
  flex: 1;
  height: 1px;
  background: rgba(var(--text-rgb), 0.15);
}

.divisor img {
  height: 40px;
  width: auto;
}


/* Serviços — cards da homepage
   ---------------------------------------- */
.servicos {
  padding: 6.5rem 3.5rem;
  background: var(--bg);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.svc-card {
  background: #fff;
  border: 1px solid rgba(var(--text-rgb), 0.1);
  border-radius: 18px;
  padding: 2.75rem 2.25rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(var(--text-rgb), 0.03);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card:hover {
  border-color: rgba(var(--text-rgb), 0.2);
  box-shadow: 0 16px 32px -18px rgba(var(--text-rgb), 0.25);
  transform: translateY(-4px);
}

.svc-num {
  font-family: 'Forum', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--bronze);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.svc-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.9rem;
  color: var(--text);
}

.svc-card p {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 2;
  color: rgba(var(--text-rgb), 0.75);
}


/* Serviços — itens detalhados (/servicos)
   ---------------------------------------- */
.svc-section {
  padding: 5rem 3.5rem;
}

.svc-item {
  max-width: 920px;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(var(--text-rgb), 0.1);
  border-radius: 18px;
  padding: 3.5rem 3rem;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s;
}

.svc-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}

.svc-item:hover::before {
  transform: scaleY(1);
}

.svc-item:hover {
  border-color: rgba(var(--text-rgb), 0.2);
  box-shadow: 0 16px 32px -18px rgba(var(--text-rgb), 0.2);
}

.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 2rem;
}

.svc-item .svc-num {
  margin-bottom: 0;
  margin-top: 6px;
  white-space: nowrap;
}

.svc-item h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  flex: 1;
}

.svc-item h2 em {
  font-style: italic;
  font-family: 'Forum', serif;
  font-weight: 400;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.svc-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.svc-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.1;
  color: rgba(var(--text-rgb), 0.8);
}

.svc-list {
  list-style: none;
}

.svc-list li {
  font-size: 12px;
  font-weight: 300;
  color: rgba(var(--text-rgb), 0.7);
  line-height: 2;
  padding-left: 1.25rem;
  position: relative;
}

.svc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--bronze);
}


/* Sobre
   ---------------------------------------- */
.sobre {
  padding: 6.5rem 3.5rem;
  background: var(--bg-alt);
  border-top: 1px solid rgba(var(--text-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--text-rgb), 0.1);
}

.sobre-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.sobre h2 em {
  font-style: italic;
  font-family: 'Forum', serif;
  font-weight: 400;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sobre p {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.1;
  color: rgba(var(--text-rgb), 0.8);
}


/* Credencial
   ---------------------------------------- */
.cred {
  background: #fff;
  border: 1px solid rgba(var(--text-rgb), 0.12);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px -24px rgba(var(--text-rgb), 0.25);
}

.cred-photo {
  width: 156px;
  height: 156px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  margin: 0 auto 1.75rem;
  display: block;
  box-shadow: 0 0 0 6px var(--bg-alt), 0 0 0 7px rgba(var(--text-rgb), 0.12), 0 16px 32px -16px rgba(var(--text-rgb), 0.35);
}

.cred-nome {
  font-family: 'Forum', serif;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--text);
}

.cred-cargo {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.25rem;
}

.cred-rule {
  width: 40px;
  height: 1px;
  background: var(--bronze);
  margin: 0 auto 1.25rem;
}

.cred-crc {
  font-size: 11px;
  font-weight: 300;
  color: rgba(var(--text-rgb), 0.7);
  letter-spacing: 1px;
  line-height: 1.9;
}


/* Diferenciais
   ---------------------------------------- */
.difs {
  padding: 6.5rem 3.5rem;
  background: var(--bg);
}

.dif-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(var(--text-rgb), 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(var(--text-rgb), 0.03);
}

.dif {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(var(--text-rgb), 0.1);
  transition: background 0.3s;
}

.dif:last-child {
  border-right: none;
}

.dif:hover {
  background: var(--bg-alt);
}

.dif-icon {
  font-family: 'Forum', serif;
  font-style: italic;
  font-size: 28px;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.dif h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.dif p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(var(--text-rgb), 0.75);
}


/* CTA
   ---------------------------------------- */
.cta {
  padding: 7rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--glow-rgb), 0.1) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  color: #a85b3e;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(var(--text-rgb), 0.3);
}

.cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  color: var(--text);
  position: relative;
}

.cta h2 em {
  font-style: italic;
  font-family: 'Forum', serif;
  font-weight: 400;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(var(--text-rgb), 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.9;
  position: relative;
}

.svc-section + .cta {
  border-top: 1px solid rgba(var(--text-rgb), 0.1);
  padding-top: 6rem;
}


/* Footer
   ---------------------------------------- */
footer {
  border-top: 1px solid rgba(var(--text-rgb), 0.1);
  padding: 4rem 3.5rem 3rem;
  background: var(--bg);
}

.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.1);
  margin-bottom: 3rem;
  align-items: start;
}

.foot-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.foot-logo-name {
  font-family: 'Forum', serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.foot-logo-sub {
  font-size: 8px;
  color: var(--bronze);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.foot-col .t {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
  display: block;
}

.foot-col span,
.foot-col a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(var(--text-rgb), 0.7);
  text-decoration: none;
  line-height: 2;
  display: block;
  transition: color 0.2s;
}

.foot-col a:hover {
  color: var(--bronze);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.foot-copy,
.foot-crc {
  font-size: 10px;
  font-weight: 300;
  color: rgba(var(--text-rgb), 0.45);
  letter-spacing: 1px;
}


/* Responsivo
   ---------------------------------------- */
@media (max-width: 860px) {
  .header-inner { padding: 0 1.5rem; }

  .servicos,
  .sobre,
  .difs,
  .cta { padding-left: 1.5rem; padding-right: 1.5rem; }

  .svc-grid { grid-template-columns: 1fr; }

  .sobre-inner { grid-template-columns: 1fr; gap: 3rem; }

  .dif-row { grid-template-columns: 1fr; }

  .dif { border-right: none; border-bottom: 1px solid rgba(var(--text-rgb), 0.1); }
  .dif:last-child { border-bottom: none; }

  .trust-bar { flex-direction: column; gap: 0.5rem; }
  .trust-item { border-right: none; padding: 0.35rem 1rem; }

  .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  footer { padding: 3rem 1.5rem 2rem; }
}

@media (max-width: 700px) {
  .page-hero,
  .svc-section { padding-left: 1.5rem; padding-right: 1.5rem; }

  .page-hero { padding-top: 5rem; }

  .svc-item { padding: 2.5rem 1.5rem; }

  .svc-body { grid-template-columns: 1fr; }

  .header-nav a:not(.btn-gold) { display: none; }
}
