/* ═══════════════════════════════════════
   VANESSA BLOON — Stylesheet
   ═══════════════════════════════════════ */

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

:root {
  --cream:     #FAF6F1;
  --off-white: #F2EBE0;
  --rose:      #C9927A;
  --rose-lt:   #E8C4B4;
  --rose-dk:   #A06B55;
  --taupe:     #7A6558;
  --brown:     #4A3728;
  --gray:      #8A8480;
  --gray-lt:   #D4CFC9;
  --text:      #2E211A;
  --gold:      #B8975A;
  --nav-h: 80px;
  --marquee-h: 2.8rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .5;
}

/* ── CURSOR ── */
* { cursor: none !important; }
.cursor {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--rose);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--rose); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .35s cubic-bezier(.23,1,.32,1), opacity .3s;
  opacity: .6;
}

/* ══════════════════════════
   NAV
══════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 4rem;
  transition: background .4s, padding .4s;
}
nav.scrolled {
  background: rgba(250,246,241,.94);
  backdrop-filter: blur(14px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 var(--gray-lt);
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 100px; width: auto; display: block;
  transition: height .4s, filter .4s;
}
nav.scrolled .nav-logo-img {
  height: 46px;
  filter: none;
}
.nav-links {
  display: flex; gap: 2.8rem; list-style: none;
  padding: .65rem 1.8rem;
  border-radius: 999px;
  background: rgba(250,246,241,.55);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 4px 18px rgba(74,55,40,.06);
  transition: background .4s, box-shadow .4s, padding .4s;
}
nav.scrolled .nav-links {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: 0;
}
.nav-links a {
  font-size: .72rem; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: var(--taupe); text-decoration: none;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--rose); transition: width .3s;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }

/* ══════════════════════════
   HERO
══════════════════════════ */
#hero {
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(6rem, 12vh, 10rem) 4rem 4rem 4rem;
  position: relative; z-index: 2;
}
.hero-tag {
  font-size: .8rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--rose);
  margin-bottom: clamp(1.2rem, 3vh, 2.6rem);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s .3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.8vw, 5.5rem);
  font-weight: 300; line-height: 1.05; color: var(--brown);
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .9s .5s forwards;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-quote {
  margin-top: clamp(.8rem, 1.8vh, 2rem);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: clamp(1rem, 1.4vw, 1.35rem);
  color: var(--taupe); line-height: 1.6; max-width: 440px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s .8s forwards;
}
.hero-actions {
  margin-top: clamp(1.2rem, 2.5vh, 3rem);
  display: flex; gap: 2.2rem; align-items: center;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s 1s forwards;
}

/* ── Hero image column ── */
.hero-right { position: relative; overflow: hidden; }

/* ── Slides ── */
.hero-img-wrap { position: absolute; inset: 0; }
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--cream) 0%, transparent 35%);
  pointer-events: none;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  filter: sepia(8%) contrast(1.05);
  transform: scale(1.08);
  transition: transform 6s ease-out;
}
/* Ken Burns */
.hero-slide.active img { transform: scale(1.0); }
.hero-slide.entering img { transform: scale(1.08); }

/* Stat strip */
.hero-stats {
  display: flex; gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2rem, 4vh, 4.5rem);
  opacity: 0; animation: fadeUp .8s 1.1s forwards;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem); font-weight: 300;
  color: var(--brown); line-height: 1;
}
.stat-label {
  font-size: .58rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gray); margin-top: .2rem;
}
.hero-accent-line {
  position: absolute; bottom: 0; right: 0; z-index: 2;
  width: 3px; height: 40%;
  background: linear-gradient(to bottom, transparent, var(--rose), transparent);
}

