:root {
  --dark-blue: #435060;
  --blue:      #7B97A3;
  --gray:      #CBC9C8;
  --gold1:     #AB8D60;
  --gold2:     #EED9AB;
  --white:     #F8F7F5;
  --bg:        #F2F1EF;
  --dark:      #2c3641;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark-blue);
  overflow-x: hidden;
}

::selection { background: var(--gold2); color: var(--dark-blue); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); }

/* ── Animations ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes checkDraw {
  from { stroke-dashoffset: 40; }
  to   { stroke-dashoffset: 0; }
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; }
  50%      { opacity: .8; }
}

/* ── NAV ─────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(242,241,239,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(67,80,96,.04);
  transition: background .3s, border-color .3s;
}
#nav.scrolled {
  background: rgba(242,241,239,0.95);
  border-color: rgba(67,80,96,.1);
}
#nav img { height: 60px; object-fit: contain; }
#nav ul { display: flex; gap: 36px; list-style: none; }
#nav ul a {
  text-decoration: none; font-size: 12px; letter-spacing: 2px;
  color: var(--dark-blue); opacity: .65; transition: opacity .2s;
}
#nav ul a:hover { opacity: 1; }
#nav-cta {
  background: var(--dark-blue); color: var(--white);
  padding: 10px 24px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 2px;
  transition: background .25s;
}
#nav-cta:hover { background: var(--blue); }

/* ── HERO ────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  background: var(--dark-blue);
  padding: clamp(80px,10vw,140px) clamp(24px,8vw,120px);
}
#hero .ring1 {
  position: absolute; top: -100px; right: -100px;
  width: 480px; height: 480px;
  border: 1px solid rgba(123,151,163,.1); border-radius: 50%;
  pointer-events: none;
}
#hero .ring2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border: 1px solid rgba(123,151,163,.07); border-radius: 50%;
  pointer-events: none;
}
#hero .hex {
  position: absolute; top: 50%; right: 8%;
  transform: translateY(-50%); opacity: .04; pointer-events: none;
}
#hero .content { position: relative; z-index: 1; max-width: 680px; }
#hero .tag {
  font-size: 10px; letter-spacing: 3px; color: var(--gold2);
  margin-bottom: 14px; font-weight: 500;
  animation: fadeUp .6s ease both;
}
#hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px,7vw,90px); font-weight: 300; line-height: 1.05;
  color: var(--white); margin-bottom: 28px;
  animation: fadeUp .7s .1s ease both;
}
#hero h1 em { font-style: italic; color: var(--gold2); }
#hero p {
  font-size: clamp(14px,1.5vw,16px); line-height: 1.9; color: var(--gray);
  max-width: 480px; margin-bottom: 52px; font-weight: 300;
  animation: fadeUp .7s .2s ease both;
}
#hero .btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold1), var(--gold2));
  color: var(--dark-blue); padding: 15px 36px; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 2px; font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(171,141,96,.4);
}
.btn-outline {
  background: transparent; color: var(--gray); padding: 14px 36px;
  border: 1px solid rgba(203,201,200,.3); cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 2px;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gray); color: var(--white); }
#hero .scroll-ind {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .4; animation: fadeIn 1s 1s ease both;
}
#hero .scroll-ind span { font-size: 9px; letter-spacing: 3px; color: var(--gray); }
#hero .scroll-ind .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollPulse 2s 1.5s ease-in-out infinite;
}

/* ── SERVICES ────────────────────────────────── */
#servicos { padding: 120px 60px; background: white; }
.section-tag {
  font-size: 10px; letter-spacing: 3px; color: var(--gold1);
  margin-bottom: 14px; font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px,4vw,52px); font-weight: 300; line-height: 1.15;
  color: var(--dark-blue);
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--blue); }
.section-title em.gold { color: var(--gold2); }
.section-line {
  width: 48px; height: 1px; background: var(--gold1); margin-top: 20px;
}
.section-header {
  margin-bottom: 70px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.section-header.visible { opacity: 1; transform: none; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.service-card {
  padding: 48px 36px; background: var(--bg); cursor: default;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s, transform .5s, background .3s;
}
.service-card.visible { opacity: 1; transform: none; }
.service-card:hover { background: var(--dark-blue); }
.service-card .num {
  font-size: 11px; letter-spacing: 2px; color: var(--blue);
  margin-bottom: 28px; transition: color .3s;
}
.service-card:hover .num { color: var(--gold2); }
.service-card svg { margin-bottom: 18px; }
.service-card svg path { transition: stroke .3s; }
.service-card:hover svg path { stroke: var(--gold2) !important; }
.service-card .s-title {
  font-size: 15px; font-weight: 500; color: var(--dark-blue);
  margin-bottom: 10px; transition: color .3s;
}
.service-card:hover .s-title { color: var(--white); }
.service-card .s-desc {
  font-size: 13px; line-height: 1.85; color: #7a8a96;
  font-weight: 300; transition: color .3s;
}
.service-card:hover .s-desc { color: rgba(203,201,200,.8); }

/* ── PROCESSO ────────────────────────────────── */
#processo {
  padding: 120px 60px; background: var(--dark-blue);
  position: relative; overflow: hidden;
}
#processo .ring {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(123,151,163,.07); border-radius: 50%;
  pointer-events: none;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
}
.step-card {
  padding: 40px 32px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s, transform .5s;
}
.step-card.visible { opacity: 1; transform: none; }
.step-card + .step-card { border-left: 1px solid rgba(123,151,163,.15); }
.step-card .step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300;
  color: rgba(123,151,163,.2); line-height: 1; margin-bottom: 20px;
}
.step-card .step-title {
  font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 10px;
}
.step-card .step-desc {
  font-size: 13px; color: var(--blue); line-height: 1.8; font-weight: 300;
}

