:root {
  --wine: #6a121b;
  --deep: #4c0d14;
  --gold: #e0aa2b;
  --soft: #c79a45;
  --ivory: #fbf8f4;
  --rose: #f7eeee;
  --white: #fff;
  --ink: #261c1e;
  --gray: #766b6d;
  --line: rgba(76, 13, 20, .14);
  --focus: #4c0d14;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font: 16px/1.7 var(--sans);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 981px) {
  body.menu-open {
    overflow: visible;
  }
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

/* Superfícies escuras: o foco precisa do dourado para ficar visível */
.site-header,
.main-nav,
.hero,
.mid-cta,
.footer {
  --focus: #e0aa2b;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: #fff;
  color: var(--deep);
  transform: translateY(-160%);
  transition: .2s;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  color: #fff;
  transition: background .3s, height .3s, box-shadow .3s;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(76, 13, 20, .94);
  box-shadow: 0 12px 32px rgba(38, 28, 30, .1);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 102;
  width: 248px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 13px;
  font-weight: 600;
}

.main-nav>a:not(.nav-cta),
.nav-dropdown-toggle {
  position: relative;
  padding-block: 12px;
}

.main-nav>a:not(.nav-cta):after,
.nav-dropdown-toggle:after {
  content: "";
  position: absolute;
  inset: auto 0 5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: .25s;
}

.main-nav>a:hover:after,
.nav-item-dropdown:hover .nav-dropdown-toggle:after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav>a.is-active:after,
.nav-dropdown-toggle.is-active:after {
  transform: scaleX(1);
}

.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-arrow {
  display: inline-block;
  font-size: 8px;
  transition: transform .25s ease;
  vertical-align: middle;
  color: var(--gold);
}

.nav-item-dropdown:hover .nav-arrow,
.nav-item-dropdown:focus-within .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 240px;
  background: rgba(45, 7, 12, 0.98);
  border: 1px solid rgba(224, 170, 43, 0.28);
  border-radius: 4px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  backdrop-filter: blur(14px);
  z-index: 120;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 11px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  transition: background .2s, color .2s, padding-left .2s;
}

.nav-dropdown-menu a:hover {
  background: rgba(224, 170, 43, 0.14);
  color: var(--gold);
  padding-left: 24px;
}

.nav-dropdown-menu a.is-active {
  color: var(--gold);
  font-weight: 700;
}

.nav-cta {
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .55);
  transition: .25s;
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--deep);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 12%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(35, 8, 12, .91), rgba(76, 13, 20, .72) 38%, rgba(38, 28, 30, .08) 72%), linear-gradient(0deg, rgba(38, 28, 30, .38), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 108px 0 100px;
}

/* Animação Slide-In-Left para os dados do Hero */
@keyframes heroSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-48px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content .eyebrow {
  animation: heroSlideInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-content h1 {
  animation: heroSlideInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.hero-content .hero-copy {
  animation: heroSlideInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both;
}

.hero-content .button {
  animation: heroSlideInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}

.hero-content .hero-notes {
  animation: heroSlideInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.58s both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--soft);
}

.eyebrow.light {
  color: rgba(255, 255, 255, .8);
}

.eyebrow.light span {
  color: var(--gold);
  margin: 0 5px;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font: 500 clamp(38px, 4.6vw, 64px)/1 var(--serif);
  letter-spacing: -.035em;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(16px, 1.35vw, 19px);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  transition: .25s;
}

.button:hover {
  transform: translateY(-2px);
}

.button span {
  font-size: 17px;
}

.button.gold {
  background: var(--gold);
  color: var(--deep);
}

.button.gold:hover {
  background: #e7b641;
}

.button.wine {
  background: var(--wine);
  color: #fff;
}

.button.wine:hover {
  background: var(--deep);
}

.button.outline {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.button.outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}

.button.wine-outline {
  border-color: var(--wine);
  color: var(--wine);
  background: transparent;
}

.button.wine-outline:hover {
  background: var(--wine);
  color: #fff;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 42px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.hero-notes span:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 36px;
  background: var(--gold);
}

.section {
  padding-block: clamp(88px, 10vw, 144px);
}

.section-intro {
  display: grid;
  grid-template-columns: .9fr 1.15fr;
  column-gap: clamp(50px, 8vw, 120px);
  margin-bottom: 64px;
}

.section-intro .eyebrow {
  grid-column: 1/-1;
}

h2 {
  margin: 0;
  font: 500 clamp(32px, 3.8vw, 48px)/1.08 var(--serif);
  letter-spacing: -.03em;
}

.section-intro>p:last-child {
  max-width: 560px;
  margin: 5px 0 0;
  color: var(--ink);
}

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

.area-card {
  grid-column: span 2;
}

/* Com 5 áreas, os dois últimos cards dividem a linha final */
.area-card:nth-child(n+4) {
  grid-column: span 3;
}

/* Grid com 3 colunas (para 6 cards ou páginas de serviços) */
.area-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.area-grid.grid-3 .area-card {
  grid-column: span 1 !important;
  min-height: auto;
}

/* Seção introdutória em coluna única */
.service-intro-single {
  width: 100%;
  margin: 0;
}

.service-intro-single .eyebrow {
  margin-bottom: 16px;
}

.service-intro-single h2 {
  max-width: 600px;
  margin-bottom: 24px;
}

.service-intro-single .about-copy {
  width: 100%;
  max-width: 100%;
  margin-top: 24px;
  font-size: 14px;
}

.service-intro-single .about-copy p {
  width: 100%;
  max-width: 100%;
}

.service-intro-single blockquote {
  max-width: 780px;
  margin: 32px 0 24px;
}

.area-card {
  position: relative;
  min-height: 500px;
  padding: 38px 34px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: .3s;
}

.area-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s;
}

