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

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

:root {
  --bg: #f5f3ef;
  --ink: #1a1a18;
  --mid: #888882;
  --faint: #c8c4bc;
  --red: #c85a4a;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* ===== HERO NAV ===== */
.hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #2a2420;
  text-decoration: none;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2420;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: #f0ede8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2.5rem;
}

.hero-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.hero-col-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 6%;
}

.hero-name {
  margin: 0;
  margin-top: 80px;
}

.hero-name-first {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(90px, 12vw, 150px);
  line-height: 0.92;
  color: #1c1916;
}

.hero-name-last {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(90px, 12vw, 150px);
  line-height: 0.92;
  color: #c4bdb5;
}

.assinatura-wrap {
  width: clamp(240px, 45vw, 700px);
  margin-top: calc(1.5rem - 80px);
}

.assinatura {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.assinatura-path {
  fill: none;
  stroke: #a61212;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.assinatura.is-ready .assinatura-path {
  animation-name: escreverAssinatura;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.assinatura.is-ready .path-3 { animation-duration: 0.60s; animation-delay: 0.50s; }
.assinatura.is-ready .path-5 { animation-duration: 0.30s; animation-delay: 1.10s; }
.assinatura.is-ready .path-2 { animation-duration: 0.70s; animation-delay: 1.40s; }
.assinatura.is-ready .path-4 { animation-duration: 0.45s; animation-delay: 2.10s; }
.assinatura.is-ready .path-1 { animation-duration: 1.20s; animation-delay: 2.55s; }
.assinatura.is-ready .path-6 { animation-duration: 0.25s; animation-delay: 3.75s; }

@keyframes escreverAssinatura {
  from { stroke-dashoffset: var(--path-length); }
  to   { stroke-dashoffset: 0; }
}

.hero-phrase {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: #9e9690;
  max-width: 180px;
  align-self: flex-end;
  padding-bottom: 0.6rem;
}

.hero-phrase em {
  font-style: italic;
  color: #c4bdb5;
}

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

.hero-foot-left {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #7a736d;
}

.hero-foot-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-foot-line {
  display: block;
  width: 36px;
  height: 0.5px;
  background: #9e9690;
}

.hero-foot-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #7a736d;
}

/* ===== ANIMAÇÕES HERO ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-anim {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* ===== BANNER PHOTO ===== */
.banner-photo {
  width: 100%;
  height: clamp(320px, 62vh, 720px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

/* ===== PHOTOS SCROLL SECTION ===== */
.photos-flow {
  padding: 80px 0;
  position: relative;
}

/* Each photo block with parallax feel */
.photo-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  position: relative;
  min-height: 80vh;
}

.photo-block:nth-child(even) {
  flex-direction: row-reverse;
}

.photo-block-img {
  flex: 0 0 58%;
  position: relative;
  overflow: hidden;
}

.photo-block-img-inner {
  width: 100%;
  padding-bottom: 70%;
  position: relative;
  transition: transform 0.1s linear;
}

.photo-b1 { background: linear-gradient(155deg, #1c1510 0%, #100e08 35%, #080808 100%); }
.photo-b2 { background: linear-gradient(140deg, #0c1008 0%, #161c10 40%, #080c08 100%); }
.photo-b3 { background: linear-gradient(160deg, #10080a 0%, #1c1010 45%, #080808 100%); }
.photo-b4 { background: linear-gradient(145deg, #0a0808 0%, #160e08 50%, #080808 100%); }

.photo-b1::before,
.photo-b2::before,
.photo-b3::before,
.photo-b4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 35%, rgba(200,160,80,0.06) 0%, transparent 55%);
}

.photo-block-text {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 40vh;
}

.photo-num {
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--faint);
  margin-bottom: 16px;
}

.photo-cat {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 16px;
}

.photo-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
}

.photo-block-link {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--faint);
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s, letter-spacing 0.4s;
}

.photo-block-link:hover {
  color: var(--ink);
  border-color: var(--mid);
  letter-spacing: 0.5em;
}

/* ===== SIGNATURE SECTION ===== */
.sig-section {
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.sig-text-col { }

.sig-big-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  position: relative;
  z-index: 2;
}

.sig-big-text em {
  font-style: italic;
  color: var(--mid);
}

.sig-photo-col {
  position: relative;
}

.sig-photo {
  width: 100%;
  padding-bottom: 130%;
  background: linear-gradient(155deg, #1a1410 0%, #0e0e0a 50%, #080808 100%);
  position: relative;
  overflow: hidden;
}

.sig-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 45% 30%, rgba(200,160,80,0.06) 0%, transparent 55%);
}

/* Big overlapping text on photo */
.sig-overlay-text {
  position: absolute;
  bottom: -20px;
  left: -40px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 300;
  font-style: italic;
  color: rgba(26,26,24,0.08);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  padding: 0;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.quote-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(160deg, #14100c 0%, #0a0a08 50%, #080808 100%);
  overflow: hidden;
}

.quote-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(180,130,70,0.05) 0%, transparent 60%);
}

.quote-text {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  max-width: 55%;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  line-height: 0.6;
  color: var(--faint);
  margin-bottom: 24px;
  display: block;
}

.quote-body {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 32px;
}

.quote-attr {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-attr::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--mid);
}

/* Circular CTA like Ruud */
.circular-cta {
  position: absolute;
  bottom: 40px;
  right: 25%;
  width: 100px;
  height: 100px;
  z-index: 3;
}

.circular-cta-ring {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(245,243,239,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s;
}

.circular-cta-ring:hover {
  transform: scale(1.05);
}

.circular-cta-ring svg {
  position: absolute;
  inset: 0;
  animation: rotateSlow 12s linear infinite;
}

@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

.circular-cta-arrow {
  font-size: 20px;
  color: var(--bg);
  z-index: 1;
}

.cta-circle-text {
  fill: rgba(245,243,239,0.6);
  font-size: 7.5px;
  letter-spacing: 0.25em;
  font-family: 'Inter', sans-serif;
}

/* ===== SOBRE ===== */
.sobre {
  padding: 120px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}

.sobre-label-vert {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--faint);
  align-self: center;
}

.sobre-main { }

.sobre-intro {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 40px;
}

.sobre-intro em {
  font-style: italic;
  color: var(--mid);
}

.sobre-body {
  font-size: 14px;
  line-height: 2;
  color: var(--mid);
  max-width: 640px;
  margin-bottom: 16px;
}

.sobre-body strong {
  color: var(--ink);
  font-weight: 300;
}

.sobre-loc {
  margin-top: 32px;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ===== CATS NAV — slash style ===== */
.cats-nav {
  padding: 60px 40px;
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}

.cats-title {
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 24px;
}

.cats-list {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
}

.cats-list a {
  color: var(--mid);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

.cats-list a:hover {
  color: var(--ink);
}

.cats-sep {
  color: var(--faint);
  margin: 0 12px;
  font-style: italic;
}

/* ===== ENSAIO ===== */
.ensaio {
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--ink);
  position: relative;
}

.ensaio-text { }

.ensaio-eyebrow {
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(200,196,188,0.4);
  margin-bottom: 32px;
}

.ensaio-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 28px;
}

.ensaio-body {
  font-size: 13px;
  line-height: 2;
  color: rgba(200,196,188,0.5);
  margin-bottom: 40px;
}

.ensaio-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--bg);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,243,239,0.2);
  padding-bottom: 8px;
  transition: gap 0.4s, border-color 0.4s;
}