/* ── Thumbnail selectors ── */
.hero-thumbs {
  position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 3;
  display: flex; flex-direction: column; gap: .6rem;
  opacity: 0; animation: fadeUp .8s 1.3s forwards;
}
.hero-counter {
  position: absolute; bottom: calc(2.5rem + 4 * 72px + 3 * .6rem + .9rem);
  right: 2.5rem; z-index: 3;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: .8rem; letter-spacing: .05em; color: rgba(255,255,255,.75);
  opacity: 0; animation: fadeUp .8s 1.3s forwards;
}
.hero-thumb {
  width: 72px; height: 72px; overflow: hidden;
  position: relative;
  border: 2px solid rgba(255,255,255,.25);
  transition: border-color .3s, transform .3s;
  cursor: none;
}
.hero-thumb:hover { transform: scale(1.06); border-color: rgba(255,255,255,.6); }
.hero-thumb.active {
  border-color: var(--rose);
  box-shadow: 0 0 0 1px var(--rose);
}
.hero-thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  filter: sepia(5%) brightness(.85);
  transition: filter .4s, transform .4s;
  display: block;
}
.hero-thumb:hover img,
.hero-thumb.active img { filter: sepia(0%) brightness(1); transform: scale(1.08); }

/* Barra de progresso */
.thumb-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,.2);
}
.thumb-progress-bar {
  height: 100%; width: 0%;
  background: var(--rose);
  transition: none;
}
.hero-thumb.active .thumb-progress-bar {
  width: 100%;
  transition: width var(--slide-duration, 5000ms) linear;
}

/* ══════════════════════════
   BUTTONS
══════════════════════════ */
.btn-primary {
  background: var(--rose); color: #fff;
  padding: .85rem 2.4rem;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  transition: background .3s, transform .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--rose-dk); transform: translateY(-2px); }
.btn-ghost {
  color: var(--taupe); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .6rem;
  transition: color .3s;
}
.btn-ghost:hover { color: var(--rose); }
.btn-ghost::after { content: '→'; font-size: 1rem; transition: transform .3s; }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-ghost-inv {
  color: var(--rose-lt); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .6rem;
  transition: color .3s;
}
.btn-ghost-inv:hover { color: #fff; }
.btn-ghost-inv::after { content: '→'; font-size: 1rem; transition: transform .3s; }
.btn-ghost-inv:hover::after { transform: translateX(4px); }

/* ══════════════════════════
   MARQUEE
══════════════════════════ */
.marquee-wrap {
  overflow: hidden; background: var(--brown);
  height: 2.8rem;
  display: flex; align-items: center;
}
.marquee-track {
  display: flex; width: max-content;
  will-change: transform;
  align-items: center;
}
.marquee-set {
  display: flex; flex-shrink: 0;
  align-items: center;
}
.marquee-track span {
  font-size: .65rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--rose-lt); padding: 0 2.5rem;
  white-space: nowrap;
  line-height: 1;
}
.marquee-track span.dot { color: var(--rose); font-size: .65rem; padding: 0 .5rem; line-height: 1; }

/* ══════════════════════════
   SECTION COMMON
══════════════════════════ */
section { position: relative; z-index: 1; }
.section-label {
  font-size: .78rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15; color: var(--brown);
}
.section-title em { font-style: italic; color: var(--rose); }

/* ══════════════════════════
   SOBRE
══════════════════════════ */
#sobre {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  height: calc(100svh - var(--nav-h) - var(--marquee-h));
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-h) + var(--marquee-h));
}
.sobre-img-col {
  position: relative; overflow: hidden;
  height: 100%; min-height: 0;
}
.sobre-img-col img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; display: block; filter: sepia(6%);
}
/* Fade lateral direito + canto sutil */
.sobre-img-col::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 55%, var(--off-white) 100%),
    linear-gradient(135deg, transparent 70%, rgba(74,55,40,.08));
}
.sobre-badge {
  position: absolute; bottom: clamp(1.5rem, 3vh, 3rem); left: -1px;
  background: var(--rose); padding: 1rem 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 2.8vw, 2.6rem); font-weight: 300; color: #fff; line-height: 1;
}
.sobre-badge small {
  display: block; font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .2em;
  font-weight: 500;
  text-transform: uppercase; margin-top: .4rem;
  color: rgba(255,255,255,.95);
}
.sobre-content {
  background: var(--off-white);
  padding: clamp(1.6rem, 4vh, 3rem) clamp(2.5rem, 4vw, 5rem);
  display: flex; flex-direction: column;
  justify-content: center; gap: clamp(.9rem, 2vh, 1.6rem);
  min-height: 0; overflow: hidden;
}

