:root {
  --cream: #e7c6c3;
  --porcelain: #f2dbd8;
  --ink: #251b18;
  --muted: #6f5752;
  --rose: #c77d85;
  --clay: #a85f49;
  --sage: #7e8a78;
  --line: rgba(37, 27, 24, 0.14);
  --shadow: 0 24px 80px rgba(76, 43, 34, 0.22);
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, Karla, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(141, 75, 80, 0.26), transparent 25rem),
    radial-gradient(circle at 88% 34%, rgba(126, 138, 120, 0.18), transparent 24rem),
    linear-gradient(135deg, #e5c4c1 0%, #efd6d2 42%, #d6b0aa 100%);
  font-family: var(--body);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ambient span {
  position: absolute;
  width: clamp(180px, 26vw, 420px);
  aspect-ratio: 0.58;
  border-radius: 50% 50% 10% 10% / 36% 36% 8% 8%;
  opacity: 0.18;
  filter: blur(2px);
  animation: floatNail 14s ease-in-out infinite alternate;
}

.ambient span:nth-child(1) {
  top: 13%;
  left: -5%;
  background: linear-gradient(180deg, #f8e2df, #c77d85);
}

.ambient span:nth-child(2) {
  top: 42%;
  right: -7%;
  background: linear-gradient(180deg, #ead1cf, #7e8a78);
  animation-delay: -5s;
}

.ambient span:nth-child(3) {
  bottom: 4%;
  left: 28%;
  background: linear-gradient(180deg, #f2dbd8, #a85f49);
  animation-delay: -9s;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  opacity: 0;
  background: radial-gradient(circle, rgba(199, 125, 133, 0.26), transparent 68%);
  pointer-events: none;
  transform: translate3d(calc(var(--cursor-x, 50vw) - 180px), calc(var(--cursor-y, 50vh) - 180px), 0);
  transition: opacity 240ms ease;
}

.has-pointer .cursor-glow {
  opacity: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: calc(var(--progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--clay), var(--ink));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 244, 241, 0.58);
  border-radius: 999px;
  background: rgba(242, 219, 216, 0.78);
  box-shadow: 0 16px 60px rgba(54, 36, 28, 0.12);
  backdrop-filter: blur(18px);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(242, 219, 216, 0.9);
  box-shadow: 0 18px 70px rgba(54, 36, 28, 0.14);
  transform: translateY(4px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-width: max-content;
  font-family: var(--display);
  font-size: 1.26rem;
}

.brand span {
  color: var(--clay);
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.91rem;
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
}

.button {
  padding: 0 24px;
  border: 1px solid var(--line);
}

.button.primary {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(37, 27, 24, 0.22);
}

.button.ghost {
  background: rgba(255, 241, 238, 0.5);
}

.button::after,
.header-cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: skewX(-18deg);
  transition: left 650ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(37, 27, 24, 0.18);
}

.button:hover::after,
.header-cta:hover::after {
  left: 124%;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(38px, 7vw, 88px) 0 42px;
  transform: translate3d(0, calc(var(--scroll, 0) * -0.018px), 0);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 9vw, 7.8rem);
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5.4vw, 5.35rem);
}

.hero-text {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: min(660px, 78vh);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-image {
  aspect-ratio: 0.76;
  border-radius: 46% 46% 9% 9% / 32% 32% 7% 7%;
  box-shadow: var(--shadow);
  transform: translateZ(22px);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 700ms ease;
}

.hero-visual:hover .hero-image {
  filter: saturate(1.07) contrast(1.02);
}

.shine-line {
  position: absolute;
  inset: 10% 14% auto auto;
  width: 18%;
  height: 62%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  filter: blur(8px);
  opacity: 0.46;
  transform: rotate(16deg) translateZ(34px);
  animation: glossSweep 4.8s ease-in-out infinite;
}

.portrait-card {
  position: absolute;
  right: -18px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 285px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 244, 241, 0.66);
  border-radius: 999px;
  background: rgba(246, 226, 223, 0.86);
  box-shadow: 0 18px 46px rgba(54, 36, 28, 0.14);
  backdrop-filter: blur(16px);
  transform: translateZ(48px);
}

.portrait-card img {
  width: 62px;
  height: 62px;
  border-radius: 999px;
}

.portrait-card span,
.portrait-card strong {
  display: block;
}

.portrait-card span {
  font-family: var(--display);
  font-size: 1.18rem;
}

.portrait-card strong {
  color: var(--muted);
  font-size: 0.8rem;
}

.floating-note {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 128px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 244, 241, 0.64);
  border-radius: 8px;
  background: rgba(246, 226, 223, 0.78);
  box-shadow: 0 18px 50px rgba(54, 36, 28, 0.13);
  backdrop-filter: blur(16px);
  transform: translateZ(62px);
  animation: floatCard 4.8s ease-in-out infinite;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-note strong {
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 500;
}

.note-top {
  top: 12%;
  left: -28px;
}

.note-bottom {
  right: -32px;
  bottom: 24%;
  animation-delay: -2s;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(246, 226, 223, 0.62);
  transition: background 260ms ease, transform 260ms ease;
}

.trust-strip div:hover {
  background: rgba(255, 241, 238, 0.78);
  transform: translateY(-3px);
}

.trust-strip span {
  color: var(--rose);
  font-family: var(--display);
  font-size: 1.5rem;
}

.trust-strip strong {
  display: block;
  margin: 8px 0;
  font-size: 1.03rem;
}

.trust-strip p,
.atelier-copy p,
.instagram-panel p,
.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(28px, 6vw, 70px);
  padding: clamp(72px, 11vw, 134px) 0;
}