.ensaio-cta:hover {
  gap: 28px;
  border-color: rgba(245,243,239,0.5);
}

.ensaio-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.ep {
  padding-bottom: 130%;
  position: relative;
  overflow: hidden;
}

.ep1 { background: linear-gradient(155deg, #201510 0%, #100c08 100%); }
.ep2 { background: linear-gradient(160deg, #100808 0%, #0c0808 100%); }
.ep3 { background: linear-gradient(145deg, #0c1008 0%, #080a08 100%); }
.ep4 { background: linear-gradient(150deg, #0a0c08 0%, #080808 100%); }

/* ===== CONTATO ===== */
.contato {
  padding: 100px 48px 80px;
  background: #f5f3ef;
  position: relative;
}

.contato-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contato-left {}

.contato-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  color: #1a1a18;
  margin-bottom: 48px;
}

.contato-loc {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 48px;
}

/* FORMULÁRIO */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 500px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444444;
  padding: 18px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 14px;
  color: #1a1a18;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.4s ease;
  margin-bottom: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: #1a1a18;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #555555;
  font-weight: 200;
}

.contact-form select {
  color: #555555;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6'%3E%3Cpath d='M0 0l6 6 6-6' fill='none' stroke='%237a7672' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.contact-form select:focus {
  color: #1a1a18;
}

.contact-form select option {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #1a1a18;
  background: #f5f3ef;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
  line-height: 1.6;
}

.form-submit {
  align-self: flex-start;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(26,26,24,0.2);
  padding: 12px 0;
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #1a1a18;
  cursor: pointer;
  transition: border-color 0.4s, letter-spacing 0.4s;
}

.form-submit:hover {
  border-bottom-color: #1a1a18;
  letter-spacing: 0.55em;
}

/* LADO DIREITO — INFO */
.contato-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 160px;
  gap: 16px;
}

.contato-email {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #888882;
  text-decoration: none;
  transition: color 0.3s;
}

.contato-email:hover { color: #1a1a18; }

.contato-insta {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c8c4bc;
  text-decoration: none;
  transition: color 0.3s;
}

.contato-insta:hover { color: #888882; }

.contato-sig {
  margin-top: 16px;
}

.contato-sig svg path {
  stroke: #c85a4a;
  opacity: 0.4;
}

.cf-msg {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.cf-msg.ok  { color: #4a7c59; }
.cf-msg.err { color: #c85a4a; }

/* ===== SITE FOOTER ===== */
.site-footer {
  padding: 32px 40px;
  border-top: 1px solid var(--faint);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--ink);
}

.footer-copy {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #1a1a18;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: #f5f3ef;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav {
    padding: 20px 24px;
  }

  .hero {
    padding: 1.5rem;
  }

  .hero-center {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .hero-name {
    margin-top: 0;
  }

  .assinatura-wrap {
    margin-top: 1rem;
  }

  .hero-phrase {
    align-self: auto;
    padding-bottom: 0;
  }

  .hero-foot {
    flex-direction: column;
    gap: 8px;
  }

  .hero-foot-right {
    align-self: flex-end;
  }

  .photo-block {
    flex-direction: column-reverse !important;
    min-height: auto;
    margin-bottom: 60px;
  }

  .photo-block-img {
    flex: none;
    width: 100%;
  }

  .photo-block-text {
    position: static;
    padding: 24px;
  }

  .sig-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }

  .sig-photo {
    padding-bottom: 0;
    min-height: 55vh;
  }

  .quote-text {
    max-width: 100%;
    padding: 60px 24px;
  }

  .quote-photo {
    opacity: 0.3;
    width: 100%;
  }

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

  .sobre-label-vert {
    display: none;
  }

  .ensaio {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  .ensaio-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 32px;
  }


  .contato { padding: 60px 24px; }

  .contato-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contato-right {
    align-items: flex-start;
    padding-top: 0;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .cats-nav {
    padding: 40px 24px;
  }

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

  .site-footer {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ===== SEÇÕES SHOWCASE (categorias alternadas) ===== */
.section-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
  position: relative;
}

.section-light {
  background: #f5f3ef;
}
.section-light .section-text { color: #1a1a18; }
.section-light .section-eyebrow { color: #c8c4bc; }
.section-light .section-body { color: #888882; }
.section-light .section-cta { color: #1a1a18; }

.section-dark {
  background: #1a1a18;
}
.section-dark .section-text { color: #f5f3ef; }
.section-dark .section-eyebrow { color: rgba(200,196,188,0.4); }
.section-dark .section-body { color: rgba(200,196,188,0.5); }
.section-dark .section-cta { color: #f5f3ef; }

.section-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}

.section-body {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 13px;
  line-height: 2;
  margin-bottom: 40px;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
  opacity: 0.6;
  align-self: flex-start;
  transition: opacity 0.3s, gap 0.3s;
}
.section-cta:hover { opacity: 1; gap: 24px; }

/* Seção invertida: texto à direita, fotos à esquerda */
.section-reversed { direction: rtl; }
.section-reversed > * { direction: ltr; }

/* Grid de fotos adaptativo */
.section-photos {
  display: grid;
  gap: 3px;
  overflow: hidden;
  min-height: 400px;
}

.section-photos.photos-empty {
  background: #0e0e0a;
}

.section-photos.photos-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.section-photos.photos-2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

.section-photos.photos-3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.section-photos.photos-3 .photo-item:first-child {
  grid-row: span 2;
}

.section-photos.photos-4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.photo-item {
  overflow: hidden;
  position: relative;
  min-height: 200px;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.photo-item:hover img {
  transform: scale(1.03);
}

/* Mobile */
@media (max-width: 768px) {
  .section-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .section-reversed { direction: ltr; }
  .section-text { padding: 48px 24px; }
  .section-photos { min-height: 300px; }
  .photo-item { min-height: 140px; }
  /* Mobile: fotos ocupam coluna inteira, centraliza o botão */
  .cd-cta,
  .section-reversed .cd-cta {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===========================
   CTA CIRCULAR — 130px flutuando sobre as fotos
   =========================== */

.cd-cta {
  /* Flutua sobre as fotos — lado oposto ao texto */
  position: absolute;
  bottom: 40px;
  right: 80px;   /* padrão: fotos à direita */
  left: auto;
  transform: none;
  z-index: 10;

  width: 130px;
  height: 130px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: #fff;
}

.cd-cta__circle-wrapper,
.cd-cta__arrow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease-out;
  will-change: transform;
  background: transparent;
}

.cd-cta__ring {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  background: transparent;
  animation: cd-cta-spin 18s linear infinite;
}

@keyframes cd-cta-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.cd-cta__border {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.8;
  opacity: 0.7;
}

.cd-cta__text {
  fill: currentColor;
  font-size: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.cd-cta__arrow {
  width: 28px;
  height: 28px;
  display: block;
  fill: none;
  color: inherit;
}

/* Seções invertidas: fotos à esquerda → botão vai para a esquerda */
.section-reversed .cd-cta {
  right: auto;
  left: 80px;
}

@media (prefers-reduced-motion: reduce) {
  .cd-cta__ring { animation: none; }
  .cd-cta__circle-wrapper,
  .cd-cta__arrow-wrapper { transition: none; }
}

/* ===========================
   INTRO ANIMATION — CD INTRO
   =========================== */

@media (prefers-reduced-motion: reduce) {
  #cd-intro { display: none !important; }
}

/* Container: 9s total (4s título + ~4s fotos + ~0.9s fade) */
#cd-intro {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #111111;
  overflow: hidden;
  animation: cd-overlay-fade 9s ease-in-out forwards;
}

/* ── NOME + ASSINATURA ───────────────────────────
   Container sem z-index → não cria stacking context.
   Filhos têm z-index individual que compete direto
   com as fotos no contexto do #cd-intro.
────────────────────────────────────────────────── */
.cd-intro__center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  /* sem align-items (usa stretch) e sem z-index —
     fundamental para os filhos competirem diretamente
     com as fotos no contexto do #cd-intro */
}

/* Nome: z-index 1 → fica ATRÁS das fotos (z-index 2/3)
   top: 80px desloca visualmente sem afetar o layout dos irmãos
   (position: relative preserva o espaço original no flex) */
.cd-intro__name {
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  top: 80px;
}

.cd-intro__name-first {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(72px, 11vw, 140px);
  line-height: 0.92;
  color: #f0ede8;
  opacity: 0;
  animation: cd-name-first-in 0.9s ease forwards;
}

.cd-intro__name-last {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(72px, 11vw, 140px);
  line-height: 0.92;
  color: rgba(240, 237, 232, 0.35);
  opacity: 0;
  animation: cd-name-last-in 0.9s ease 0.2s forwards;
}

/* "Carol" desliza de baixo e pousa à esquerda do centro */
@keyframes cd-name-first-in {
  from { opacity: 0; transform: translateX(-35px) translateY(14px); }
  to   { opacity: 1; transform: translateX(-35px) translateY(0);    }
}

/* "Diniz" desliza de baixo e pousa à direita do centro */
@keyframes cd-name-last-in {
  from { opacity: 0; transform: translateX(35px) translateY(14px); }
  to   { opacity: 1; transform: translateX(35px) translateY(0);    }
}

/* Assinatura: z-index 10 → fica na FRENTE das fotos (z-index 2/3) */
.cd-intro__sig-wrap {
  width: clamp(200px, 42vw, 660px);
  margin: 1.5rem auto 0;
  position: relative;
  z-index: 10;
}

.cd-intro__sig {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.cd-intro__sig-path {
  fill: none;
  stroke: #a61212;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

/* Reutiliza o keyframe da assinatura da hero */
.cd-intro__sig.is-ready .cd-intro__sig-path {
  animation-name: escreverAssinatura;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.cd-intro__sig.is-ready .path-3 { animation-duration: 0.60s; animation-delay: 0.50s; }
.cd-intro__sig.is-ready .path-5 { animation-duration: 0.30s; animation-delay: 1.10s; }
.cd-intro__sig.is-ready .path-2 { animation-duration: 0.70s; animation-delay: 1.40s; }
.cd-intro__sig.is-ready .path-4 { animation-duration: 0.45s; animation-delay: 2.10s; }
.cd-intro__sig.is-ready .path-1 { animation-duration: 1.20s; animation-delay: 2.55s; }
.cd-intro__sig.is-ready .path-6 { animation-duration: 0.25s; animation-delay: 3.75s; }

/* ── FOTOS (iniciam em 5s, duram 5s) ────────────── */
.cd-intro__photos {
  position: absolute;
  inset: 0;
}

.cd-photo {
  position: absolute;
  overflow: hidden;
  will-change: transform;
}

.cd-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Photo A — large, left side, travels upward — rápida */
.cd-photo--a {
  left: 0;
  top: 12vh;
  width: 52vw;
  z-index: 2;
  --rot: 1.5deg;
  transform: translateY(110vh) rotate(var(--rot));
  animation: cd-photo-up 4.6s 4.0s both;
}

/* Photo D — large, right side, travels upward — lenta, começa depois */
.cd-photo--d {
  right: 0;
  top: 10vh;
  width: 52vw;
  z-index: 2;
  --rot: 1.5deg;
  transform: translateY(110vh) rotate(var(--rot));
  animation: cd-photo-up-early-exit 5.0s 4.6s both;
}

/* Photo C — smaller, upper-left area, travels downward — mais rápida */
.cd-photo--c {
  left: 8vw;
  top: 6vh;
  width: 30vw;
  z-index: 3;
  --rot: -1.5deg;
  transform: translateY(-110vh) rotate(var(--rot));
  animation: cd-photo-down 4.0s 4.0s both;
}

/* Photo B — smaller, upper-right area, travels downward — mais lenta, começa depois */
.cd-photo--b {
  right: 6vw;
  top: 8vh;
  width: 34vw;
  z-index: 3;
  --rot: -1.5deg;
  transform: translateY(-110vh) rotate(var(--rot));
  animation: cd-photo-down-early-exit 5.4s 4.3s both;
}

/* Upward travel: enter from below, pause, exit through top */
@keyframes cd-photo-up {
  0% {
    transform: translateY(110vh) rotate(var(--rot));
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  30% {
    transform: translateY(0) rotate(var(--rot));
    animation-timing-function: linear;
  }
  56% {
    transform: translateY(0) rotate(var(--rot));
    animation-timing-function: cubic-bezier(0.7, 0, 0.84, 0);
  }
  80%, 100% {
    transform: translateY(-120vh) rotate(var(--rot));
  }
}

/* Downward travel: enter from above, pause, exit through bottom */
@keyframes cd-photo-down {
  0% {
    transform: translateY(-110vh) rotate(var(--rot));
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  30% {
    transform: translateY(0) rotate(var(--rot));
    animation-timing-function: linear;
  }
  56% {
    transform: translateY(0) rotate(var(--rot));
    animation-timing-function: cubic-bezier(0.7, 0, 0.84, 0);
  }
  80%, 100% {
    transform: translateY(120vh) rotate(var(--rot));
  }
}

/* Variants for b/d: exit starts at 46% instead of 56% (~0.5s earlier) */
@keyframes cd-photo-up-early-exit {
  0% {
    transform: translateY(110vh) rotate(var(--rot));
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  30% {
    transform: translateY(0) rotate(var(--rot));
    animation-timing-function: linear;
  }
  46% {
    transform: translateY(0) rotate(var(--rot));
    animation-timing-function: cubic-bezier(0.7, 0, 0.84, 0);
  }
  70%, 100% {
    transform: translateY(-120vh) rotate(var(--rot));
  }
}

@keyframes cd-photo-down-early-exit {
  0% {
    transform: translateY(-110vh) rotate(var(--rot));
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  30% {
    transform: translateY(0) rotate(var(--rot));
    animation-timing-function: linear;
  }
  46% {
    transform: translateY(0) rotate(var(--rot));
    animation-timing-function: cubic-bezier(0.7, 0, 0.84, 0);
  }
  70%, 100% {
    transform: translateY(120vh) rotate(var(--rot));
  }
}

/* Fade começa em 90% de 9s = 8.1s (logo após última foto sair) */
@keyframes cd-overlay-fade {
  0%, 90% { opacity: 1; }
  100%    { opacity: 0; }
}

/* Mobile */
@media (max-width: 767px) {
  .cd-intro__name-first,
  .cd-intro__name-last {
    font-size: clamp(56px, 14vw, 90px);
  }

  .cd-intro__sig-wrap {
    width: clamp(180px, 80vw, 400px);
  }

  .cd-photo--a {
    left: 2vw;
    top: 24vh;
    width: 46vw;
    height: 50vh;
  }

  .cd-photo--d {
    right: 2vw;
    top: 24vh;
    width: 46vw;
    height: 50vh;
  }

  .cd-photo--c {
    left: 4vw;
    top: 6vh;
    width: 32vw;
    height: 40vh;
  }

  .cd-photo--b {
    right: 4vw;
    top: 6vh;
    width: 32vw;
    height: 40vh;
  }
}
