@charset "UTF-8";
:root {
  --bg-paper: #FDFBF9;
  /* Off-white quentíssimo */
  --bg-contrast: #F2EFE9;
  /* Bege Areia */
  --bg-dark: #0F0F0F;
  /* Preto Absoluto */
  --text-primary: #1A1A1A;
  /* Preto Suave */
  --text-secondary: #595959;
  /* Cinza Médio */
  --text-inverse: #F4F1ED;
  /* Texto claro */
  --gold-matte: #BFA482;
  /* Dourado Fosco */
  --gold-rich: #C5A880;
  /* Dourado Rico */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --easing: cubic-bezier(0.25, 1, 0.5, 1);
  --container-width: 1300px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-paper);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* TEXTURA DE "RUÍDO" (CINEMA GRAIN) */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

/* UTILS */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

.display-text {
  font-size: clamp(3.5rem, 9vw, 8rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 30px;
}

.gold-italic {
  font-style: italic;
  color: var(--gold-matte);
  font-family: var(--font-display);
  font-weight: 500;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-matte);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-padding {
  padding: 140px 0;
}

/* LINKS COM ANIMAÇÃO */
.btn-link {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  padding-bottom: 5px;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.btn-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-matte);
  transition: transform 0.5s var(--easing);
  transform-origin: right;
  transform: scaleX(0);
}

.btn-link:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

/* --- 2. HEADER --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 2000;
  transition: all 0.5s var(--easing);
  mix-blend-mode: difference;
  color: #fff;
}

header.scrolled {
  padding: 20px 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-align: center;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: block;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
  opacity: 0.9;
}

.menu-trigger {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

/* --- 3. MENU FULLSCREEN --- */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F0EBE5;
  z-index: 1500;
  transform: translateY(-100%);
  transition: transform 0.8s var(--easing);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay.active {
  transform: translateY(0);
}

.nav-links-list {
  list-style: none;
  text-align: center;
}

.nav-item {
  overflow: hidden;
  margin-bottom: 15px;
}

.nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--text-primary);
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.8s var(--easing), color 0.3s;
}

.nav-overlay.active .nav-link {
  transform: translateY(0);
}

.nav-link:hover {
  color: var(--gold-matte);
  font-style: italic;
}

.nav-item:nth-child(1) .nav-link {
  transition-delay: 0.1s;
}

.nav-item:nth-child(2) .nav-link {
  transition-delay: 0.2s;
}

.nav-item:nth-child(3) .nav-link {
  transition-delay: 0.3s;
}

.nav-item:nth-child(4) .nav-link {
  transition-delay: 0.4s;
}

.nav-item:nth-child(5) .nav-link {
  transition-delay: 0.5s;
}

/* --- 4. HERO BANNER (CORRIGIDO) --- */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  animation: slowPan 30s infinite alternate ease-in-out;
  -o-object-position: center 30%;
     object-position: center 30%;
}

@keyframes slowPan {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 70%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-left: 5%;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-content p {
  font-size: 1.15rem;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 40px;
}

.scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 10;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: dropLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes dropLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
/* --- 5. SOCIAL & CONCIERGE --- */
.floating-container {
  position: fixed;
  bottom: 100px;
  right: 40px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.social-sidebar {
  background: #fff;
  padding: 15px 12px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s var(--easing);
}

.floating-container:hover .social-sidebar {
  transform: translateY(0);
  opacity: 1;
}

.social-icon {
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-icon:hover {
  color: var(--gold-matte);
}

.whatsapp-pill {
  background: #1A1A1A;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s var(--easing);
}

.whatsapp-pill:hover {
  transform: translateY(-3px);
  background: var(--gold-matte);
  box-shadow: 0 15px 40px rgba(191, 164, 130, 0.3);
  color: #000;
}

.whatsapp-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* --- 6. MANIFESTO --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  height: 680px;
  overflow: hidden;
  border-radius: 2px;
}

.about-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.5s var(--easing);
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.05);
}

/* --- 7. LIVING ART (MARQUEE) --- */
.living-art-section {
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-wrapper {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scrollGallery 40s linear infinite;
}

.marquee-wrapper:hover {
  animation-play-state: paused;
}

.art-card {
  width: 400px;
  height: 550px;
  margin-right: 40px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}

.art-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.7s;
  filter: grayscale(20%);
}

