/* ---------------------------------------------------- */
/* 1. Reset Básico & Variáveis CSS */
/* ---------------------------------------------------- */

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

:root {
  --bg: #f6f4f1;
  --surface: #f3f1ed;
  --card: #fcfbf8;
  --deep: #4a3d36;
  --deep-2: #5a4a42;
  --text: #262321;
  --muted: #6e655f;
  --line: #d7cec5;
  --accent: #cbb99f;
  --white: #ffffff;
  --radius: 28px;
  --shadow: 0 24px 60px rgba(74, 61, 54, .08);
  --shadow-hover: 0 32px 70px rgba(74, 61, 54, .12);
  --max: 1160px;
  --transition: all 0.3s ease;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.75rem;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* ---------------------------------------------------- */
/* 2. Utilitários */
/* ---------------------------------------------------- */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------------------------------------------------- */
/* 3. Tipografia Base */
/* ---------------------------------------------------- */

h1, h2, h3, .serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .95;
  margin-bottom: var(--spacing-md);
  color: var(--deep);
}

h1 {
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  margin-bottom: 18px;
}

p {
  margin-bottom: var(--spacing-md);
}

.small {
  font-size: var(--font-size-sm);
  line-height: 1.4;
  color: var(--text);
}

/* ---------------------------------------------------- */
/* 4. Header & Navegação */
/* ---------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(246, 244, 241, .86);
  border-bottom: 1px solid rgba(215, 206, 197, .55);
  padding: var(--spacing-md) 0;
  transition: box-shadow 0.3s ease-in-out;
}

.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.brand:hover {
  text-decoration: none;
}

.monogram {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  line-height: 1;
  color: var(--deep);
  letter-spacing: .02em;
  font-weight: 600;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--deep);
}

.brand-copy span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  padding: var(--spacing-xs) 0;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--deep);
  text-decoration: none;
}

/* ---------------------------------------------------- */
/* 5. Seção Hero */
/* ---------------------------------------------------- */

.hero {
  padding: 42px 0 48px;
  background-color: var(--bg);
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

.hero-copy {
  padding: 46px 8px 46px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy .eyebrow {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 600;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  margin-bottom: 18px;
  color: var(--deep);
}

.hero-copy p {
  font-size: 17px;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 32px;
}

.hero-microcopy {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-row {
    justify-content: flex-start;
  }
}

/* ---------------------------------------------------- */
/* 6. Botões */
/* ---------------------------------------------------- */

.btn {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  color: var(--deep);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255,255,255,.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  background: rgba(74, 61, 54, .06);
  border-color: var(--deep);
  color: var(--deep);
  text-decoration: none;
}

.btn-primary {
  background: var(--deep);
  color: var(--white);
  border-color: var(--deep);
}

.btn-primary:hover {
  background: var(--deep-2);
  border-color: var(--deep-2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 61, 54, 0.15);
  text-decoration: none;
}

/* ---------------------------------------------------- */
/* 7. Hero Visual */
/* ---------------------------------------------------- */

.hero-visual {
  min-height: 640px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background-color: #ece5dd;
  background-image: url('https://www.dropbox.com/scl/fi/b91pp99sdgr9b8smq9qzr/B88A9435.jpg?rlkey=5yhy0arjriug3bxynervgewrg&st=kvftb8qr&dl=0');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(203, 185, 159, .3);
}

.visual-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(203, 185, 159, .45);
  border-radius: 24px;
  padding: 32px;
}

.visual-card .serif {
  font-size: 42px;
  color: var(--deep);
  margin-bottom: 10px;
}

.visual-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* ---------------------------------------------------- */
/* 8. Footer */
/* ---------------------------------------------------- */

.footer {
  padding: 26px 0 54px;
  background-color: var(--bg);
}

.footer-box {
  background: var(--deep);
  color: #e9dcc8;
  padding: 54px 40px;
  border-radius: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 32px;
  align-items: center;
}

.footer-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 112px;
  line-height: .85;
  text-align: center;
  color: var(--white);
  font-weight: 600;
  display: block;
}

.footer-copy strong {
  display: block;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-copy div {
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 4px;
}

.footer-copy p {
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
  max-width: 72ch;
  margin-top: 10px;
}

.footer-copy a {
  color: var(--accent);
}

.footer-copy a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 18px;
}

