:root {
  --ivory: #fbf8f2;
  --paper: #f4eee6;
  --sand: #e7d8c7;
  --coffee: #30231b;
  --taupe: #76675c;
  --line: #e2d4c5;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #2f261f;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.95), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(210,190,170,.45), transparent 28%),
    linear-gradient(135deg, #fbf8f2 0%, #f2eadf 45%, #e5d7c8 100%);
  background-attachment: fixed;
  animation: pageFade .8s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .12;
  background-image: radial-gradient(rgba(70,50,35,.08) .7px, transparent .7px);
  background-size: 5px 5px;
}

a {
  color: inherit;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251,248,242,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,212,197,.65);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}

.nav-scroll {
  background: rgba(251,248,242,.88);
  backdrop-filter: blur(22px);
  padding: 14px 70px;
  box-shadow:  0 1px 1px rgba(60,45,35,.02),  0 8px 24px rgba(60,45,35,.03);
}

.logo {
  width: 240px;
  display: block;
  transition: opacity .4s ease, transform .4s ease;
}

.logo:hover {
  opacity: .85;
  transform: scale(1.015);
}

.links a {
  text-decoration: none;
  margin-left: 26px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: opacity .3s ease, letter-spacing .3s ease;
}

.links a:hover {
  opacity: .55;
  letter-spacing: 3.2px;
}

.hero,
.page-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
}

.hero {
  min-height: 100vh;
  padding: 170px 24px 120px;
}

.page-hero {
  min-height: 72vh;
  padding: 180px 24px 110px;
}

.hero-inner {
  max-width: 920px;
  animation: fadeUp 1.15s ease;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #9a806a;
  margin-bottom: 20px;
}

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
}

h1 {
  font-size: 74px;
  line-height: 1.02;
  margin: 0 0 24px;
}

h2 {
  font-size: 52px;
  line-height: 1.08;
  margin: 0 0 28px;
}

h3 {
  font-size: 31px;
  margin: 0 0 14px;
}

.lead {
  max-width: 690px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  color: var(--taupe);
}

.btn {
  display: inline-block;
  margin-top: 34px;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--coffee);
  color: white;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  transition: transform .3s ease, background .3s ease, opacity .3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: #654834;
  opacity: .92;
}

.section {
  padding: 130px 24px;
  text-align: center;
  background: transparent;
}

.section p {
  max-width: 750px;
  margin: auto;
  font-size: 17px;
  line-height: 1.9;
  color: var(--taupe);
}

.cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 64px;
}

.card {
  width: 290px;
  padding: 40px 30px;
  border-radius: 32px;
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: 0 1px 1px rgba(60,45,35,.02), 0 8px 24px rgba(60,45,35,.04), 0 24px 60px rgba(60,45,35,.05);
  text-decoration: none;
  transition: transform .4s ease, box-shadow .4s ease, background .4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 2px rgba(60,45,35,.02), 0 12px 34px rgba(60,45,35,.05), 0 32px 80px rgba(60,45,35,.08);
  background: rgba(255,255,255,.9);
}

.split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 76px;
  flex-wrap: wrap;
  text-align: left;
  padding-top: 140px;
  padding-bottom: 140px;
  background: transparent;
}

.portrait {
  width: 360px;
  height: 500px;
  object-fit: cover;
  border-radius: 190px 190px 24px 24px;
  box-shadow: 0 4px 10px rgba(50,35,25,.04), 0 18px 40px rgba(50,35,25,.07), 0 40px 90px rgba(50,35,25,.10);
  filter: grayscale(12%);
  transition: transform .7s ease, filter .7s ease;
}

.portrait:hover {
  transform: scale(1.018);
  filter: grayscale(0%);
}

.text {
  max-width: 560px;
}

.band {
  background: rgba(244,238,230,.68);
  backdrop-filter: blur(12px);
  padding-top: 145px;
  padding-bottom: 145px;
}

.quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  line-height: 1.45;
  max-width: 820px !important;
  color: #3d3028 !important;
}

.list {
  max-width: 850px;
  margin: 45px auto 0;
  text-align: left;
  border-top: 1px solid var(--line);
}

.item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
}

.item strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.item span {
  line-height: 1.8;
  color: var(--taupe);
}

.credenciais {
  margin-top: -10px;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9a806a;
}

.hero-foto {
  background:
    linear-gradient(rgba(40,30,24,.35), rgba(40,30,24,.50)),
    url("hero.jpeg") center top / cover no-repeat !important;
}

.hero-mama {
  background:
    linear-gradient(rgba(30,22,18,.30), rgba(30,22,18,.48)),
    url("mamahero.jpeg") center top / cover no-repeat !important;
}

.hero-corpo {
  background:
    linear-gradient(rgba(30,22,18,.30), rgba(30,22,18,.48)),
    url("corpohero.jpeg") center 85% / cover no-repeat !important;
}

.hero-face {
  background:
    linear-gradient(rgba(30,22,18,.30), rgba(30,22,18,.48)),
    url("facehero.jpeg") center top / cover no-repeat !important;
}

.hero-filosofia {
  background:
    linear-gradient(rgba(30,22,18,.34), rgba(30,22,18,.54)),
    url("filosofiahero.jpeg") center top / cover no-repeat !important;
}

.hero-foto h1,
.hero-foto .lead,
.hero-foto .eyebrow,
.hero-mama h1,
.hero-mama .lead,
.hero-mama .eyebrow,
.hero-corpo h1,
.hero-corpo .lead,
.hero-corpo .eyebrow,
.hero-face h1,
.hero-face .lead,
.hero-face .eyebrow,
.hero-filosofia h1,
.hero-filosofia .lead,
.hero-filosofia .eyebrow {
  color: #fffaf4;
}

.filosofia-texto {
  max-width: 980px;
  margin: auto;
}

.filosofia-manifesto {
  padding-top: 130px;
  padding-bottom: 130px;
}

.mapa {
  transition: transform .5s ease, box-shadow .5s ease;
}

.mapa:hover {
  transform: scale(1.008);
  box-shadow: 0 35px 80px rgba(60,45,35,.13);
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--coffee);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 27px;
  box-shadow: 0 15px 40px rgba(0,0,0,.22);
  z-index: 80;
}