.art-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.art-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.art-card:hover .art-caption {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* --- 8. JORNADA --- */
.journey-section {
  background: var(--bg-contrast);
  position: relative;
  overflow: hidden;
}

.journey-bg-detail {
  position: absolute;
  top: -10%;
  right: -10%;
  font-family: var(--font-display);
  font-size: 30rem;
  color: var(--gold-matte);
  opacity: 0.03;
  pointer-events: none;
  font-style: italic;
}

.journey-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.journey-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-matte), transparent);
  transform: translateX(-50%);
  opacity: 0.3;
}

.journey-step {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
}

.step-content-wrapper {
  width: 45%;
  position: relative;
}

.journey-step:nth-child(odd) .step-content-wrapper {
  text-align: right;
  margin-right: auto;
  padding-right: 60px;
}

.journey-step:nth-child(even) .step-content-wrapper {
  text-align: left;
  margin-left: auto;
  padding-left: 60px;
}

.step-marker {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold-matte);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  background: var(--bg-contrast);
  z-index: 2;
  transition: 0.6s var(--easing);
}

.journey-step.visible .step-marker {
  background: var(--gold-matte);
  box-shadow: 0 0 0 5px rgba(191, 164, 130, 0.15);
}

.step-num-big {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold-matte);
  opacity: 0.07;
  position: absolute;
  top: -60px;
  line-height: 1;
  font-style: italic;
  pointer-events: none;
  transition: 1s var(--easing);
  transform: translateY(20px);
}

.journey-step:nth-child(odd) .step-num-big {
  right: 0;
}

.journey-step:nth-child(even) .step-num-big {
  left: 0;
}

.journey-step.visible .step-num-big {
  transform: translateY(0);
  opacity: 0.1;
}

.step-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- 9. PROTOCOLOS --- */
.protocols-list {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 80px;
}

.protocol-item {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.p-left {
  display: flex;
  align-items: baseline;
  gap: 30px;
}

.p-num {
  font-family: var(--font-display);
  color: var(--gold-matte);
  font-size: 1.1rem;
  font-style: italic;
}

.p-title {
  font-size: 2.2rem;
  font-family: var(--font-display);
  transition: 0.3s;
  color: var(--text-primary);
}

.p-arrow {
  font-size: 1.2rem;
  color: var(--gold-matte);
  opacity: 0;
  transform: translateX(-20px);
  transition: 0.4s var(--easing);
}

.protocol-item:hover .p-title {
  color: var(--gold-rich);
  transform: translateX(10px);
}

.protocol-item:hover .p-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- 10. CURADORIA SKINCARE --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.product-card {
  position: relative;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.4s var(--easing);
  background: #fff;
}

.product-card:hover {
  border-color: var(--gold-matte);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.p-img-box {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.p-img {
  max-height: 100%;
  max-width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(10%);
  transition: 0.5s;
}

.product-card:hover .p-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.p-tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-matte);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.p-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.btn-view {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 3px;
}

.product-card:hover .btn-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- 11. LOVE NOTES (DARK MODE) --- */
.love-notes {
  background: var(--bg-dark);
  color: var(--text-inverse);
  position: relative;
}

.love-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.note-card {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 40px;
  transition: 0.4s;
  position: relative;
}

.note-card:hover {
  border-left-color: var(--gold-matte);
}

.note-quote {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 30px;
  font-style: italic;
  opacity: 0.9;
}

.note-author {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-matte);
}

/* --- 12. FOOTER --- */
footer {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta {
  font-size: 3rem;
  font-family: var(--font-display);
  margin-bottom: 40px;
}

/* ANIMATIONS */
.fade-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s var(--easing);
}

.fade-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .display-text {
    font-size: 12vw;
  }
  .about-grid,
  .products-grid,
  .love-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-img-wrapper {
    height: 450px;
    order: -1;
  }
  .journey-line {
    left: 20px;
    transform: none;
  }
  .journey-step {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
    margin-bottom: 80px;
  }
  .step-content-wrapper,
  .journey-step:nth-child(odd) .step-content-wrapper,
  .journey-step:nth-child(even) .step-content-wrapper {
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0;
  }
  .step-marker {
    left: 20px;
    transform: translateX(-50%);
    top: 0;
  }
  .step-num-big {
    top: -40px;
    left: -10px;
    right: auto;
    font-size: 6rem;
  }
  .journey-step:nth-child(odd) .step-num-big {
    left: -10px;
    right: auto;
  }
  .p-title {
    font-size: 1.8rem;
  }
  .note-quote {
    font-size: 1.4rem;
  }
  .marquee-wrapper {
    animation-duration: 20s;
  }
}
/* --- DESIGN SYSTEM (BASE) --- */
:root {
  --bg-paper: #FDFBF9;
  --bg-contrast: #F2EFE9;
  --bg-dark: #0F0F0F;
  --text-primary: #1A1A1A;
  --text-secondary: #595959;
  --text-inverse: #F4F1ED;
  --gold-matte: #BFA482;
  --gold-rich: #C5A880;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --easing: cubic-bezier(0.25, 1, 0.5, 1);
  --container-width: 1300px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-paper);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* UTILS */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