.atelier-copy {
  align-self: end;
  font-size: 1.08rem;
}

.compare-section {
  padding: 0 0 clamp(58px, 8vw, 96px);
}

.compare-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.compare-section .section-heading {
  display: block;
  width: auto;
  margin: 0;
}

.compare-section .compact-heading h2 {
  max-width: 520px;
  font-size: clamp(2.25rem, 4.8vw, 5rem);
}

.compare-section .compact-heading p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.comparison {
  position: relative;
  width: min(520px, 100%);
  min-height: auto;
  aspect-ratio: 1.06;
  margin: 0 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #d7aaa5;
  box-shadow: var(--shadow);
  isolation: isolate;
  touch-action: none;
}

.comparison img {
  position: absolute;
  inset: 0;
  object-fit: contain;
  background: linear-gradient(135deg, #d7aaa5, #efcfcb);
}

.comparison-before {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: var(--split);
  overflow: hidden;
}

.comparison-before img {
  width: calc(100% / var(--split-number, 0.5));
  max-width: none;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 4;
  width: 2px;
  background: rgba(255, 244, 241, 0.92);
  box-shadow: 0 0 0 1px rgba(37, 27, 24, 0.16);
}

.comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(37, 27, 24, 0.16);
  border-radius: 999px;
  background: rgba(246, 226, 223, 0.9);
  box-shadow: 0 16px 36px rgba(37, 27, 24, 0.18);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
}

.comparison-handle span::before,
.comparison-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.comparison-handle span::before {
  left: 17px;
  transform: translateY(-50%) rotate(-45deg);
}