.area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 18, 27, .25);
  box-shadow: 0 24px 55px rgba(76, 13, 20, .08);
}

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

.card-number {
  color: var(--soft);
  font: 24px var(--serif);
}

.area-card h3,
.step h3 {
  font: 600 27px/1.15 var(--serif);
}

.area-card h3 {
  margin: 38px 0 18px;
}

.area-card>p {
  min-height: 105px;
  color: var(--ink);
  font-size: 14px;
}

.area-card ul {
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.area-card li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 13px;
}

.area-card li:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--soft);
}

.about {
  background: var(--rose);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(52px, 9vw, 120px);
}

.about-photo {
  position: sticky;
  top: 110px;
}

.about-photo:before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--soft);
}

.about-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: .86;
  object-fit: cover;
}

.about-photo>span {
  position: relative;
  display: block;
  margin-top: 34px;
  color: var(--gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 600px;
}

.about-copy {
  margin-top: 36px;
  color: var(--ink);
  font-size: 14px;
}

.about-copy p+p {
  margin-top: 18px;
}

.education {
  margin-top: 36px;
  border-top: 1px solid rgba(76, 13, 20, .18);
}

.education>div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(76, 13, 20, .12);
}

.education span {
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.education p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

blockquote {
  margin: 36px 0 20px;
  padding-left: 24px;
  border-left: 1px solid var(--soft);
  color: var(--deep);
  font: italic 24px/1.3 var(--serif);
}

.signature {
  display: flex;
  flex-direction: column;
}

.signature strong {
  font: 600 23px var(--serif);
}

.signature span {
  color: var(--gray);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mid-cta {
  position: relative;
  overflow: hidden;
  padding-block: 78px;
  background: var(--deep);
  color: #fff;
}

.mid-cta:after {
  content: "BR" / "";
  position: absolute;
  right: -30px;
  top: -70px;
  color: rgba(255, 255, 255, .025);
  font: 330px/1 var(--serif);
}

.mid-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.mid-cta h2 {
  max-width: 790px;
}

.mid-cta p:not(.eyebrow) {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .72);
}

.section-intro.compact {
  display: block;
  margin-bottom: 70px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--line);
}

.step {
  position: relative;
  padding-top: 62px;
}

.step:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 2px;
  width: 9px;
  height: 9px;
  border: 4px solid var(--ivory);
  background: var(--soft);
  box-shadow: 0 0 0 1px var(--soft);
}

.step-number {
  color: var(--soft);
  font: 22px var(--serif);
}

.step h3 {
  margin: 15px 0 16px;
}