.sobre-text {
  font-size: clamp(.82rem, 1vw, .95rem); line-height: 1.75; color: var(--taupe);
  max-width: 480px;
}
.sobre-text + .sobre-text { margin-top: clamp(.3rem, .8vh, .8rem); }
.sobre-text strong { color: var(--brown); font-weight: 500; }
.sobre-pills {
  display: flex; flex-wrap: wrap; gap: .7rem;
}
.pill {
  border: 1px solid var(--rose-lt); padding: .4rem 1.1rem;
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--taupe); transition: background .3s, color .3s, border-color .3s;
}
.pill:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* Sobre highlight strip */
.sobre-highlight {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray-lt);
  padding-top: clamp(.8rem, 1.5vh, 1.5rem); gap: 1.5rem; margin-top: .4rem;
}
.hl-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 300; color: var(--rose);
}
.hl-label {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gray); margin-top: .2rem;
}

/* ══════════════════════════
   SERVICES
══════════════════════════ */
#servicos {
  height: calc(100svh - var(--nav-h));
  padding: clamp(1.5rem, 3vh, 3rem) clamp(2rem, 4vw, 4rem);
  background: var(--cream);
  display: flex; flex-direction: column; overflow: hidden;
  scroll-margin-top: var(--nav-h);
}
.services-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: clamp(1rem, 2.5vh, 2rem);
  flex: none;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5px; background: var(--gray-lt);
  flex: 1; min-height: 0;
}
.service-card {
  background: var(--cream); padding: clamp(1.2rem, 3vh, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  position: relative; overflow: hidden; transition: background .4s;
  display: flex; flex-direction: column; justify-content: center;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--rose);
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.service-card:hover { background: var(--off-white); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3.5rem); font-weight: 300; color: var(--rose-lt); line-height: 1;
  margin-bottom: clamp(.6rem, 1.5vh, 1.2rem);
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem); font-weight: 400; color: var(--brown); margin-bottom: .6rem;
}
.service-desc { font-size: clamp(.75rem, .9vw, .82rem); line-height: 1.6; color: var(--gray); }
.service-tag {
  display: inline-block; margin-top: clamp(.8rem, 1.5vh, 1.5rem);
  font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--rose);
}

/* ══════════════════════════
   PORTFOLIO
══════════════════════════ */
#portfolio { padding: clamp(4rem, 8vh, 7rem) clamp(2rem, 4vw, 4rem); background: var(--off-white); scroll-margin-top: var(--nav-h); }
.portfolio-head { text-align: center; margin-bottom: clamp(2rem, 4vh, 4rem); }

/* Masonry-style grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 6px;
}
.port-item {
  overflow: hidden; position: relative;
  background: var(--gray-lt);
}
.port-item:first-child { grid-row: span 2; }
.port-item img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; display: block;
  transition: transform .7s cubic-bezier(.23,1,.32,1), filter .5s;
  filter: sepia(5%);
}
.port-item:hover img { transform: scale(1.06); filter: sepia(0%); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74,55,40,.55), transparent);
  opacity: 0; transition: opacity .4s;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; color: #fff;
}
.portfolio-cta { text-align: center; margin-top: 3rem; }

/* Instagram embed strip */
.insta-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 6px;
  margin-top: 2.5rem;
}
.insta-cell {
  aspect-ratio: 1; overflow: hidden; position: relative; background: var(--gray-lt);
}
.insta-cell img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  filter: sepia(5%);
  transition: transform .6s cubic-bezier(.23,1,.32,1);
}
.insta-cell:hover img { transform: scale(1.08); }
.insta-badge {
  position: absolute; inset: 0;
  background: rgba(74,55,40,.0);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s;
}
.insta-cell:hover .insta-badge { opacity: 1; background: rgba(74,55,40,.3); }
.insta-badge span {
  font-size: .65rem; letter-spacing: .2em;
  text-transform: uppercase; color: #fff;
}