.comparison-handle span::after {
  right: 17px;
  transform: translateY(-50%) rotate(135deg);
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 27, 24, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.compare-label.before {
  left: 18px;
}

.compare-label.after {
  right: 18px;
}

.centered {
  text-align: center;
}

.centered h2 {
  margin-inline: auto;
}

.services,
.transformations {
  padding: clamp(64px, 10vw, 118px) 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.service-card {
  min-height: 330px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 226, 223, 0.58);
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.service-card:hover {
  background: rgba(255, 241, 238, 0.78);
  box-shadow: 0 24px 70px rgba(54, 36, 28, 0.12);
}

.service-card.featured {
  color: #fff;
  border-color: #44312b;
  background: linear-gradient(150deg, #2d201d, #754438);
}

.service-card.featured p,
.service-card.featured small {
  color: rgba(255, 255, 255, 0.78);
}

.service-card span {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 28px 0 16px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.02;
}

.service-card small {
  display: block;
  margin-top: 26px;
  color: var(--clay);
  font-weight: 800;
}

.gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr 0.9fr;
  grid-auto-flow: dense;
  grid-auto-rows: 240px;
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #d7aaa5;
  box-shadow: 0 18px 48px rgba(54, 36, 28, 0.11);
  cursor: zoom-in;
  transform-style: preserve-3d;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(37, 27, 24, 0.42);
  outline-offset: 4px;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.focus {
  grid-column: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.portrait {
  grid-row: span 2;
}

.gallery-item.portrait img {
  object-fit: contain;
  background: linear-gradient(135deg, #d7aaa5, #efcfcb);
}

.gallery-item img {
  transform: scale(1.02);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 700ms ease;
}

.gallery-item:hover {
  box-shadow: 0 28px 80px rgba(54, 36, 28, 0.18);
}

.gallery-item:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.08);
}

.gallery-item::after {
  content: "Clique para ampliar";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 27, 24, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(10px);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 27, 24, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.instagram-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 72px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(246, 226, 223, 0.88), rgba(214, 176, 170, 0.78)),
    url("assets/WhatsApp Image 2026-07-23 at 23.53.14 (2).jpeg") center 58% / cover;
  background-blend-mode: screen;
}

.instagram-panel h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.5rem);
}

.instagram-panel p {
  max-width: 620px;
  margin-top: 18px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 36px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  opacity: 0;
  visibility: hidden;
  background: rgba(28, 19, 18, 0.48);
  backdrop-filter: blur(12px);
  transition: opacity 240ms ease, visibility 240ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  width: auto;
  max-width: min(74vw, 720px);
  height: auto;
  max-height: min(68vh, 620px);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(246, 226, 223, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  transform: scale(0.96);
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox p {
  position: fixed;
  left: 50%;
  bottom: max(24px, 8vh);
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 27, 24, 0.64);
  font-size: 0.86rem;
  font-weight: 800;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.lightbox-close {
  position: fixed;
  top: max(22px, 8vh);
  right: max(22px, 18vw);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 27, 24, 0.54);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 780ms ease, transform 780ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatNail {
  from {
    translate: 0 0;
    rotate: 8deg;
  }

  to {
    translate: 20px -28px;
    rotate: 16deg;
  }
}

@keyframes glossSweep {
  0%,
  32% {
    opacity: 0;
    translate: -38px 28px;
  }

  58% {
    opacity: 0.56;
  }

  100% {
    opacity: 0;
    translate: 52px -36px;
  }
}

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .ambient,
  .cursor-glow,
  .shine-line {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 8px;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .split,
  .compare-layout,
  .instagram-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-image {
    max-height: 650px;
  }

  .floating-note {
    display: none;
  }

  .trust-strip,
  .service-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.focus,
  .gallery-item.wide,
  .gallery-item.portrait {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 0.82;
  }

  .comparison {
    width: min(520px, 100%);
    aspect-ratio: 1.18;
    margin: 0 auto;
  }

  .lightbox img {
    max-width: min(84vw, 620px);
    max-height: 64vh;
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
  }

  .instagram-panel {
    background-position: 38% center;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .header-cta {
    padding-inline: 14px;
  }

  .section,
  .trust-strip,
  .site-footer {
    width: calc(100% - 24px);
  }

  .hero {
    padding-top: 44px;
  }

  .hero-actions,
  .button,
  .instagram-panel .button {
    width: 100%;
  }

  .portrait-card {
    right: 10px;
    bottom: 14px;
    max-width: calc(100% - 20px);
  }

  .comparison {
    width: min(330px, 100%);
    aspect-ratio: 1;
  }

  .lightbox img {
    max-width: 86vw;
    max-height: 58vh;
  }

  .lightbox p {
    bottom: 24px;
    max-width: calc(100vw - 32px);
    text-align: center;
  }

  .service-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