.step p {
  max-width: 330px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.process-action {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 62px;
}

.process-action p {
  max-width: 350px;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
}

.testimonials {
  background: var(--rose);
}

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

.testimonial {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 34px 32px 30px;
  border: 1px solid var(--line);
  background: #fff;
  transition: .3s;
}

.testimonial:hover {
  border-color: rgba(106, 18, 27, .25);
  box-shadow: 0 24px 55px rgba(76, 13, 20, .08);
}

.testimonial-mark {
  height: 26px;
  margin-bottom: 14px;
  color: var(--soft);
  font: 64px/1 var(--serif);
}

.testimonial blockquote {
  flex: 1;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
  color: var(--ink);
  font: 400 15px/1.7 var(--sans);
}

.testimonial blockquote p {
  margin: 0;
}

.testimonial figcaption {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial figcaption strong {
  display: block;
  font: 600 19px var(--serif);
}

.testimonial figcaption span {
  display: block;
  margin-top: 4px;
  color: var(--gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.1fr;
  gap: clamp(54px, 10vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-heading p:last-of-type {
  max-width: 430px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 14px;
}

.faq-heading .button {
  margin-top: 28px;
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  cursor: pointer;
  font: 600 20px/1.3 var(--serif);
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary i {
  color: var(--soft);
  font: 300 24px var(--sans);
  transition: .25s;
}

.accordion details[open] summary i {
  transform: rotate(45deg);
}

.answer p {
  max-width: 620px;
  margin: 0;
  padding: 0 46px 24px 4px;
  color: var(--ink);
  font-size: 14px;
}

.map-section {
  background: var(--ivory);
  padding: 90px 0 100px;
}

.map-wrapper {
  margin-top: 36px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 15px 35px rgba(76, 13, 20, .05);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  border: 0;
}

.footer {
  padding: 86px 0 28px;
  background: var(--deep);
  color: rgba(255, 255, 255, .7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr .8fr;
  gap: clamp(35px, 5vw, 70px);
}

.footer-brand img {
  width: 250px;
  margin-bottom: 28px;
}

.footer-brand p {
  max-width: 350px;
}

.footer-oab {
  margin-top: 18px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  letter-spacing: .04em;
}

.footer h2 {
  margin-bottom: 20px;
  color: #fff;
  font: 700 12px var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer p,
.footer address,
.footer a {
  font-size: 13.5px;
  line-height: 1.85;
}

.footer address {
  margin-bottom: 10px;
  font-style: normal;
}

.footer a {
  display: block;
  width: fit-content;
  transition: .2s;
}

.footer a:hover {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-legal p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.foot-credit a {
  display: inline-flex;
  align-items: center;
  opacity: .8;
  transition: opacity .2s, transform .2s;
}

.foot-credit a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.foot-credit img {
  height: 24px;
  width: auto;
  display: block;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transition: .25s;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: transparent;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav>a.is-active:after {
  transform: scaleX(1);
}

/* Page Hero (Páginas Internas) */
.page-hero {
  position: relative;
  padding: clamp(140px, 16vw, 175px) 0 clamp(64px, 8vw, 92px);
  background: var(--deep);
  color: #fff;
  overflow: hidden;
}

.page-hero:after {
  content: "BR" / "";
  position: absolute;
  right: -20px;
  bottom: -40px;
  color: rgba(255, 255, 255, .03);
  font: 320px/1 var(--serif);
  pointer-events: none;
}

.breadcrumbs {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li:not(:last-child):after {
  content: "/";
  color: rgba(255, 255, 255, .35);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, .75);
  transition: .2s;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs [aria-current="page"] {
  color: var(--gold);
  font-weight: 600;
}

.page-hero h1 {
  max-width: 800px;
  margin: 0 0 18px;
  font: 500 clamp(26px, 3.2vw, 42px)/1.15 var(--serif);
  letter-spacing: -.025em;
}

.page-hero-lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}

.badge-chip i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Pilares e Valores */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.pillar-card {
  position: relative;
  padding: 38px 34px;
  border: 1px solid var(--line);
  background: #fff;
  transition: .3s;
}

.pillar-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(106, 18, 27, .25);
  box-shadow: 0 22px 48px rgba(76, 13, 20, .07);
}

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

.pillar-card .card-number {
  color: var(--soft);
  font: 24px var(--serif);
}

.pillar-card h3 {
  margin: 18px 0 14px;
  font: 600 24px/1.2 var(--serif);
  color: var(--deep);
}

.pillar-card p {
  margin: 0;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.7;
}

/* Formação Acadêmica & Credenciais */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.credential-card {
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: .3s;
}

.credential-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 18, 27, .25);
  box-shadow: 0 18px 40px rgba(76, 13, 20, .06);
}

.credential-type {
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.credential-card h3 {
  margin: 0 0 8px;
  font: 600 21px/1.25 var(--serif);
  color: var(--deep);
}

.credential-card .institution {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 14px;
}

.credential-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.65;
}

/* Quote Banner */
.quote-banner {
  background: var(--deep);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}

.quote-banner blockquote {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  color: #fff;
  font: 500 clamp(23px, 2.6vw, 32px)/1.35 var(--serif);
}

.quote-banner cite {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-style: normal;
}

.reveal {
  animation: reveal .65s ease both;
  animation-timeline: view();
  animation-range: entry 8% cover 26%;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media(max-width: 980px) {
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: inherit;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: .25s;
  }

  .menu-toggle[aria-expanded=true] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 96px 30px 150px;
    background: var(--deep);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: .25s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .main-nav>a:not(.nav-cta) {
    min-height: 44px;
    display: flex;
    align-items: center;
    font: 500 30px var(--serif);
  }

  .nav-item-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-dropdown-toggle {
    min-height: 44px;
    display: flex;
    align-items: center;
    font: 500 30px var(--serif);
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.16);
    border: none;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    box-shadow: none;
    padding: 6px 0 6px 16px;
    margin: 2px 0 10px;
    width: 100%;
    min-width: auto;
  }

  .nav-dropdown-menu a {
    font: 500 16px/1.4 var(--sans);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a.is-active {
    color: var(--gold);
    padding-left: 4px;
    background: transparent;
  }

  .nav-cta {
    margin-top: 20px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .area-grid,
  .area-grid.grid-3 {
    grid-template-columns: 1fr;
  }

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

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

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

  .area-card,
  .area-card:nth-child(n+4) {
    grid-column: auto;
  }

  .area-card {
    min-height: auto;
  }

  .area-card>p {
    min-height: auto;
  }

  .about-grid {
    gap: 60px;
  }

  .mid-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

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

  .faq-heading {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media(max-width: 700px) {

  .container,
  .header-inner {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    height: 72px;
  }

  .brand {
    width: 196px;
  }

  .hero {
    min-height: 86vh;
    min-height: 86svh;
    align-items: flex-start;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(29, 8, 11, .86) 0%, rgba(39, 9, 14, .74) 29%, rgba(38, 28, 30, .08) 58%, rgba(38, 8, 13, .16) 100%);
  }

  .hero-content {
    margin: 0 auto;
    padding: 90px 0 0;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: .12em;
  }

  .eyebrow:before {
    width: 22px;
    margin-right: 8px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(31px, 8.8vw, 40px);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 370px;
    margin: 16px 0 20px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero .button {
    min-height: 48px;
    padding: 12px 20px;
  }

  .hero-notes {
    display: none;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-block: 84px;
  }

  h2 {
    font-size: clamp(28px, 8.8vw, 38px);
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .area-card {
    padding: 30px 26px;
  }

  .pillar-card {
    padding: 30px 24px;
  }

  .credential-card {
    padding: 26px 22px;
  }

  .badges-row {
    gap: 8px;
  }

  .badge-chip {
    font-size: 11px;
    padding: 6px 12px;
  }

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

  .about-photo {
    position: relative;
    top: auto;
    width: calc(100% - 16px);
  }

  .about-photo:before {
    inset: 14px -14px -14px 14px;
  }

  .about-photo img {
    aspect-ratio: .88;
  }

  .education>div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  blockquote {
    font-size: 21px;
  }

  .mid-cta {
    padding-block: 68px;
  }

  .mid-cta:after {
    font-size: 190px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-left: 30px;
  }

  .steps:before {
    inset: 20px auto 20px 4px;
    width: 1px;
    height: auto;
  }

  .step {
    padding-top: 0;
  }

  .step:before {
    top: 8px;
    left: -30px;
  }

  .process-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .accordion summary {
    min-height: 64px;
    font-size: 17px;
  }

  .footer {
    padding-top: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand img {
    width: 220px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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