:root {
  --bg: #eceaeb;
  --sand: #F0E6D6;
  --cream: #F7F2EA;
  --brand: #122e4b;
  --brand-soft: #1c3f63;
  --ochre: #C9A66B;
  --ink: #2A3045;
  --ink-warm: #3D2E22;
  --muted: #5d6473;
  --white-warm: #fbf9f5;
  --shadow: 18px 18px 48px -28px rgba(61, 46, 34, .45);
  --shadow-sm: 0 8px 28px -18px rgba(61, 46, 34, .5);
  --radius-lg: 32px;
  --radius-md: 24px;
  --maxw: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.18;
  color: var(--brand);
  letter-spacing: -.01em
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem)
}

h2 {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  margin-bottom: .6em
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.6rem)
}

em {
  font-style: italic;
  color: var(--brand-soft)
}

p {
  margin-bottom: 1.1rem;
  color: var(--ink)
}

a {
  color: inherit;
  text-decoration: none
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

section {
  padding: 104px 0
}

@media(max-width:760px) {
  section {
    padding: 48px 0
  }

  body {
    font-size: 17px
  }
}

/* blobs decorativos */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: .55;
  z-index: 0;
  pointer-events: none
}

/* NAV */
.nav {
  position: sticky;
  top: 0px;
  z-index: 50;
  background: rgba(236, 234, 235, .82);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(61, 46, 34, .07);
  transition: background .3s ease, border-color .3s ease
}

.nav.scrolled {
  background: rgba(236, 234, 235, .82);
  border-bottom: 1px solid rgba(61, 46, 34, .07)
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px
}

.brandmark {
  display: inline-flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 12px;
  cursor: pointer;
  margin-left: 16px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 8px;
  background: var(--brand);
  border-radius: 999px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brandmark .logo-header {
  display: block;
  height: 80px;
  width: auto;
}

@media(max-width:760px) {
  .brandmark .logo-header {
    height: 40px;
  }
}

.brandmark .logo-footer {
  display: block;
  height: 64px;
  width: auto;
}

.brandmark span {
  color: var(--ochre)
}

.navlinks {
  display: flex;
  gap: 30px;
  align-items: center;
}

.navlinks a {
  font-size: .95rem;
  color: var(--muted);
  transition: color .3s;
}

.navlinks a:hover {
  color: var(--brand);
}

.nav-cta {
  background: var(--brand);
  color: var(--white-warm) !important;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

@media(max-width:980px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 10px;
  }

  .nav-toggle span {
    margin-bottom: 0;
  }

  .navlinks {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(247, 242, 234, .98);
    flex-direction: column;
    gap: 0;
    padding: 18px 24px 24px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    box-shadow: 0 16px 32px -12px rgba(61, 46, 34, .3);
  }

  .nav.open .navlinks {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navlinks a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(61, 46, 34, .08);
  }

  .navlinks a:last-child {
    border-bottom: none;
  }

  .navlinks .nav-cta {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .nav .wrap {
    position: relative;
  }
}

@media(max-width:760px) {
  .navlinks {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 17px 38px;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease
}

.btn-primary {
  background: var(--brand);
  color: var(--white-warm);
  box-shadow: var(--shadow-sm)
}

.btn-primary:hover {
  background: var(--brand-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -16px rgba(18, 46, 75, .6)
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--ochre)
}

.btn-outline:hover {
  background: rgba(201, 166, 107, .14);
  transform: translateY(-2px)
}

/* HERO */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--sand) 0%, var(--cream) 60%, var(--bg) 100%);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px
}

.hero .blob1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(201, 166, 107, .5), transparent 70%);
  top: -120px;
  right: -100px;
  animation: float 34s ease-in-out infinite
}

.hero .blob2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 60% 40%, rgba(18, 46, 75, .18), transparent 70%);
  bottom: -160px;
  left: -120px;
  animation: float 40s ease-in-out infinite reverse
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center
}

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 600;
  margin-bottom: 22px
}

.hero h1 {
  margin-bottom: 24px
}