.display-text {
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 30px;
}

.gold-italic {
  font-style: italic;
  color: var(--gold-matte);
  font-family: var(--font-display);
  font-weight: 500;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-matte);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-padding {
  padding: 120px 0;
}

.text-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* HEADER & MENU */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 2000;
  transition: all 0.5s var(--easing);
  mix-blend-mode: difference;
  color: #fff;
}

header.scrolled {
  padding: 20px 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-align: center;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: block;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
  opacity: 0.9;
}

.menu-trigger {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F0EBE5;
  z-index: 1500;
  transform: translateY(-100%);
  transition: transform 0.8s var(--easing);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay.active {
  transform: translateY(0);
}

.nav-links-list {
  list-style: none;
  text-align: center;
}

.nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--text-primary);
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.8s var(--easing), color 0.3s;
}

.nav-overlay.active .nav-link {
  transform: translateY(0);
}

.nav-link:hover {
  color: var(--gold-matte);
  font-style: italic;
}

/* --- PAGE SPECIFIC --- */
/* HERO */
.clinic-hero {
  height: 85vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  background: var(--bg-dark);
}

.clinic-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  opacity: 0.7;
}

.clinic-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1000px;
}

/* INTRO TEXT SECTION */
.intro-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-box {
  border: 1px solid var(--gold-matte);
  padding: 40px;
  margin: 50px 0;
  display: inline-block;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--text-primary);
}

/* AREAS DE ATUAÇÃO (LIST DESIGN) */
.services-section {
  background: var(--bg-contrast);
}

.services-list {
  max-width: 1000px;
  margin: 60px auto 0 auto;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: default;
  transition: 0.3s;
}

.service-row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-row:hover {
  padding-left: 20px;
  padding-right: 20px;
  background: #fff;
  border-color: transparent;
}

.s-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
}

.s-icon {
  color: var(--gold-matte);
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s;
}

.service-row:hover .s-icon {
  opacity: 1;
  transform: translateX(0);
}

/* GALLERY (MOSAIC GRID - 6 IMAGES) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  auto-rows: 300px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

/* Layout Mosaico para 6 imagens */
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

/* As demais (2, 3, 4, 5, 6) ocuparão 1x1 automaticamente */
.g-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s var(--easing);
  filter: grayscale(10%);
}

.gallery-item:hover .g-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.g-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .g-caption {
  opacity: 1;
  transform: translateY(0);
}

/* WHATSAPP & FOOTER */
.whatsapp-pill {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 5000;
  background: #1A1A1A;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s var(--easing);
}

.whatsapp-pill:hover {
  background: var(--gold-matte);
  color: #000;
  transform: translateY(-3px);
}

footer {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ANIMATIONS & RESPONSIVO */
.fade-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s var(--easing);
}

.fade-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    auto-rows: 250px;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .service-row:hover {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }
}
/* UTILS */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-matte);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

.gold-italic {
  font-style: italic;
  color: var(--gold-matte);
  font-family: var(--font-display);
  font-weight: 500;
}