.contact-link {
  color: rgba(255, 255, 255, .72);
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, .42);
  margin-top: 14px;
}

/* ---------------------------------------------------- */
/* 9. WhatsApp Float */
/* ---------------------------------------------------- */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-hover);
  background-color: #20b858;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ---------------------------------------------------- */
/* 10. Seções e Componentes */
/* ---------------------------------------------------- */

.section {
  padding: 48px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-end;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: 58px;
  color: var(--deep);
}

.section-head p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.path-card {
  background: var(--card);
  border: 1px solid rgba(203, 185, 159, .45);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.path-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.path-card .label {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.path-card h3 {
  font-size: 42px;
  color: var(--deep);
  margin-bottom: 16px;
}

.path-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.list {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.list div {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
}

.list div::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--deep);
  font-size: 1.2em;
  line-height: 1;
}

.editorial {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.editorial-box {
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #ddd2c6;
  background-image: url('https://www.dropbox.com/scl/fi/krx55jkozqmo7mtlxqfpz/2LT01102.jpg?rlkey=uvwru5hvugjjzf3glwj3d1pzk&st=be3b4jnt&dl=1');
  background-size: cover;
  background-position: center top;
  border: 1px solid rgba(203, 185, 159, .4);
  box-shadow: var(--shadow);
  position: relative;
}

.editorial-copy h2 {
  font-size: 74px;
  color: var(--deep);
  margin-bottom: 24px;
}

.editorial-copy p {
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 20px;
  font-size: 17px;
}

.reviews-wrap {
  background: var(--deep);
  color: var(--white);
  border-radius: 34px;
  padding: 64px 40px;
}

.reviews-wrap h2 {
  font-size: 64px;
  color: #e9dcc8;
  margin-bottom: 12px;
  text-align: center;
}

.reviews-wrap .sub {
  color: rgba(255, 255, 255, .72);
  text-align: center;
  margin-bottom: 40px;
  font-size: 17px;
}

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

.review {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(233, 220, 200, .14);
  padding: 30px;
  border-radius: 22px;
  transition: var(--transition);
}

.review:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-4px);
}

.stars {
  letter-spacing: .18em;
  color: #e9dcc8;
  font-size: 14px;
  margin-bottom: 16px;
}

.review p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .9);
}

.cta-final {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
}

.cta-panel {
  background: var(--card);
  border: 1px solid rgba(203, 185, 159, .45);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  font-size: 64px;
  color: var(--deep);
  margin-bottom: 18px;
}

.cta-panel p {
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 32px;
  font-size: 17px;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 14px;
  color: var(--muted);
  font-size: 16px;
}

/* ---------------------------------------------------- */
/* 11. Animações de Reveal */
/* ---------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
              transform .7s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.tilt-ready {
  transition: transform .55s cubic-bezier(.22, 1, .36, 1),
              box-shadow .55s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

/* ---------------------------------------------------- */
/* 12. Responsividade */
/* ---------------------------------------------------- */

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-grid, .paths, .editorial, .reviews-grid, .cta-final, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { padding-right: 0; padding-bottom: 24px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head h2 { margin-bottom: 12px; }
  .editorial-copy h2, .cta-panel h2, .reviews-wrap h2 { font-size: 48px; }
  h1 { font-size: 3.2rem; }
  .hero-visual { min-height: 480px; }
  .footer-mark { text-align: left; font-size: 84px; }
  .reviews-wrap, .footer-box { border-radius: 24px; padding: 40px 24px; }
  .path-card, .cta-panel { padding: 30px; }
}

@media (max-width: 767px) {
  h1 { font-size: var(--font-size-h2); }
  .nav-inner { flex-direction: column; gap: var(--spacing-md); }
  .nav-links { justify-content: center; width: 100%; }
  .brand-copy { text-align: center; }
  .hero-copy { text-align: center; }
  .cta-row { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-mark { margin: 0 auto var(--spacing-md); }
}

@media (max-width: 480px) {
  .hero-copy p { font-size: var(--font-size-base); }
  .whatsapp-float { width: 50px; height: 50px; bottom: var(--spacing-md); right: var(--spacing-md); }
  .whatsapp-float svg { width: 25px; height: 25px; }
}