.hero .lead {
  font-size: 1.2rem;
  color: var(--ink-warm);
  max-width: 34ch;
  margin-bottom: 14px
}

.hero .sub {
  color: var(--muted);
  max-width: 46ch;
  font-size: 1.02rem
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.hero-portrait {
  position: relative
}

.portrait-frame {
  border-radius: 48% 52% 56% 44%/52% 46% 54% 48%;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, #dfd2bb, #ece3d3);
  box-shadow: var(--shadow);
  position: relative
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block
}

.credchip {
  position: absolute;
  left: -18px;
  bottom: 34px;
  background: var(--white-warm);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: var(--shadow-sm);
  font-size: .86rem;
  color: var(--brand);
  z-index: 3
}

.credchip strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1rem
}

@media(max-width:880px) {
  .hero {
    padding-top: 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-portrait {
    max-width: 360px;
    margin: 0 auto;
    order: 1
  }
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(24px, -28px)
  }
}

/* APRESENTAÇÃO */
.about {
  background: var(--cream);
  padding-top: 120px;
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center
}

.about-photo img {
  border-radius: 24px;
  width: 400px;
  height: auto;
}

.about-photo .ph {
  font-family: 'Fraunces', serif;
  font-size: 3.4rem;
  color: rgba(18, 46, 75, .2)
}

.about h2 em {
  display: block
}

.about .signature {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ochre);
  margin-top: 18px
}

@media(max-width:880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .about-photo {
    max-width: 320px
  }
}

@media(max-width:760px) {
  .hero {
    padding-bottom: 48px;
  }

  .about {
    padding-top: 48px;
  }

  .about-photo,
  .about-photo img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    height: auto;
  }
}

/* TALVEZ VOCÊ */
.maybe {
  position: relative;
  overflow: hidden
}

.maybe .blob1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(201, 166, 107, .22), transparent 70%);
  top: 10%;
  left: -180px
}

.maybe-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
  z-index: 2
}

.maybe-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto
}

.maybe-item {
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform .3s, box-shadow .3s
}

.maybe-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -22px rgba(61, 46, 34, .5)
}

.maybe-item .ic {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(201, 166, 107, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ochre);
  font-weight: 600
}

.maybe-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--ink)
}

.maybe-close {
  text-align: center;
  margin-top: 48px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.45rem;
  color: var(--brand);
  position: relative;
  z-index: 2
}

@media(max-width:720px) {
  .maybe-list {
    grid-template-columns: 1fr
  }
}

/* COMO POSSO AJUDAR */
.help {
  background: var(--sand)
}

.help-head {
  max-width: 640px;
  margin-bottom: 54px
}

.help-media {
  max-width: var(--maxw);
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.help-media .help-img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px
}

.svc {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s
}

.svc-media {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 24px;
}

.svc-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.svc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow)
}

.svc .tag {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 600
}

.svc h3 {
  margin: 10px 0 16px
}

.svc p {
  font-size: 1rem;
  color: var(--ink)
}

.svc .modes {
  margin-top: 18px;
  font-size: .92rem;
  color: var(--brand-soft);
  font-weight: 500
}

@media(max-width:760px) {
  .svc-grid {
    grid-template-columns: 1fr
  }

  .svc {
    padding: 34px 28px
  }
}

/* NESPLORA */
.nesp {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: var(--cream)
}

.nesp .blob1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(201, 166, 107, .22), transparent 70%);
  top: -160px;
  right: -160px
}

.nesp h2,
.nesp h3 {
  color: var(--cream)
}

.nesp .eyebrow {
  color: var(--ochre)
}

.nesp p {
  color: rgba(247, 242, 234, .86)
}

.nesp-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start
}

.nesp-head {
  max-width: 560px
}

.nesp-feats {
  list-style: none;
  display: grid;
  gap: 14px
}

.nesp-feats li {
  background: rgba(247, 242, 234, .07);
  border: 1px solid rgba(247, 242, 234, .12);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--cream)
}

.nesp-feats .ic {
  color: var(--ochre);
  flex-shrink: 0;
  font-weight: 600
}