/* --- HEADER (COMPLETO) --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 2000;
  transition: 0.5s var(--easing);
  background: transparent;
}

header.scrolled {
  padding: 20px 0;
  background: rgba(253, 251, 249, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-align: center;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: block;
  color: var(--text-primary);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
  opacity: 0.8;
  color: var(--text-primary);
}

.menu-trigger {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-primary);
}

/* MENU OVERLAY */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F0EBE5;
  z-index: 1500;
  transform: translateY(-100%);
  transition: transform 0.8s var(--easing);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay.active {
  transform: translateY(0);
}

.nav-links-list {
  list-style: none;
  text-align: center;
}

.nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--text-primary);
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.8s var(--easing), color 0.3s;
}

.nav-overlay.active .nav-link {
  transform: translateY(0);
}

.nav-link:hover {
  color: var(--gold-matte);
  font-style: italic;
}

/* --- CONTACT CONTENT --- */
.contact-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 180px 0 100px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  width: 100%;
  align-items: start;
}

/* LEFT SIDE */
.headline {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.contact-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-matte);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-link:hover {
  color: var(--gold-matte);
}

.address-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* RIGHT SIDE (FORM) */
.form-side {
  background: #fff;
  padding: 60px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.form-group {
  margin-bottom: 30px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: 0.3s;
  border-radius: 0;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-matte);
}

.form-textarea {
  resize: none;
  height: 100px;
}

.submit-btn {
  background: var(--text-primary);
  color: #fff;
  border: none;
  padding: 18px 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
  margin-top: 10px;
  width: 100%;
}

.submit-btn:hover {
  background: var(--gold-matte);
  color: #000;
}

/* --- FOOTER (COMPLETO) --- */
footer {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

.footer-cta {
  font-size: 2.5rem;
  font-family: var(--font-display);
  margin-bottom: 40px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777;
  font-size: 0.85rem;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 1s var(--easing);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .contact-section {
    padding-top: 140px;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .form-side {
    padding: 40px 20px;
  }
  .headline {
    font-size: 2.5rem;
  }
  .footer-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-flex div {
    text-align: center !important;
  }
}
/* --- DESIGN SYSTEM (BASE) --- */
:root {
  --bg-paper: #FDFBF9;
  --bg-contrast: #F2EFE9;
  --bg-dark: #0F0F0F;
  --text-primary: #1A1A1A;
  --text-secondary: #595959;
  --text-inverse: #F4F1ED;
  --gold-matte: #BFA482;
  --gold-rich: #C5A880;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --easing: cubic-bezier(0.25, 1, 0.5, 1);
  --container-width: 1300px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-paper);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* TEXTURAS & UTILS */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

.display-text {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 30px;
}

.gold-italic {
  font-style: italic;
  color: var(--gold-matte);
  font-family: var(--font-display);
  font-weight: 500;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-matte);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-padding {
  padding: 120px 0;
}

.text-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* HEADER & MENU */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 2000;
  transition: all 0.5s var(--easing);
  mix-blend-mode: difference;
  color: #fff;
}

header.scrolled {
  padding: 20px 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-align: center;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: block;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
  opacity: 0.9;
}

.menu-trigger {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F0EBE5;
  z-index: 1500;
  transform: translateY(-100%);
  transition: transform 0.8s var(--easing);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay.active {
  transform: translateY(0);
}

.nav-links-list {
  list-style: none;
  text-align: center;
}

.nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--text-primary);
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.8s var(--easing), color 0.3s;
}

.nav-overlay.active .nav-link {
  transform: translateY(0);
}

.nav-link:hover {
  color: var(--gold-matte);
  font-style: italic;
}

/* --- PAGE SPECIFIC --- */
/* HERO */
.skin-hero {
  height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
}

.skin-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  opacity: 0.6;
  filter: grayscale(20%);
}

/* CONTENT SPLIT */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* FEATURE LIST (ELEGANT) */
.feature-list {
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: baseline;
  gap: 20px;
  transition: 0.3s;
}

.feature-item:hover {
  padding-left: 10px;
  border-bottom-color: var(--gold-matte);
}

.f-bullet {
  width: 6px;
  height: 6px;
  background: var(--gold-matte);
  border-radius: 50%;
  flex-shrink: 0;
}

.f-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
}

/* DARK BANNER (TARGET AUDIENCE) */
.target-section {
  background: var(--bg-dark);
  color: var(--text-inverse);
  text-align: center;
}

.target-box {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
  position: relative;
}