/* ══════════════════════════
   DEPOIMENTOS
══════════════════════════ */
#depoimentos {
  padding: clamp(4rem, 8vh, 7rem) clamp(2rem, 4vw, 4rem); background: var(--brown);
  position: relative; overflow: hidden;
  scroll-margin-top: var(--nav-h);
}
#depoimentos::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 32rem; color: rgba(255,255,255,.03);
  position: absolute; top: -6rem; left: 2rem;
  line-height: 1; pointer-events: none; font-weight: 300;
}
.dep-head { text-align: center; margin-bottom: clamp(2rem, 4vh, 4rem); }
.dep-head .section-label { color: var(--rose-lt); }
.dep-head .section-title { color: var(--cream); }
.dep-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.dep-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 2.5rem; transition: background .3s;
}
.dep-card:hover { background: rgba(255,255,255,.09); }
.dep-stars { color: var(--gold); font-size: .8rem; letter-spacing: .1em; margin-bottom: 1.2rem; }
.dep-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--cream); line-height: 1.7; margin-bottom: 1.5rem;
}
.dep-name {
  font-size: .65rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--rose-lt);
}

/* ══════════════════════════
   CONTATO
══════════════════════════ */
#contato {
  padding: clamp(4rem, 8vh, 8rem) clamp(2rem, 4vw, 4rem); background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 5rem);
  scroll-margin-top: var(--nav-h);
}
.contato-left .section-title { margin-bottom: 1.5rem; }
.contato-desc {
  font-size: .9rem; line-height: 1.8; color: var(--taupe);
  margin-bottom: 2.5rem; max-width: 420px;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.contact-row {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: .82rem; color: var(--taupe);
  text-decoration: none; transition: color .3s;
}
.contact-row:hover { color: var(--rose); }
.contact-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--rose-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--rose);
  transition: background .3s, border-color .3s, color .3s;
}
.contact-icon svg {
  width: 18px; height: 18px;
  display: block;
}
.contact-row:hover .contact-icon { background: var(--rose); border-color: var(--rose); color: #fff; }

/* Form */
.form-card { background: var(--off-white); padding: 3rem; }
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400; color: var(--brown); margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gray); margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .85rem 1rem;
  background: var(--cream); border: 1px solid var(--gray-lt);
  color: var(--text); font-family: 'Jost', sans-serif;
  font-size: .85rem; transition: border-color .3s;
  appearance: none; outline: none; cursor: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--brown); color: var(--cream);
  border: none; font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 400; transition: background .3s; cursor: none;
}
.btn-submit:hover { background: var(--rose); }

/* ══════════════════════════
   WHATSAPP FLOAT
══════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none; animation: pulse-wa 2.5s infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-float svg { width: 28px; fill: #fff; }

/* ══════════════════════════
   FOOTER
══════════════════════════ */
footer {
  background: var(--text); padding: 4rem;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem;
  align-items: center;
}
.footer-logo {
  display: flex; align-items: center; justify-content: flex-start;
  text-decoration: none;
}
.footer-logo-img {
  height: 100px; width: auto; display: block;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--rose-lt); font-size: 1.25rem;
  line-height: 1.5; text-align: center;
}
.footer-social { display: flex; gap: 1.2rem; justify-content: flex-end; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--gray); font-size: .75rem;
  transition: border-color .3s, color .3s;
}
.social-link:hover { border-color: var(--rose); color: var(--rose); }
.footer-copy {
  grid-column: 1/-1; text-align: center;
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 2rem; margin-top: 1rem;
}
.footer-credit-link {
  color: rgba(255,255,255,.3); text-decoration: none;
  transition: color .3s, font-weight .3s;
  letter-spacing: .15em;
}
.footer-credit-link:hover {
  color: var(--rose-lt);
  font-weight: 500;
}

