@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ====== Reset básico ====== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #2a2a2a;
  background: #fbf7f1;
}

h1, h2, h3, h4 {
  font-weight: 700;
}


@font-face {
  font-family: 'MinhaFonteHero';
  src: url('../fontes/Tempting.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



/* ====== Tokens ====== */
:root{
  --bg: #fbf7f1;
  --card: #ffffff;
  --text: #2a2a2a;
  --muted: #6e6a63;

  --gold: #c9a24b;
  --gold-2: #b8923e;

  --border: rgba(35, 32, 28, 0.12);
  --shadow: 0 18px 40px rgba(0,0,0,.10);

  --container: 1400px;
  
  
  --section-space: clamp(78px, 9vw, 110px);
  --section-light: #fbf7f1;
  --section-soft: #f3ede4;
}

/* ====== Util ====== */
.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ====== Espaçamento padrão das seções ====== */
main > section{
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

/* ====== Alternância de background entre seções ====== */
.hero,
.servicos,
.processo,
.depoimentos,
.faq{
  background: #4b0614;
}

.situacoes,
.sobre,
.pilares,
.atendimento,
.cta-final{
  background: #d6b685;
}


/* ====== Header ====== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #380711;
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
}

.header-inner{
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

/* Brand */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffff;
}

.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.brand-text{
  font-weight: 600;
  letter-spacing: .2px;
}

/* Nav */
.nav{
  display: flex;
  justify-content: center;
  gap: 26px;
}

.nav-link{
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background: var(--gold);
  transition: width .22s ease;
  border-radius: 2px;
}

.nav-link:hover::after{ width: 100%; }

/* CTA no header */
.header-cta{
  justify-self: end;
}

/* Mobile toggle */
.nav-toggle{
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.55);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span{
  display: block;
  height: 2px;
  background: #3b3730;
  border-radius: 2px;
}
.nav-toggle span + span{ margin-top: 6px; }

/* ====== Botões ====== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}

.btn-pill{
  border-radius: 0px; /* botão quadrado moderno */
  padding: 12px 18px;
  font-weight: 600;
  letter-spacing: .2px;
}

.btn-lg{
  padding: 16px 22px;
  font-size: 15.5px;
}

.btn-primary{
  background: #d6b685;
  color: #380711;
  box-shadow: 0 10px 22px rgba(201,162,75,.35);
}

.btn-primary:hover{
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.btn-arrow{
  font-size: 16px;
  line-height: 1;
}

/* ====== Hero ====== */
.hero{
  padding: var(--section-space) 0;
  background: #4b0614;
}

.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

/* Texto */
.hero-title{
  
  margin: 0 0 12px;
  font-family: 'MinhaFonteHero';
  font-size: clamp(40px, 5vw, 65px);
  line-height: 1.03;
  letter-spacing: .4px;
  color: #d6b685;
}

.hero-role{
  margin: 0 0 18px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
}

.hero-desc{
  margin: 0 0 22px;
  color: #ffffff;
  line-height: 1.55;
  max-width: 540px;
}

/* Chips */
.hero-chips{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 520px;
  margin: 0 0 26px;
  border-radius: 8px;
}

.chip{
  display: flex;
  align-items: center;
  justify-content: center;

  height: 42px;

  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.08);

  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;

  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.chip:hover{
  background: #d6b685;
  color: white;
  border-color: #c9a24b;
  transform: translateY(-2px);
}

/* Lado da foto */
.hero-photo-wrap{
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.6);
}

/* Halo atrás (círculo dourado) */
.hero-halo{
  position: absolute;
  inset: auto auto 50% 50%;
  transform: translate(-50%, 35%);
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%,
    rgba(201,162,75,.55) 0%,
    rgba(201,162,75,.25) 42%,
    rgba(201,162,75,0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

/* Imagem */
.hero-photo{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}


/* ====== Responsivo ====== */
@media (max-width: 980px){
  .header-inner{
    grid-template-columns: 1fr auto;
  }
  .nav{
    position: fixed;
    inset: 78px 16px auto 16px;
    background: #4b0614;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 14px;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
    z-index: 100;
  }
  .nav.open{ display: flex; }
  .nav-link{ padding: 10px 10px; color: #ffffff; }
  .nav-link::after{ background: #d6b685; }
  .nav-toggle{ display: inline-block; }
  .header-cta{ display: none; }
}

@media (max-width: 900px){
  .hero-inner{
    grid-template-columns: 1fr;
  }
  .hero-right{
    order: -1;
  }
  .hero-photo{
    height: 420px;
  }
  .hero-photo-wrap{
    max-width: 620px;
    margin: 0 auto;
  }
  .hero-halo{
    width: 460px;
    height: 460px;
    transform: translate(-50%, 40%);
  }
}

@media (max-width: 520px){
  .container{ width: min(var(--container), calc(100% - 28px)); }
  .hero{ padding: 34px 0 56px; }
  .hero-role{ font-size: 17px; }
  .hero-desc{ font-size: 14.8px; }
}

@media (max-width: 768px){

  .hero-chips{
    grid-template-columns: repeat(2, 1fr);
  }

}






/* ====== Serviços Jurídicos ====== */
.servicos{
  padding: var(--section-space) 0;
}

.servicos-head{
  text-align: center;
  margin-bottom: 46px;
}

.servicos-kicker{
  display: block;
  text-align: center;

  padding: 0;
  background: none;
  border: none;
  border-radius: 0;

  font-weight: 700;
  letter-spacing: 1px;
  font-size: 20px;

  color: #ffffff;
}

.servicos-title{
  margin: 18px 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 600;
  color: #d6b685;
}

.servicos-divider{
  width: 70px;
  height: 2px;
  margin: 14px auto 0;
  background: rgba(201,162,75,.55);
}

/* grid */
.servicos-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

/* card */
.servico-card{
  background: #30010b;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 28px 30px;
  transition: .3s;
}

.servico-card:hover{
  border-color: #d6b685;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* topo do card */
.servico-top{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

/* ícone dourado */
.servico-ic{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #d6b685;
  display: grid;
  place-items: center;
  color: #30010b;
  box-shadow: 0 10px 22px rgba(201,162,75,.25);
}

.servico-ic svg{
  width: 28px;
  height: 28px;
  display: block;
}

.servico-name{
  margin: 0;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: #d6b685;
}

.servico-sub{
  margin: 4px 0 0;
  color: #ffffff;
  font-weight: 500;
  
}

/* lista */
.servico-list{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.servico-list li{
  color: #ffffff;
  line-height: 1.35;
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}

.servico-list li::before{
  content: "";
  width: 8px;
  height: 2px;
  background: rgba(201,162,75,.65);
  position: absolute;
  left: 0;
  top: 0.85em;
  transform: translateY(-50%);
}

/* responsivo */
@media (max-width: 900px){
  .servicos-grid{
    grid-template-columns: 1fr;
  }
}



/* FIX: impedir SVGs gigantes (escopo: seção serviços) */
.servicos .servico-ic{
  overflow: hidden;
}

.servicos .servico-ic svg{
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  display: block !important;
}

.servicos .servico-ic svg *{
  vector-effect: non-scaling-stroke;
}





/* ====== Sobre a Advogada ====== */
.sobre{
  padding: var(--section-space) 0;
}

.sobre-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.sobre-kicker{
  display: block;

  padding: 0;
  background: none;
  border: none;
  border-radius: 0;

  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;

  color: #380711;
  
}

.sobre-title{
  margin: 0 0 6px;
  font-family: 'MinhaFonteHero';
  font-size: clamp(42px, 4.2vw, 52px);
  line-height: 2.30;
  color: #4b0614;
}

.sobre-role{
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 500;
  color: rgb(38, 32, 31);
}

.sobre-text p{
  margin: 0 0 14px;
  color: rgb(38, 32, 31);
  line-height: 1.65;
  max-width: 620px;
}




/* box de citação */
.sobre-quote{
  margin-top: 22px;
  padding: 22px 22px;
  background: #4b0614;
  border: 1px solid rgba(0,0,0,.08);
  border-left: 4px solid #4b0614;
  border-radius: 14px;
}

.sobre-quote p{
  margin: 0;
  color: rgba(201,162,75,.95);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
}

/* métricas */
.sobre-metrics{
  display: flex;
  gap: 54px;
  margin-top: 26px;
  

  justify-content: center;   /* centraliza horizontalmente */
  align-items: center;

  max-width: 620px;          /* mesma largura do texto */
}

.metric{
  display: flex;
  flex-direction: column;
  align-items: center;   /* centraliza número e texto */
  text-align: center;
}

.metric-value{
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  line-height: 1;
  color: #4b0614;
  font-weight: 400;
}

.metric-label{
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgb(38, 32, 31);
}

/* foto */
.sobre-photo-wrap{
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  background: rgba(255,255,255,.55);
}

.sobre-photo{
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

/* responsivo */
@media (max-width: 980px){
  .sobre-inner{
    grid-template-columns: 1fr;
  }
  .sobre-photo-wrap{
    max-width: 720px;
    margin: 0 auto;
  }
  .sobre-photo{
    height: 440px;
  }
}

@media (max-width: 520px){
  .sobre{
    padding: 64px 0 70px;
  }
  .sobre-role{
    font-size: 17px;
  }
  .sobre-metrics{
    gap: 28px;
  }
  .metric-value{
    font-size: 38px;
  }
}



/* ====== Depoimentos ====== */
.depoimentos{
  padding: var(--section-space) 0;
}

.depo-head{
  text-align: center;
  margin-bottom: 46px;
}

.depo-kicker{
  display: block;
  text-align: center;

  padding: 0;
  background: none;
  border: none;
  border-radius: 0;

  font-weight: 700;
  letter-spacing: 1px;
  font-size: 20px;

  color: #ffffff;
}

.depo-title{
  margin: 14px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 600;
  color: #d6b685;
}

.depo-divider{
  width: 70px;
  height: 2px;
  margin: 14px auto 0;
  background: rgba(201,162,75,.55);
}

/* grid */
.depo-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

/* card */
.depo-card{
  background: rgba(255,255,255,.72);
  border: 2px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 26px 26px;
  min-height: 260px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s;
}

/* estrelas */
.depo-stars{
  color: rgba(201,162,75,.95);
  letter-spacing: 3px;
  font-size: 14px;
}

/* texto */
.depo-text{
  margin: 16px 0 20px;
  color: rgba(58,51,44,.78);
  font-style: italic;
  line-height: 1.6;
}

/* usuário */
.depo-user{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: auto;
}

.depo-avatar{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(201,162,75,.14);
  border: 1px solid rgba(201,162,75,.35);
  color: rgba(201,162,75,.95);
  font-weight: 800;
}

.depo-name{
  font-weight: 800;
  color: rgba(58,51,44,.88);
  line-height: 1.1;
}

.depo-tag{
  margin-top: 4px;
  color: rgba(58,51,44,.60);
  font-weight: 600;
  font-size: 13px;
}

.depo-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}


/* ====== Depoimentos Google (blindado contra CSS antigo) ====== */
.depo-card.depo-google{
  display: block !important;         /* mata flex antigo do .depo-card */
  min-height: unset !important;
  padding: 16px 18px !important;
}

.depo-card.depo-google *{
  box-sizing: border-box;
}

/* topo em linha */
.depo-card.depo-google .dg-top{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
}

/* bloco esquerdo: avatar + nome */
.depo-card.depo-google .dg-left{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0;
}

/* avatar circular */
.depo-card.depo-google .dg-avatar{
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  background: #0B57D0 !important;
  color: #fff !important;
  font-weight: 800 !important;
  flex: 0 0 auto !important;
}

/* nome/tempo */
.depo-card.depo-google .dg-meta{ min-width: 0; }
.depo-card.depo-google .dg-name{
  font-weight: 800 !important;
  color: rgba(58,51,44,.92) !important;
  line-height: 1.1 !important;
  font-size: 15px !important;
}
.depo-card.depo-google .dg-time{
  margin-top: 2px !important;
  font-size: 12px !important;
  color: rgba(58,51,44,.55) !important;
  font-weight: 600 !important;
}

/* ícone Google no canto */
.depo-card.depo-google .dg-brand{
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 auto !important;
}
.depo-card.depo-google .dg-brand svg{
  width: 18px !important;
  height: 18px !important;
  display: block !important;
}

/* estrelas */
.depo-card.depo-google .dg-stars{
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 10px !important;
  margin-bottom: 8px !important;
}

.depo-card.depo-google .dg-stars-row{
  color: rgba(201,162,75,.95) !important;
  letter-spacing: 2px !important;
  font-size: 13px !important;
}

.depo-card.depo-google .dg-verified{
  width: 16px !important;
  height: 16px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  font-size: 10px !important;
  background: rgba(11, 87, 208, .14) !important;
  border: 1px solid rgba(11, 87, 208, .35) !important;
  color: #0B57D0 !important;
}

/* texto */
.depo-card.depo-google .dg-text{
  margin: 0 !important;
  padding: 0 !important;
  font-style: normal !important;
  font-weight: 500 !important;
  color: rgba(58,51,44,.82) !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
}



/* responsivo */
@media (max-width: 980px){
  .depo-grid{
    grid-template-columns: 1fr;
  }
  .depo-card{
    min-height: auto;
  }

  /* Carousel mobile: swipe nativo com scroll-snap */
  .depo-arrow{
    display: none !important; /* swipe substitui as setas no mobile */
  }
  .depo-carousel{
    gap: 0 !important;
  }
  .depo-track-wrapper{
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    width: 100% !important;
  }
  .depo-track-wrapper::-webkit-scrollbar{
    display: none;
  }
  .depo-track{
    width: max-content !important; /* sobrescreve o width:100% inline — permite scroll real */
    gap: 16px;
    padding: 4px 16px;
  }
  .depo-track .depo-card{
    width: calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}








/* ====== Nossos Pilares ====== */
.pilares{
  padding: var(--section-space) 0;
}

.pilares-head{
  text-align: center;
  margin-bottom: 46px;
}

.pilares-kicker{
  display: block;
  text-align: center;

  padding: 0;
  background: none;
  border: none;
  border-radius: 0;

  font-weight: 700;
  letter-spacing: 1px;
  font-size: 20px;

  color: #380711;
}

.pilares-title{
  margin: 14px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 600;
  color: #4b0614;
}

.pilares-divider{
  width: 70px;
  height: 2px;
  margin: 14px auto 0;
  background: rgba(201,162,75,.55);
}

/* grid 3x2 */
.pilares-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.pilar-card{
  background: rgba(255,255,255,.72);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 26px 26px;
  min-height: 150px;
  transition: .3s;
}

/* topo do card (ícone + título) */
.pilar-top{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

/* ícone dourado */
.pilar-ic{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #4b0614;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 22px rgba(201,162,75,.25);
  overflow: hidden;
}

.pilar-ic svg{
  width: 28px !important;
  height: 28px !important;
  display: block !important;
}

/* título */
.pilar-name{
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom:10px;
  color:#4b0614;
  font-family: 'Poppins', sans-serif;
  text-align:left;
}

/* descrição */
.pilar-text{
  margin: 0;
  color: rgb(38, 32, 31);
  font-weight: 500;
  line-height: 1.55;
  max-width: 340px;
}

/* hover premium */
.pilar-card:hover{
  border-color: #4b0614;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* responsivo */
@media (max-width: 980px){
  .pilares-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .pilar-text{
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .pilares-grid{
    grid-template-columns: 1fr;
  }
}



/* ====== Atendimento (Mapa) ====== */
.atendimento{
  padding: var(--section-space) 0;
  background:
    radial-gradient(900px 480px at 25% 20%, rgba(201,162,75,.10), transparent 55%),
    radial-gradient(900px 480px at 80% 55%, rgba(58,51,44,.08), transparent 60%),
    #d6b685;
  position: relative;
}

/* “grão” opcional sem imagem */
.atendimento::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.12;
  background-image:
    radial-gradient(rgba(0,0,0,.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mix-blend-mode: multiply;
}

.atendimento-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

/* título */
.atendimento-title{
  margin: 14px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 600;
  color: #4b0614;
}

/* texto */
.atendimento-text p{
  margin: 0 0 14px;
  color: rgb(38, 32, 31);
  line-height: 1.65;
  max-width: 640px;
}
.atendimento-text strong{
  color: rgba(58,51,44,.92);
}
.atendimento-text em{
  font-style: italic;
  font-weight: 600;
}

/* botão whatsapp (quadrado como você já definiu) */
.atendimento-cta{
  margin-top: 18px;
  border-radius: 0; /* garante quadrado */
  padding: 16px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d6b685;
  background: #4b0614;
  
}

.atendimento-cta-ic{
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
}

.atendimento-cta-ic svg{
  width: 20px !important;
  height: 20px !important;
  display: block !important;

  fill: #ffffff !important;
  color: #d6b685 !important;
  opacity: 1;
}

/* mapa */
/* mapa */
.map-wrap{
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.28);
  box-shadow: 0 20px 55px rgba(0,0,0,.10);
  overflow: hidden;
}

/* leve “wash” em cima do mapa para ficar na paleta */
.map-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 70% 45%,
    rgba(201,162,75,.14) 0%,
    rgba(201,162,75,.06) 35%,
    rgba(0,0,0,0) 70%
  );
  pointer-events:none;
}

.map-inner{
  position: relative;
  width: 100%;
}

.map-img{
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.9) contrast(.95);
}

/* pin base */
.map-pin,
.map-pin-sp{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(58,51,44,.78);
  font-weight: 700;
  z-index: 3;
}

/* Porto Alegre/RS */
.map-pin{
  right: 42px;
  bottom: 34px;
}

/* São Paulo/SP */
.map-pin-sp{
  position: absolute;
  top: 64%;
  left: 61%;
  transform: translate(-50%, -50%);
}

/* ponto */
.map-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ffffff; /* ponto central */
  position: relative;
  flex: 0 0 auto;
}

.map-line{
  position: absolute;
  left: 10px;
  top: 50%;
  width: 70px;
  height: 2px;
  background: #ffffff;
  transform: translateY(-50%);
}

@keyframes mapGlow{
  0%, 100%{
    transform: translate(-50%, -50%) scale(1);
    opacity: .18;
  }
  50%{
    transform: translate(-50%, -50%) scale(1.08);
    opacity: .28;
  }
}


@keyframes mapRipple{

  0%{
    transform: translate(-50%, -50%) scale(1);
    opacity: .5;
  }

  70%{
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }

  100%{
    opacity: 0;
  }

}

/* pulso animado */
.map-dot::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: 12px;
  height: 12px;

  border-radius: 999px;
  background: #ffffff;

  transform: translate(-50%, -50%) scale(1);

  animation: mapRipple 2s ease-out infinite;
}

/* linha do pin SP – vertical, sobe do ponto até a label */
.map-pin-sp .map-line{
  left: 50%;
  top: auto;
  bottom: 100%;
  width: 2px;
  height: 28px;
  transform: translateX(-50%);
}

/* texto do label */
.map-label{
  position: absolute;
  left: 50%;
  top: auto;
  bottom: calc(100% + 30px); /* fica acima do ponto */
  transform: translateX(-50%);

  font-size: .78rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(58,51,44,.85);
  text-align: center;

  width: max-content;

  background: rgba(255,255,255,.88);
  backdrop-filter: blur(3px);
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.10);
}

/* destaque opcional do pin de SP */
.map-pin-sp .map-label{
  color: rgba(58,51,44,.85);
}

/* animação */
@keyframes mapPulse{
  0%{
    opacity: .9;
    transform: translate(-50%, -50%) scale(.75);
  }
  70%{
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.2);
  }
  100%{
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.35);
  }
}

/* responsivo */
@media (max-width: 980px){
  .atendimento-inner{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .map-wrap{
    margin: 0 auto;
    max-width: 760px;
  }
  .map-pin{
    right: 26px;
    bottom: 22px;
  }
}

@media (max-width: 520px){
  .atendimento{
    padding: 64px 0 70px;
  }
  .atendimento-cta{
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}









/* ====== FAQ ====== */
.faq{
  padding: var(--section-space) 0;
}

.faq-head{
  text-align: center;
  margin-bottom: 34px;
}

.faq-title{
  margin: 14px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 600;
  color: #d6b685;
}

.faq-divider{
  width: 70px;
  height: 2px;
  margin: 0 auto;
  background: rgba(201,162,75,.55);
}

.faq-list{
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item{
  background: rgba(255,255,255,.72);
  border: 2px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}

/* pergunta (botão) */
.faq-q{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 12px;

  padding: 18px 18px;
  background: rgba(255,255,255,.35);
  border: 0;
  cursor: pointer;

  text-align: left;
  color: #4b0614;
  font-weight: 600;
  font-size: 16px;
}

/* setinha */
.faq-ic{
  width: 24px;
  height: 24px;
  position: relative;
}
.faq-ic::before{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #4b0614;
  border-bottom: 2px solid #4b0614;
  transform: rotate(45deg);
  transition: transform .18s ease;
}

/* resposta (animada via max-height) */
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
  border-top: 1px solid rgba(0,0,0,.06);
}

.faq-a-inner{
  padding: 16px 18px 18px;
  color: rgb(38, 32, 31);
  line-height: 1.65;
  font-weight: 500;
}

/* estado aberto */
/* estado aberto */
.faq-item.is-open .faq-a{
  /* agora o JS controla a altura real via style.maxHeight */
}
.faq-item.is-open .faq-ic::before{
  transform: rotate(225deg);
}

/* hover */
.faq-item:hover{
  border-color: rgba(201,162,75,.28);
}

















/* ====== CTA FINAL ====== */
.cta-final{
  position: relative;
  padding: 86px 0 92px;
  background: #d6b685;
  overflow: hidden;
}


.cta-final-inner{
  position: relative;
  text-align: center;
  max-width: 820px;
}

.cta-final-title{
  margin: 0 0 16px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.05;
  font-weight: 600;
  color: #4b0614;
  text-shadow: 0 2px 16px rgba(0,0,0,.15);
}

.cta-final-sub{
  margin: 0 auto 26px;
  max-width: 620px;
  color: rgb(38, 32, 31);
  line-height: 1.65;
  font-weight: 500;
}

/* botão branco */
.cta-final-btn{
  background: #4b0614;
  color: #d6b685;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
  padding: 18px 24px;
  border-radius: 999px; /* no print é arredondado */
}

.cta-final-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}

/* responsivo */
@media (max-width: 520px){
  .cta-final{ padding: 68px 0 72px; }
  .cta-final-btn{
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ====== FOOTER ====== */
.site-footer{
  background: #380711; /* marrom do print */
  color: rgba(255,255,255,.82);
  padding: 54px 0 0;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 34px;
}

/* marca do footer aproveita .brand, mas ajusta cores */
.site-footer .brand{
  color: #fff;
}

.site-footer .brand-mark{
  background: var(--gold);
  color: #fff;
}

.site-footer .brand-text{
  color: rgba(255,255,255,.92);
}

.footer-desc{
  margin: 14px 0 0;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-width: 320px;
}

/* colunas */
.footer-title{
  margin: 0 0 14px;
  font-weight: 800;
  color: rgba(201,162,75,.95);
  font-size: 16px;
}

.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-list a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-weight: 500;
}

.footer-list a:hover{
  color: #fff;
}

.footer-list li{
  display:flex;
  align-items:center;
}

.footer-ic{
  width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:10px;
  color:#ffffff;
  flex-shrink:0;
}

.footer-ic svg{
  width:18px;
  height:18px;
}


/* bottom */
.footer-bottom{
  padding: 18px 0 24px;
}

.footer-line{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 0 0 14px;
}

.footer-copy{
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,.62);
  font-size: 13.5px;
}

/* responsivo */
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .footer-desc{
    max-width: 100%;
  }
}



































/* =========================
   Situações (entre Hero e Serviços)
========================= */
.situacoes{
  padding-top: var(--section-space);
  padding-bottom: 3px;
}

.situacoes-head{
  text-align:center;
  margin-bottom:60px;
}
.situacoes-title{
  margin: 18px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 600;
  color: #4b0614;
}

.situacoes-subtitle{
  margin: 0;
  color: #380711;
  font-weight: 500;
  font-size: clamp(25px, 4vw, 10px);
  
}

/* trilho */
.situacoes-track{
  position: relative;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: flex-start;

  padding: 18px 10px 8px;
  margin: 0 auto;

  /* se não couber, vira scroll horizontal sem quebrar */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

/* linha horizontal por trás dos ícones */
.situacoes-track::before{
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 64px; /* altura do centro dos badges */
  height: 3px;
  background: rgba(35, 32, 28, 0.12);
  border-radius: 999px;
}

.situacao{
  width: 132px;
  flex: 0 0 auto;
  text-align: center;
  scroll-snap-align: center;
  position: relative;
}

.situacoes-svg{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: -100px auto 0;
}

.situacoes-svg svg{
  display: block;
  width: 100%;
  height: 650px;
}



/* bolha circular com “ponteiro” */
.situacao-badge{
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.85);
  border: 4px solid rgba(35,32,28,.32);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);

  display: grid;
  place-items: center;
  color: rgba(58,51,44,.78); /* controla a cor do SVG (currentColor) */

  position: relative;
  z-index: 1;
}

.situacao-badge::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 18px;
  height: 18px;

  transform: translateX(-50%) rotate(45deg);

  background: rgba(255,255,255,.85);
  border-right: 4px solid rgba(35,32,28,.32);
  border-bottom: 4px solid rgba(35,32,28,.32);
  border-radius: 0 0 6px 0;
}

/* ícones */
.situacao-badge svg{
  width: 38px;
  height: 38px;
}

/* texto */
.situacao-text{
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  color: rgba(58,51,44,.78);
}

.situacao-text strong{
  font-weight: 800;
  color: rgba(58,51,44,.90);
}

/* hover no desktop (bem sutil, na paleta) */
@media (hover: hover){
  .situacao:hover .situacao-badge{
    border-color: rgba(201,162,75,.70); /* seu --gold */
    color: rgba(201,162,75,.95);
    transform: translateY(-2px);
    transition: .18s ease;
  }
}

/* responsivo: melhora leitura */
@media (max-width: 560px){
  .situacao{ width: 150px; }
  .situacao-text{ font-size: 13.5px; }
  .situacoes-track::before{ top: 66px; }
}
















/* ---- Timeline vertical mobile (situacoes) ---- */
.sitm-wrap{
  display: none;
}

@media (max-width: 768px){
  .situacoes-svg{ display: none; }
  .sitm-wrap{ display: block; padding: 0 4px; }
}

.sitm-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sitm-left{
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 62px;
}

.sitm-circle{
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid;
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sitm-line{
  width: 3px;
  flex: 1;
  min-height: 22px;
  background: rgba(75,6,20,.15);
  border-radius: 999px;
}

.sitm-item:last-child .sitm-line{
  display: none;
}

.sitm-text{
  margin: 0;
  padding-top: 18px;
  padding-bottom: 28px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(58,51,44,.88);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}


/* =======================================
PROCESSO / COMO FUNCIONA
======================================= */

.processo{
  padding: var(--section-space) 0;
}

.processo-header{
  text-align:center;
  margin-bottom:60px;
}

.processo-kicker{
  display: block;
  text-align: center;

  padding: 0;
  background: none;
  border: none;
  border-radius: 0;

  font-weight: 700;
  letter-spacing: 1px;
  font-size: 20px;

  color: #ffffff;
}

.processo-title{
  margin: 14px 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 600;
  color: #d6b685;
  align-items:center;
  justify-content:center;
}

.processo-divider{
  width:40px;
  height:2px;
  background:#b89653;
  margin:18px auto 0;
}

.processo-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.processo-card{
  background:#30010b;
  padding:35px;
  border-radius:14px;
  text-align:center; /* centraliza título e texto */
  border:2px solid transparent;
  transition:.3s;
}

.processo-card:hover{
  border-color:#d6b685;
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.processo-num{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#d6b685;
  color:#4b0614;

  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:600;

  margin:0 auto 18px auto; /* centraliza horizontalmente */
}

.processo-card h3{
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom:10px;
  color:#d6b685;
  font-family:'Poppins', sans-serif;
}

.processo-card p{
  font-size:15px;
  color:#ffffff;
  line-height:1.6;
}


.processo-frase{
  max-width:880px;
  margin:50px auto 0;
  text-align:center;
  font-size:18px;
  line-height:1.7;
  color:#ffffff;
}

/* RESPONSIVO */

@media(max-width:1024px){

.processo-grid{
  grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:640px){

.processo-grid{
  grid-template-columns:1fr;
}

}







/* Botão WhatsApp flutuante */
.whatsapp-float{
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;

  background: #25D366;
  color: white;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);

  z-index: 9999;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float svg{
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover{
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}








/* CARD GOOGLE REVIEW */

.depo-google{
  background:#fff;
  border-radius:16px;
  padding:22px;
  box-shadow:0 2px 12px rgba(0,0,0,0.08);
  border:1px solid #e6e6e6;
  max-width:360px;
}

/* topo */

.dg-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.dg-user{
  display:flex;
  align-items:center;
  gap:10px;
}

.dg-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  object-fit:cover;
}

.dg-meta{
  display:flex;
  flex-direction:column;
}

.dg-name{
  font-weight:600;
  font-size:16px;
}

.dg-time{
  font-size:13px;
  color:#777;
}

/* logo google */

.dg-google{
  width:30px;
}

/* estrelas */

.dg-stars{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.dg-stars-row{
  color:#fbbc04;
  font-size:25px;
  letter-spacing:2px;
}

/* verificado */

.dg-verify{
  width:29px;
}

.dg-stars img{
  width:20px;
}

/* texto */

.dg-text{
  font-size:15px;
  line-height:1.5;
  color:#333;
}



/* ====== Espaço padrão dos cabeçalhos das seções ====== */
.servicos-head,
.depo-head,
.pilares-head,
.faq-head,
.situacoes-head,
.processo-header{
  margin-bottom: clamp(34px, 5vw, 56px);
}


.situacoes-head{
  margin-bottom: 0px;
}



/* ====================================================
   RESPONSIVIDADE GLOBAL – 768px (Tablet)
==================================================== */
@media (max-width: 768px){

  /* --- Hero --- */
  .hero-photo{ height: 340px; }

  /* --- Sobre --- */
  .sobre-photo{ height: 360px; }

  /* --- Serviços --- */
  .servicos-grid{ gap: 18px; }
  .servico-card{ padding: 20px 22px; }
  .servico-ic{ width: 44px; height: 44px; }
  .servico-top{ grid-template-columns: 44px 1fr; }

  /* --- Pilares --- */
  .pilares-grid{ gap: 18px; }
  .pilar-card{ padding: 18px 20px; }
  .pilar-ic{ width: 44px; height: 44px; }
  .pilar-top{ grid-template-columns: 44px 1fr; }

  /* --- Depoimentos --- */
  .depo-grid{ gap: 18px; }
  .depo-card{ padding: 20px; }

  /* --- Processo --- */
  .processo-grid{ gap: 20px; }
  .processo-card{ padding: 26px 20px; }

  /* --- Footer --- */
  .footer-grid{ grid-template-columns: 1fr 1fr; }

}


/* ====================================================
   RESPONSIVIDADE GLOBAL – 480px (Mobile pequeno)
==================================================== */
@media (max-width: 480px){

  .container{ width: min(var(--container), calc(100% - 20px)); }

  /* --- Hero --- */
  .hero-photo{ height: 260px; }

  /* --- Sobre --- */
  .sobre-photo{ height: 280px; }
  .sobre-metrics{ flex-wrap: wrap; gap: 20px; justify-content: center; }

  /* --- Serviços --- */
  .servico-card{ padding: 16px 18px; }
  .servicos-grid{ gap: 14px; }

  /* --- Pilares --- */
  .pilar-card{ padding: 16px 18px; }
  .pilares-grid{ gap: 14px; }

  /* --- Depoimentos --- */
  .depo-card{ padding: 16px; }
  .depo-grid{ gap: 14px; }

  /* --- Processo --- */
  .processo-card{ padding: 22px 16px; }
  .processo-grid{ gap: 14px; }
  .processo-frase{ font-size: 15px; }

  /* --- FAQ --- */
  .faq-q{ font-size: 14.5px; padding: 14px 16px; }
  .faq-a-inner{ padding: 14px 16px; }
  .faq-list{ gap: 12px; }

  /* --- Footer --- */
  .footer-grid{ grid-template-columns: 1fr; }

  /* --- WhatsApp flutuante --- */
  .whatsapp-float{ right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .whatsapp-float svg{ width: 26px; height: 26px; }

}













.brand-logo{
  height: 130px;
  object-fit: contain;

  /* remove “respiro” visual */
  margin-top: 15px;
  margin-bottom: 0px;
}




.brand-logoheader{
  height: 60px;
  object-fit: contain;

  /* remove “respiro” visual */
  margin-top: 0px;
  margin-bottom: 0px;  
}