.target-box::before,
.target-box::after {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-matte);
  position: absolute;
  opacity: 0.5;
  line-height: 1;
}

.target-box::before {
  top: 20px;
  left: 20px;
}

.target-box::after {
  bottom: -20px;
  right: 20px;
}

/* BIO SECTION */
.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.bio-img-frame {
  height: 700px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.bio-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: sepia(10%) contrast(90%);
}

.bio-content {
  padding-right: 20px;
}

.bio-highlight {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-weight: 500;
  border-left: 2px solid var(--gold-matte);
  padding-left: 20px;
}

/* WHATSAPP & FOOTER */
.whatsapp-pill {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 5000;
  background: #1A1A1A;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s var(--easing);
}

.whatsapp-pill:hover {
  background: var(--gold-matte);
  color: #000;
  transform: translateY(-3px);
}

footer {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ANIMATIONS & RESPONSIVO */
.fade-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s var(--easing);
}

.fade-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .split-section,
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .bio-img-frame {
    height: 450px;
    order: -1;
    position: relative;
    top: 0;
  }
  .target-box {
    padding: 40px 20px;
    border: none;
  }
}
/* TEXTURAS & UTILS */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

.display-text {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 30px;
}

.gold-italic {
  font-style: italic;
  color: var(--gold-matte);
  font-family: var(--font-display);
  font-weight: 500;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-matte);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-padding {
  padding: 120px 0;
}

.text-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* HEADER & MENU */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 2000;
  transition: all 0.5s var(--easing);
  mix-blend-mode: difference;
  color: #fff;
}

header.scrolled {
  padding: 20px 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-align: center;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: block;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
  opacity: 0.9;
}

.menu-trigger {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F0EBE5;
  z-index: 1500;
  transform: translateY(-100%);
  transition: transform 0.8s var(--easing);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay.active {
  transform: translateY(0);
}

.nav-links-list {
  list-style: none;
  text-align: center;
}

.nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--text-primary);
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.8s var(--easing), color 0.3s;
}

.nav-overlay.active .nav-link {
  transform: translateY(0);
}

.nav-link:hover {
  color: var(--gold-matte);
  font-style: italic;
}

/* --- PAGE SPECIFIC --- */
/* HERO */
.skin-hero {
  height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
}

.skin-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  opacity: 0.6;
  filter: grayscale(20%);
}

/* CONTENT SPLIT */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* FEATURE LIST (ELEGANT) */
.feature-list {
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: baseline;
  gap: 20px;
  transition: 0.3s;
}

.feature-item:hover {
  padding-left: 10px;
  border-bottom-color: var(--gold-matte);
}

.f-bullet {
  width: 6px;
  height: 6px;
  background: var(--gold-matte);
  border-radius: 50%;
  flex-shrink: 0;
}

.f-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
}

/* DARK BANNER (TARGET AUDIENCE) */
.target-section {
  background: var(--bg-dark);
  color: var(--text-inverse);
  text-align: center;
}

.target-box {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
  position: relative;
}

.target-box::before,
.target-box::after {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-matte);
  position: absolute;
  opacity: 0.5;
  line-height: 1;
}

.target-box::before {
  top: 20px;
  left: 20px;
}

.target-box::after {
  bottom: -20px;
  right: 20px;
}

/* BIO SECTION */
.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.bio-img-frame {
  height: 700px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.bio-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: sepia(10%) contrast(90%);
}

.bio-content {
  padding-right: 20px;
}

.bio-highlight {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-weight: 500;
  border-left: 2px solid var(--gold-matte);
  padding-left: 20px;
}

/* WHATSAPP & FOOTER */
.whatsapp-pill {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 5000;
  background: #1A1A1A;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s var(--easing);
}

.whatsapp-pill:hover {
  background: var(--gold-matte);
  color: #000;
  transform: translateY(-3px);
}

/* --- DESIGN SYSTEM (BASE) --- */
:root {
  --bg-paper: #FDFBF9;
  --bg-contrast: #F2EFE9;
  --bg-dark: #0F0F0F;
  --text-primary: #1A1A1A;
  --text-secondary: #595959;
  --text-inverse: #F4F1ED;
  --gold-matte: #BFA482;
  --gold-rich: #C5A880;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --easing: cubic-bezier(0.25, 1, 0.5, 1);
  --container-width: 1300px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-paper);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* TEXTURAS & UTILS */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