/* ══════════════════════════
   SCROLL REVEAL
══════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.23,1,.32,1),
              transform .8s cubic-bezier(.23,1,.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ══════════════════════════
   ANIMATIONS
══════════════════════════ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
/* zoomOut removido — Ken Burns via .hero-slide img transition */
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.65); }
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2.5rem; }
  nav.scrolled { padding: .8rem 2.5rem; }
  #servicos, #portfolio, #depoimentos, #contato { padding: 5rem 2.5rem; }
}

@media (max-width: 900px) {

  :root { --nav-h: 64px; }

  /* Remove cursor personalizado no mobile */
  * { cursor: auto !important; }
  .cursor, .cursor-ring { display: none !important; }

  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: .8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-logo-img { height: 44px; }
  nav.scrolled .nav-logo-img { height: 38px; }

  /* WhatsApp oculto por padrão no mobile — JS adiciona .wa-visible entre #sobre e footer */
  .wa-float { opacity: 0; pointer-events: none; transition: opacity .4s; }
  .wa-float.wa-visible { opacity: 1; pointer-events: auto; }

  #hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-left {
    justify-content: flex-end;
    padding: 1.8rem 1.5rem 2.2rem;
    position: relative; z-index: 2;
  }
  /* Faixa de leitura fixa — independe de qual das 4 fotos está no ar */
  .hero-left::before {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 0; top: -3rem;
    background: linear-gradient(to top, rgba(20,14,10,.92) 0%, rgba(20,14,10,.8) 40%, rgba(20,14,10,.35) 75%, transparent 100%);
    z-index: -1; pointer-events: none;
  }
  .hero-tag { color: var(--rose-lt); }
  .hero-title, .hero-title em { color: var(--cream); }
  .hero-title em { color: var(--rose-lt); }
  .hero-quote { color: rgba(250,246,241,.72); }
  .hero-left .btn-ghost { color: var(--cream); }
  .hero-left .btn-ghost:hover { color: var(--rose-lt); }
  .btn-primary:hover { background: var(--rose-dk); }
  .stat-num { color: var(--cream); }
  .stat-label { color: rgba(250,246,241,.6); }
  .hero-right { position: absolute; inset: 0; z-index: -1; }
  .hero-img-wrap::after { background: none; }
  .hero-thumbs { display: none; }
  .hero-counter { display: none; }
  .hero-stats { gap: 2rem; margin-top: 1.5rem; }

  /* Logo em selo translúcido sobre a foto rotativa */
  .nav-logo {
    background: rgba(20,14,10,.4); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
    border-radius: 999px; padding: .55rem 1.2rem;
  }
  nav.scrolled .nav-logo { background: transparent; backdrop-filter: none; border-color: transparent; box-shadow: none; padding: 0; }

  #sobre {
    grid-template-columns: 1fr;
    height: auto; max-height: none; overflow: visible;
  }
  .sobre-img-col { min-height: 380px; }
  .sobre-content { padding: 3rem 1.5rem; overflow-y: visible; }
  .sobre-highlight { grid-template-columns: repeat(3,1fr); }

  #servicos, #portfolio, #depoimentos, #contato { padding: 5rem 1.5rem; }
  #servicos { height: auto; overflow: visible; }
  .services-grid { grid-template-rows: none; }
  .service-card { justify-content: flex-start; }
  .services-head { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .port-item:first-child { grid-column: span 2; grid-row: span 1; }
  .insta-strip { grid-template-columns: repeat(2,1fr); }

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

  #contato { grid-template-columns: 1fr; gap: 3rem; }
  .form-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  footer { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; padding: 3rem 1.5rem; }
  .footer-logo { justify-content: center; }
  .footer-social { justify-content: center; }
}