@media(max-width:880px) {
  .nesp-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

/* DIFERENCIAIS */
.diff-head {
  max-width: 640px;
  margin-bottom: 48px
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.diff-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: .98rem
}

.diff-item .ic {
  color: var(--ochre);
  flex-shrink: 0;
  font-weight: 600
}

.process {
  margin-top: 64px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  box-shadow: var(--shadow-sm)
}

.process.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px
}

.process-content {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.process h3 {
  margin-bottom: 18px
}

.process .lead {
  font-size: 1.05rem;
  color: var(--ink-warm)
}

.process-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.process-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media(max-width:880px) {
  .process.process-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

@media(max-width:880px) {
  .diff-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {
  .diff-grid {
    grid-template-columns: 1fr
  }

  .process,
  .process.process-grid {
    padding: 36px 24px;
  }
}

.blue-feature {
  background: var(--brand);
  color: var(--white-warm);
}

.blue-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.blue-feature-copy h2,
.blue-feature-copy p {
  color: var(--white-warm);
}

.blue-feature-copy p {
  max-width: 680px;
}

.blue-feature-image {
  display: flex;
  justify-content: flex-end;
}

.blue-feature-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

@media(max-width:880px) {
  .blue-feature-grid {
    grid-template-columns: 1fr;
  }

  .blue-feature-image {
    justify-content: center;
  }
}

@media(max-width:560px) {
  .blue-feature {
    padding: 64px 0;
  }
}

/* FAQ */
.faq {
  background: var(--sand)
}

.faq-head {
  max-width: 560px;
  margin: 0 auto 50px;
  text-align: center
}

.faq-cols {
  max-width: 860px;
  margin: 0 auto
}

.faq-group-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--brand);
  font-style: italic;
  margin: 36px 0 14px;
  letter-spacing: .01em
}

.faq-group-title:first-child {
  margin-top: 0
}

details {
  background: var(--white-warm);
  border-radius: 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(61, 46, 34, .05)
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 26px;
  font-weight: 500;
  color: var(--brand);
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .3s
}

summary::-webkit-details-marker {
  display: none
}

summary:hover {
  background: rgba(201, 166, 107, .07)
}

summary .chev {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--ochre);
  font-size: 1.3rem;
  line-height: 1
}

details[open] summary .chev {
  transform: rotate(45deg)
}

.faq-body {
  padding: 0 26px 22px;
  color: var(--ink);
  font-size: .98rem
}

.faq-body p {
  margin-bottom: 0
}

/* CTA FINAL */
.final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream), var(--sand))
}

.final .blob1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(18, 46, 75, .12), transparent 70%);
  bottom: -180px;
  right: -120px;
  animation: float 38s ease-in-out infinite
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center
}

.final h2 {
  margin-bottom: 20px
}

.final p {
  font-size: 1.12rem;
  color: var(--ink-warm)
}

.final-actions {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px
}

.final-contact {
  font-size: .96rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center
}

.final-contact a {
  color: var(--brand);
  font-weight: 500
}

/* FOOTER */
footer {
  background: var(--brand);
  color: rgba(247, 242, 234, .78);
  padding: 48px 0;
  font-size: .92rem
}

footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center
}

footer .brandmark {
  color: var(--cream)
}

footer a {
  color: rgba(247, 242, 234, .78)
}

footer a:hover {
  color: var(--ochre)
}

@media(max-width:760px) {
  footer .wrap {
    justify-content: center;
    text-align: center;
  }

  footer .wrap>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .wrap>div:last-child {
    text-align: center !important;
  }
}

.disclaimer {
  font-size: .8rem;
  color: rgba(247, 242, 234, .5);
  max-width: 640px;
  margin-top: 18px;
  line-height: 1.6
}

/* FAB whatsapp */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  background: #25735a;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .4);
  transition: transform .3s
}

.fab:hover {
  transform: scale(1.06)
}

.fab svg {
  width: 30px;
  height: 30px
}

/* reveal 
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease-out, transform 1s ease-out
}

.reveal.in {
  opacity: 1;
  transform: none
}
  */

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}