.display-text {
  font-size: clamp(3.5rem, 9vw, 8rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 30px;
}

.gold-italic {
  font-style: italic;
  color: var(--gold-matte);
  font-family: var(--font-display);
  font-weight: 500;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-matte);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-padding {
  padding: 140px 0;
}

/* HEADER & MENU */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 2000;
  transition: all 0.5s var(--easing);
  mix-blend-mode: difference;
  color: #fff;
}

header.scrolled {
  padding: 20px 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-align: center;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: block;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
  opacity: 0.9;
}

.menu-trigger {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F0EBE5;
  z-index: 1500;
  transform: translateY(-100%);
  transition: transform 0.8s var(--easing);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay.active {
  transform: translateY(0);
}

.nav-links-list {
  list-style: none;
  text-align: center;
}

.nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--text-primary);
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.8s var(--easing), color 0.3s;
}

.nav-overlay.active .nav-link {
  transform: translateY(0);
}

.nav-link:hover {
  color: var(--gold-matte);
  font-style: italic;
}

/* WHATSAPP PILL */
.whatsapp-pill {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 5000;
  background: #1A1A1A;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s var(--easing);
}

.whatsapp-pill:hover {
  background: var(--gold-matte);
  color: #000;
  transform: translateY(-3px);
}

/* HERO */
.page-hero {
  height: 80vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  opacity: 0.7;
  animation: slowPan 30s infinite alternate ease-in-out;
}

@keyframes slowPan {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
/* INTRODUÇÃO */
.method-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.intro-img-wrapper {
  height: 650px;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}

.intro-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.5s var(--easing);
  filter: grayscale(10%);
}

.intro-img-wrapper:hover .intro-img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.intro-quote {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 30px;
  border-left: 1px solid var(--gold-matte);
  padding-left: 30px;
}

.intro-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-primary);
}

.feature-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold-matte);
  border-radius: 50%;
}

/* PILARES (Dark) */
.mind-pillars-section {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 60px;
}

.pillar-card {
  transition: 0.5s var(--easing);
  position: relative;
  padding-left: 20px;
  border-left: 1px solid transparent;
}

.pillar-card:hover {
  border-left-color: var(--gold-matte);
}

.pillar-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-matte);
  line-height: 1;
  margin-bottom: 15px;
  font-style: italic;
  display: block;
  opacity: 0.6;
  transition: 0.3s;
}

.pillar-card:hover .pillar-letter {
  opacity: 1;
}

.pillar-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.pillar-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.7;
}

/* PROTOCOLOS (Cards) */
.protocols-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.protocol-card-clean {
  background: #fff;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.protocol-card-clean::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0%;
  background: var(--gold-matte);
  transition: 0.6s var(--easing);
}

.protocol-card-clean:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
  border-color: transparent;
}

.protocol-card-clean:hover::before {
  height: 100%;
}

.p-clean-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 30px;
}

.p-clean-sub {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-matte);
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.p-clean-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-primary);
  line-height: 1;
}

.p-clean-icon {
  font-size: 1.8rem;
  color: var(--gold-matte);
  opacity: 0.5;
  transition: 0.3s;
}

.protocol-card-clean:hover .p-clean-icon {
  opacity: 1;
  transform: scale(1.1);
}

.p-clean-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.p-clean-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.p-clean-obj {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
}

/* ENCERRAMENTO */
.closing-section {
  text-align: center;
  background: var(--bg-contrast);
}

.closing-text-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 40px;
}

.closing-tagline {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-primary);
  font-weight: 600;
  opacity: 0.8;
}

/* FOOTER */
footer {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta {
  font-size: 3rem;
  font-family: var(--font-display);
  margin-bottom: 40px;
}

/* ANIMATIONS & RESPONSIVO */
.fade-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s var(--easing);
}

.fade-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .method-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .intro-img-wrapper {
    height: 500px;
    order: -1;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    border-top: none;
  }
  .pillar-card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 30px;
  }
  .protocols-grid-cards {
    grid-template-columns: 1fr;
  }
  .protocol-card-clean {
    padding: 40px 30px;
  }
}/*# sourceMappingURL=style.css.map */