.footer-luxo {
  background: #30231b;
  color: #f7efe6;
  text-align: center;
  padding: 64px 20px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  letter-spacing: 8px;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a {
  color: #d8cabe;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-links a:hover {
  opacity: .6;
}

.footer-luxo p {
  color: #bfae9f;
  font-size: 12px;
  letter-spacing: 1px;
}

.section,
.card,
.split {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}

.section.apareceu,
.card.apareceu,
.split.apareceu {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

  .nav {
    padding: 14px 18px;
    gap: 12px;
    flex-direction: column;
    background: rgba(251,248,242,.86);
  }

  .nav-scroll {
    padding: 12px 18px;
  }

  .logo {
    width: 170px;
  }

  .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .links a {
    margin-left: 0;
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero,
  .page-hero {
    min-height: 88vh;
    padding: 190px 22px 90px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.05;
  }

  h2 {
    font-size: 36px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .section {
    padding: 85px 22px;
  }

  .cards {
    gap: 22px;
    margin-top: 42px;
  }

  .card {
    width: 100%;
    max-width: 340px;
    padding: 34px 28px;
  }

  .split {
    gap: 42px;
    padding-top: 95px;
    padding-bottom: 95px;
    text-align: center;
  }

  .portrait {
    width: 280px;
    height: 380px;
  }

  .item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .whatsapp {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }

  .footer-logo {
    font-size: 36px;
  }

  .footer-links {
    gap: 20px;
  }

  .card:hover,
  .portrait:hover,
  .mapa:hover,
  .btn:hover,
  .logo:hover {
    transform: none;
  }
}

/* ===== TRANSIÇÃO ENTRE PÁGINAS ===== */ body { opacity: 1; transition: opacity 0.45s ease; } body.saindo { opacity: 0; }

.hero-inner {
  animation: fadeUp 1.4s ease both;
}

/* ===== PRELOADER LUXURY ===== */ .preloader { position: fixed; inset: 0; z-index: 20000; background: #fbf8f2; display: flex; align-items: center; justify-content: center; transition: opacity 0.8s ease, visibility 0.8s ease; } .preloader img { width: 260px; opacity: 0; animation: preloaderLogo 1.2s ease forwards; } .preloader.sumir { opacity: 0; visibility: hidden; } @keyframes preloaderLogo { from { opacity: 0; transform: translateY(12px); filter: blur(6px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }

.sbcp{margin-top:-12px;margin-bottom:32px;font-size:12px;color:#76675c;font-style:italic;}

/* ===== MOBILE FINAL LIMPO ===== */ .menu-toggle { display: none; background: none; border: none; color: var(--coffee); font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; } @media (max-width: 900px) { body::before { opacity: .06; } .nav { position: relative !important; top: auto !important; width: 100% !important; display: flex !important; flex-direction: column !important; align-items: center !important; padding: 18px 18px 14px !important; background: rgba(251,248,242,.96) !important; backdrop-filter: blur(18px) !important; } .nav > a { display: flex !important; justify-content: center !important; width: 100% !important; } .logo { width: 150px !important; } .menu-toggle { display: block !important; margin-top: 10px !important; margin-bottom: 0 !important; } .links { display: none !important; width: 100% !important; padding-top: 18px !important; margin-top: 14px !important; border-top: 1px solid rgba(48,35,27,.12) !important; text-align: center !important; } .links.aberto { display: flex !important; flex-direction: column !important; gap: 14px !important; } .links a { margin: 0 !important; font-family: 'Inter', sans-serif !important; font-size: 11px !important; letter-spacing: 3px !important; text-transform: uppercase !important; color: var(--coffee) !important; } .hero, .page-hero { min-height: 88vh !important; padding: 80px 22px 90px !important; } h1 { font-size: 42px !important; line-height: 1.05 !important; } h2 { font-size: 36px !important; } .lead { font-size: 16px !important; line-height: 1.75 !important; } .section { padding: 85px 22px !important; } .cards { gap: 22px !important; margin-top: 42px !important; } .card { width: 100% !important; max-width: 340px !important; padding: 34px 28px !important; } .split { gap: 42px !important; padding-top: 95px !important; padding-bottom: 95px !important; text-align: center !important; } .portrait { width: 280px !important; height: 380px !important; } .item { grid-template-columns: 1fr !important; gap: 8px !important; } .whatsapp { width: 56px !important; height: 56px !important; right: 18px !important; bottom: 18px !important; } .footer-logo { font-size: 36px !important; } .footer-links { gap: 20px !important; } .card:hover, .portrait:hover, .mapa:hover, .btn:hover, .logo:hover { transform: none !important; } }

/* ===== MENU DESKTOP RESTAURADO ===== */ @media (min-width: 901px) { .nav { position: fixed !important; top: 0 !important; width: 100% !important; z-index: 50 !important; display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: space-between !important; padding: 16px 48px !important; background: rgba(251,248,242,.78) !important; backdrop-filter: blur(18px) !important; } .logo { width: 240px !important; } .menu-toggle { display: none !important; } .links { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 0 !important; width: auto !important; border: none !important; padding: 0 !important; margin: 0 !important; } .links a { margin-left: 26px !important; font-family: 'Inter', sans-serif !important; font-size: 11px !important; letter-spacing: 3px !important; text-transform: uppercase !important; } .nav-scroll { padding: 14px 70px !important; background: rgba(251,248,242,.88) !important; box-shadow: 0 1px 1px rgba(60,45,35,.02), 0 8px 24px rgba(60,45,35,.03) !important; } }