/* ── DIFERENCIAIS ────────────────────────────── */
#diferenciais {
  padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; background: white;
}
.dif-left {
  opacity: 0; transform: translateY(20px); transition: all .6s;
}
.dif-left.visible { opacity: 1; transform: none; }
.dif-left p {
  font-size: 14px; line-height: 2; color: #7a8a96;
  max-width: 460px; font-weight: 300; margin-top: 28px;
}
.dif-list { display: flex; flex-direction: column; gap: 8px; margin-top: 36px; }
.dif-item {
  display: flex; align-items: flex-start; gap: 18;
  padding: 18px 16px;
  border-left: 2px solid transparent;
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s, transform .4s, border-color .25s;
}
.dif-item.visible { opacity: 1; transform: none; }
.dif-item:hover { border-left-color: var(--gold1); }
.dif-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold1); margin-top: 7px; flex-shrink: 0;
}
.dif-item strong {
  display: block; font-size: 14px; font-weight: 500;
  color: var(--dark-blue); margin-bottom: 4px;
}
.dif-item span { font-size: 13px; color: #7a8a96; line-height: 1.7; font-weight: 300; }
.dif-right { position: relative; }
.dif-right .corner-border {
  position: absolute; top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 1px solid rgba(171,141,96,.2);
  z-index: 0; pointer-events: none;
}
.dif-card {
  background: var(--dark-blue); padding: 60px 48px;
  position: relative; z-index: 1; overflow: hidden;
}
.dif-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; line-height: 1.6;
  color: var(--white); margin-bottom: 48px;
}
.dif-card blockquote em { font-style: italic; color: var(--gold2); }
.dif-contacts { display: flex; flex-direction: column; gap: 14px; }
.dif-contacts .row { display: flex; align-items: center; gap: 14px; }
.dif-contacts span { font-size: 13px; color: var(--gray); font-weight: 300; }

/* ── CONTATO ─────────────────────────────────── */
#contato {
  padding: 120px 60px; background: var(--bg);
  border-top: 1px solid rgba(67,80,96,.07);
}
.contato-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  opacity: 0; transform: translateY(24px);
  transition: all .7s;
}
.contato-grid.visible { opacity: 1; transform: none; }
.contato-left { padding-top: 8px; }
.contato-left p {
  font-size: 14px; line-height: 2; color: #7a8a96;
  font-weight: 300; margin-bottom: 40px;
}
.contato-left p strong { color: var(--gold1); }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item .icon-box {
  width: 36px; height: 36px; background: white;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item span { font-size: 13px; color: var(--dark-blue); font-weight: 300; }

/* ── WhatsApp CTA ─────────────────────────────── */
.contato-right {
  display: flex; align-items: center; justify-content: center;
}
.wa-wrapper {
  display: flex; flex-direction: column;
  align-items: center; gap: 28px; text-align: center;
}
.wa-wrapper p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; line-height: 1.5;
  color: var(--dark-blue); max-width: 300px;
}
.wa-wrapper p em { font-style: italic; color: var(--blue); }

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(67,80,96,.45); }
  70%  { box-shadow: 0 0 0 22px rgba(67,80,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,80,96,0); }
}
@keyframes waRing {
  0%   { box-shadow: 0 0 0 0 rgba(123,151,163,.3); }
  70%  { box-shadow: 0 0 0 40px rgba(123,151,163,0); }
  100% { box-shadow: 0 0 0 0 rgba(123,151,163,0); }
}

.btn-whatsapp {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 36px;
  background: var(--dark-blue);
  color: var(--white); border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 2.5px; font-weight: 600;
  text-decoration: none;
  animation: waPulse 2s ease-in-out infinite;
  transition: background .25s, transform .2s;
  position: relative;
}
.btn-whatsapp::before {
  content: '';
  position: absolute; inset: 0;
  animation: waRing 2s .4s ease-in-out infinite;
  pointer-events: none;
}
.btn-whatsapp:hover {
  background: var(--blue);
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 10px 32px rgba(67,80,96,.3);
}
.btn-whatsapp svg { flex-shrink: 0; }
.wa-hint {
  font-size: 11px; color: var(--blue);
  letter-spacing: 1px; margin-top: -10px;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--dark); padding: 60px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; position: relative; overflow: hidden;
}
footer img { height: 60px; object-fit: contain; margin-bottom: 20px; display: block; }
footer > div > p {
  font-size: 12px; color: rgba(203,201,200,.5);
  line-height: 1.9; font-weight: 300; max-width: 280px;
}
footer h4 {
  font-size: 10px; letter-spacing: 2.5px;
  color: var(--gold2); margin-bottom: 20px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  text-decoration: none; font-size: 13px;
  color: rgba(203,201,200,.55); font-weight: 300; transition: color .2s;
}
footer ul a:hover { color: var(--gray); }
.footer-bottom {
  background: #252d37; padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(203,201,200,.3); }

/* ── Floating WhatsApp Button ────────────────── */
@keyframes waFloatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(67,80,96,.5); }
  70%  { box-shadow: 0 0 0 18px rgba(67,80,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,80,96,0); }
}

#wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  display: flex; align-items: center; gap: 12px;
  background: var(--dark-blue);
  color: var(--white);
  padding: 14px 22px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 2px; font-weight: 600;
  animation: waFloatPulse 2.2s ease-in-out infinite;
  transition: background .25s, opacity .4s, transform .4s;
  opacity: 0; transform: translateY(16px);
  pointer-events: none;
}
#wa-float.show {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
#wa-float:hover {
  background: var(--blue);
  animation: none;
  box-shadow: 0 8px 28px rgba(67,80,96,.35);
}
#wa-float svg { flex-shrink: 0; }

/* ── Canvas (particles) ──────────────────────── */
canvas.particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Textos descritivos — troca #7a8a96 por cor mais escura e peso maior */
.service-card .s-desc,
.step-card .step-desc,
.dif-item span,
.contato-left p,
.dif-left p {
  color: #4a5a68;        /* era #7a8a96 */
  font-weight: 400;      /* era 300 */
  font-size: 14px;       /* era 13px */
}

/* Tags de seção — maiores e mais legíveis */
.section-tag,
.contato-left .section-tag {
  font-size: 12px;       /* era 10px */
  letter-spacing: 2px;   /* era 3px */
}

/* Títulos de cards */
.service-card .s-title,
.step-card .step-title,
.dif-item strong {
  font-size: 16px;       /* era 14-15px */
}

/* Nav links */
#nav ul a {
  font-size: 13px;       /* era 12px */
  opacity: .85;          /* era .65 — mais visível */
}

/* Footer links — mais contraste */
footer ul a {
  color: rgba(203,201,200,.85);   /* era .55 */
}
footer > div > p {
  color: rgba(203,201,200,.75);   /* era .5 */
}

/* Hero parágrafo */
#hero p {
  color: #d8d4ce;        /* era var(--gray) #CBC9C8 — um pouco mais claro */
  font-weight: 400;      /* era 300 */
}

/* Contato info */
.contact-item span {
  font-size: 14px;       /* era 13px */
  font-weight: 400;      /* era 300 */
}

.step-card .step-desc {
  color: #c8d4da;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.9;
}

.step-card .step-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.step-card .step-n {
  color: rgba(200, 212, 218, 0.35);
}

.step-card .step-desc {
  font-size: 17px;
}

.step-card .step-title {
  font-size: 20px;
}

.service-card .s-title {
  font-size: 19px;
}

.service-card .s-desc {
  font-size: 16px;
}

.dif-item strong {
  font-size: 18px;
}

.dif-item span {
  font-size: 16px;
}

#hero p {
  font-size: clamp(17px, 1.8vw, 20px);
}

/* Diferenciais */
.dif-left > p {
  font-size: 16px;
  font-weight: 400;
  color: #4a5a68;
}

/* Contato */
.contato-left p {
  font-size: 16px;
  font-weight: 400;
  color: #4a5a68;
}

.contact-item span {
  font-size: 16px;
  font-weight: 400;
  color: #435060;
}

.wa-wrapper p {
  font-size: 20px;
  color: #435060;
  font-weight: 400;
}

.wa-hint {
  font-size: 14px;
  color: #435060;
}

/* Processo — descrições mais legíveis */
.step-card .step-desc {
  color: #dce6ea;
  font-size: 16px;
  font-weight: 400;
}

/* Diferenciais — card escuro */
.dif-contacts span {
  font-size: 15px;
  font-weight: 400;
  color: #c8d4da;
}

.dif-card blockquote {
  font-size: 22px;
  line-height: 1.7;
  color: #f0f4f6;
}

/* Nav links mais visíveis */
#nav ul a {
  opacity: 1;
  color: #435060;
  font-size: 13px;
  font-weight: 500;
}

/* Section tag mais visível */
.section-tag {
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 768px) {

  /* NAV */
  #nav {
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }
  #nav ul {
    display: none;
  }
  #nav-cta {
    padding: 10px 16px;
    font-size: 10px;
  }

  /* HERO */
  #hero {
    padding: 100px 24px 60px;
  }
  #hero .btns {
    flex-direction: column;
  }
  .btn-gold, .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* SERVICES */
  #servicos {
    padding: 80px 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* PROCESSO */
  #processo {
    padding: 80px 24px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card + .step-card {
    border-left: none;
    border-top: 1px solid rgba(123,151,163,.15);
  }

  /* DIFERENCIAIS */
  #diferenciais {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 48px;
  }
  .dif-right .corner-border {
    display: none;
  }

  /* CONTATO */
  #contato {
    padding: 80px 24px;
  }
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contato-right {
    justify-content: flex-start;
  }
  .wa-wrapper {
    align-items: flex-start;
    text-align: left;
  }

  /* FOOTER */
  footer {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 36px;
  }
  .footer-bottom {
    padding: 16px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* FLOATING BUTTON */
  #wa-float {
    bottom: 20px;
    right: 16px;
    padding: 12px 18px;
    font-size: 10px;
  }
}

:root {
  --dark-blue: #435060;
  --blue:      #7B97A3;
  --gray:      #CBC9C8;
  --gold1:     #AB8D60;
  --gold2:     #EED9AB;
  --white:     #F8F7F5;
  --bg:        #F2F1EF;
  --dark:      #2c3641;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark-blue);
  overflow-x: hidden;
}

::selection { background: var(--gold2); color: var(--dark-blue); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); }

/* ── Animations ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes checkDraw {
  from { stroke-dashoffset: 40; }
  to   { stroke-dashoffset: 0; }
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; }
  50%      { opacity: .8; }
}

/* ── NAV ─────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(242,241,239,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(67,80,96,.04);
  transition: background .3s, border-color .3s;
}
#nav.scrolled {
  background: rgba(242,241,239,0.95);
  border-color: rgba(67,80,96,.1);
}
#nav img { height: 60px; object-fit: contain; }
#nav ul { display: flex; gap: 36px; list-style: none; }
#nav ul a {
  text-decoration: none; font-size: 12px; letter-spacing: 2px;
  color: var(--dark-blue); opacity: .65; transition: opacity .2s;
}
#nav ul a:hover { opacity: 1; }
#nav-cta {
  background: var(--dark-blue); color: var(--white);
  padding: 10px 24px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 2px;
  transition: background .25s;
}
#nav-cta:hover { background: var(--blue); }

/* ── HERO ────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  background: var(--dark-blue);
  padding: clamp(80px,10vw,140px) clamp(24px,8vw,120px);
}
#hero .ring1 {
  position: absolute; top: -100px; right: -100px;
  width: 480px; height: 480px;
  border: 1px solid rgba(123,151,163,.1); border-radius: 50%;
  pointer-events: none;
}
#hero .ring2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border: 1px solid rgba(123,151,163,.07); border-radius: 50%;
  pointer-events: none;
}
#hero .hex {
  position: absolute; top: 50%; right: 8%;
  transform: translateY(-50%); opacity: .04; pointer-events: none;
}
#hero .content { position: relative; z-index: 1; max-width: 680px; }
#hero .tag {
  font-size: 10px; letter-spacing: 3px; color: var(--gold2);
  margin-bottom: 14px; font-weight: 500;
  animation: fadeUp .6s ease both;
}
#hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px,7vw,90px); font-weight: 300; line-height: 1.05;
  color: var(--white); margin-bottom: 28px;
  animation: fadeUp .7s .1s ease both;
}
#hero h1 em { font-style: italic; color: var(--gold2); }
#hero p {
  font-size: clamp(14px,1.5vw,16px); line-height: 1.9; color: var(--gray);
  max-width: 480px; margin-bottom: 52px; font-weight: 300;
  animation: fadeUp .7s .2s ease both;
}
#hero .btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold1), var(--gold2));
  color: var(--dark-blue); padding: 15px 36px; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 2px; font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(171,141,96,.4);
}
.btn-outline {
  background: transparent; color: var(--gray); padding: 14px 36px;
  border: 1px solid rgba(203,201,200,.3); cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 2px;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gray); color: var(--white); }
#hero .scroll-ind {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .4; animation: fadeIn 1s 1s ease both;
}
#hero .scroll-ind span { font-size: 9px; letter-spacing: 3px; color: var(--gray); }
#hero .scroll-ind .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollPulse 2s 1.5s ease-in-out infinite;
}

/* ── SERVICES ────────────────────────────────── */
#servicos { padding: 120px 60px; background: white; }
.section-tag {
  font-size: 10px; letter-spacing: 3px; color: var(--gold1);
  margin-bottom: 14px; font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px,4vw,52px); font-weight: 300; line-height: 1.15;
  color: var(--dark-blue);
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--blue); }
.section-title em.gold { color: var(--gold2); }
.section-line {
  width: 48px; height: 1px; background: var(--gold1); margin-top: 20px;
}
.section-header {
  margin-bottom: 70px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.section-header.visible { opacity: 1; transform: none; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.service-card {
  padding: 48px 36px; background: var(--bg); cursor: default;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s, transform .5s, background .3s;
}
.service-card.visible { opacity: 1; transform: none; }
.service-card:hover { background: var(--dark-blue); }
.service-card .num {
  font-size: 11px; letter-spacing: 2px; color: var(--blue);
  margin-bottom: 28px; transition: color .3s;
}
.service-card:hover .num { color: var(--gold2); }
.service-card svg { margin-bottom: 18px; }
.service-card svg path { transition: stroke .3s; }
.service-card:hover svg path { stroke: var(--gold2) !important; }
.service-card .s-title {
  font-size: 15px; font-weight: 500; color: var(--dark-blue);
  margin-bottom: 10px; transition: color .3s;
}
.service-card:hover .s-title { color: var(--white); }
.service-card .s-desc {
  font-size: 13px; line-height: 1.85; color: #7a8a96;
  font-weight: 300; transition: color .3s;
}
.service-card:hover .s-desc { color: rgba(203,201,200,.8); }

/* ── PROCESSO ────────────────────────────────── */
#processo {
  padding: 120px 60px; background: var(--dark-blue);
  position: relative; overflow: hidden;
}
#processo .ring {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(123,151,163,.07); border-radius: 50%;
  pointer-events: none;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
}
.step-card {
  padding: 40px 32px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s, transform .5s;
}
.step-card.visible { opacity: 1; transform: none; }
.step-card + .step-card { border-left: 1px solid rgba(123,151,163,.15); }
.step-card .step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300;
  color: rgba(123,151,163,.2); line-height: 1; margin-bottom: 20px;
}
.step-card .step-title {
  font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 10px;
}
.step-card .step-desc {
  font-size: 13px; color: var(--blue); line-height: 1.8; font-weight: 300;
}

/* ── DIFERENCIAIS ────────────────────────────── */
#diferenciais {
  padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; background: white;
}
.dif-left {
  opacity: 0; transform: translateY(20px); transition: all .6s;
}
.dif-left.visible { opacity: 1; transform: none; }
.dif-left p {
  font-size: 14px; line-height: 2; color: #7a8a96;
  max-width: 460px; font-weight: 300; margin-top: 28px;
}
.dif-list { display: flex; flex-direction: column; gap: 8px; margin-top: 36px; }
.dif-item {
  display: flex; align-items: flex-start; gap: 18;
  padding: 18px 16px;
  border-left: 2px solid transparent;
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s, transform .4s, border-color .25s;
}
.dif-item.visible { opacity: 1; transform: none; }
.dif-item:hover { border-left-color: var(--gold1); }
.dif-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold1); margin-top: 7px; flex-shrink: 0;
}
.dif-item strong {
  display: block; font-size: 14px; font-weight: 500;
  color: var(--dark-blue); margin-bottom: 4px;
}
.dif-item span { font-size: 13px; color: #7a8a96; line-height: 1.7; font-weight: 300; }
.dif-right { position: relative; }
.dif-right .corner-border {
  position: absolute; top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 1px solid rgba(171,141,96,.2);
  z-index: 0; pointer-events: none;
}
.dif-card {
  background: var(--dark-blue); padding: 60px 48px;
  position: relative; z-index: 1; overflow: hidden;
}
.dif-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; line-height: 1.6;
  color: var(--white); margin-bottom: 48px;
}
.dif-card blockquote em { font-style: italic; color: var(--gold2); }
.dif-contacts { display: flex; flex-direction: column; gap: 14px; }
.dif-contacts .row { display: flex; align-items: center; gap: 14px; }
.dif-contacts span { font-size: 13px; color: var(--gray); font-weight: 300; }

/* ── CONTATO ─────────────────────────────────── */
#contato {
  padding: 120px 60px; background: var(--bg);
  border-top: 1px solid rgba(67,80,96,.07);
}
.contato-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  opacity: 0; transform: translateY(24px);
  transition: all .7s;
}
.contato-grid.visible { opacity: 1; transform: none; }
.contato-left { padding-top: 8px; }
.contato-left p {
  font-size: 14px; line-height: 2; color: #7a8a96;
  font-weight: 300; margin-bottom: 40px;
}
.contato-left p strong { color: var(--gold1); }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item .icon-box {
  width: 36px; height: 36px; background: white;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item span { font-size: 13px; color: var(--dark-blue); font-weight: 300; }

/* ── WhatsApp CTA ─────────────────────────────── */
.contato-right {
  display: flex; align-items: center; justify-content: center;
}
.wa-wrapper {
  display: flex; flex-direction: column;
  align-items: center; gap: 28px; text-align: center;
}
.wa-wrapper p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; line-height: 1.5;
  color: var(--dark-blue); max-width: 300px;
}
.wa-wrapper p em { font-style: italic; color: var(--blue); }

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(67,80,96,.45); }
  70%  { box-shadow: 0 0 0 22px rgba(67,80,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,80,96,0); }
}
@keyframes waRing {
  0%   { box-shadow: 0 0 0 0 rgba(123,151,163,.3); }
  70%  { box-shadow: 0 0 0 40px rgba(123,151,163,0); }
  100% { box-shadow: 0 0 0 0 rgba(123,151,163,0); }
}

.btn-whatsapp {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 36px;
  background: var(--dark-blue);
  color: var(--white); border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 2.5px; font-weight: 600;
  text-decoration: none;
  animation: waPulse 2s ease-in-out infinite;
  transition: background .25s, transform .2s;
  position: relative;
}
.btn-whatsapp::before {
  content: '';
  position: absolute; inset: 0;
  animation: waRing 2s .4s ease-in-out infinite;
  pointer-events: none;
}
.btn-whatsapp:hover {
  background: var(--blue);
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 10px 32px rgba(67,80,96,.3);
}
.btn-whatsapp svg { flex-shrink: 0; }
.wa-hint {
  font-size: 11px; color: var(--blue);
  letter-spacing: 1px; margin-top: -10px;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--dark); padding: 60px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; position: relative; overflow: hidden;
}
footer img { height: 60px; object-fit: contain; margin-bottom: 20px; display: block; }
footer > div > p {
  font-size: 12px; color: rgba(203,201,200,.5);
  line-height: 1.9; font-weight: 300; max-width: 280px;
}
footer h4 {
  font-size: 10px; letter-spacing: 2.5px;
  color: var(--gold2); margin-bottom: 20px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  text-decoration: none; font-size: 13px;
  color: rgba(203,201,200,.55); font-weight: 300; transition: color .2s;
}
footer ul a:hover { color: var(--gray); }
.footer-bottom {
  background: #252d37; padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(203,201,200,.3); }

/* ── Floating WhatsApp Button ────────────────── */
@keyframes waFloatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(67,80,96,.5); }
  70%  { box-shadow: 0 0 0 18px rgba(67,80,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,80,96,0); }
}

#wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  display: flex; align-items: center; gap: 12px;
  background: var(--dark-blue);
  color: var(--white);
  padding: 14px 22px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 2px; font-weight: 600;
  animation: waFloatPulse 2.2s ease-in-out infinite;
  transition: background .25s, opacity .4s, transform .4s;
  opacity: 0; transform: translateY(16px);
  pointer-events: none;
}
#wa-float.show {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
#wa-float:hover {
  background: var(--blue);
  animation: none;
  box-shadow: 0 8px 28px rgba(67,80,96,.35);
}
#wa-float svg { flex-shrink: 0; }

/* ── Canvas (particles) ──────────────────────── */
canvas.particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ═══════════════════════════════════════════════
   MOBILE — até 768px
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  #nav {
    padding: 14px 20px;
    position: fixed;
  }
  #nav ul { display: none; }
  #nav img { height: 44px; }
  #nav-cta { padding: 9px 14px; font-size: 10px; letter-spacing: 1.5px; }

  /* ── HERO ── */
  #hero {
    padding: 110px 24px 72px;
    min-height: 100svh;
  }
  #hero .ring1, #hero .ring2, #hero .hex { display: none; }
  #hero h1 { font-size: clamp(38px, 10vw, 56px); margin-bottom: 20px; }
  #hero p  { font-size: 16px; margin-bottom: 36px; }
  #hero .btns { flex-direction: column; gap: 12px; }
  .btn-gold, .btn-outline {
    width: 100%; text-align: center;
    padding: 16px 24px; font-size: 12px;
  }
  #hero .scroll-ind { display: none; }

  /* ── SERVICES ── */
  #servicos { padding: 72px 24px; }
  .section-header { margin-bottom: 40px; }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .service-card { padding: 32px 24px; }

  /* ── PROCESSO ── */
  #processo { padding: 72px 24px; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-card {
    padding: 32px 24px;
    border-left: none !important;
    border-top: 1px solid rgba(123,151,163,.15);
  }
  .step-card:first-child { border-top: none; }

  /* ── DIFERENCIAIS ── */
  #diferenciais {
    grid-template-columns: 1fr;
    padding: 72px 24px;
    gap: 48px;
  }
  .dif-right .corner-border { display: none; }
  .dif-card { padding: 40px 28px; }
  .dif-card blockquote { font-size: 20px; margin-bottom: 32px; }

  /* ── CONTATO ── */
  #contato { padding: 72px 24px; }
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contato-right { justify-content: flex-start; }
  .wa-wrapper { align-items: flex-start; text-align: left; gap: 20px; }
  .wa-wrapper p { font-size: 18px; }
  .btn-whatsapp { width: 100%; justify-content: center; }

  /* ── FOOTER ── */
  footer {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 40px;
  }
  .footer-bottom {
    padding: 16px 24px;
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* ── FLOATING WA ── */
  #wa-float {
    bottom: 16px; right: 16px;
    padding: 13px 18px;
    font-size: 10px; letter-spacing: 1.5px;
  }
}

/* ═══════════════════════════════════════════════
   TABLET — 769px a 1024px
═══════════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {

  #nav { padding: 18px 32px; }
  #hero { padding: 120px 40px 80px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }

  #diferenciais {
    grid-template-columns: 1fr;
    padding: 80px 40px;
    gap: 48px;
  }
  .dif-right .corner-border { display: none; }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  footer {
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 48px 40px;
  }

  #processo  { padding: 80px 40px; }
  #servicos  { padding: 80px 40px; }
  #contato   { padding: 80px 40px; }
}

@media (max-width: 768px) {
  #nav ul {
    display: none !important;
  }
  #nav {
    padding: 14px 20px;
  }
}