@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap");

:root {
  --rose-700: #9f3456;
  --rose-600: #c74e73;
  --rose-500: #db6e8f;
  --rose-200: #f2bfcd;
  --rose-100: #fbe5e9;
  --rose-50: #fff5f6;
  --mint-600: #4f9089;
  --mint-200: #b9ded8;
  --mint-100: #def0eb;
  --cream: #fdf9f3;
  --paper: #fffdf9;
  --ink: #3f2930;
  --muted: #78656b;
  --line: #eadfdc;
  --white: #fff;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow: 0 20px 60px rgb(105 55 70 / 12%);
  --shadow-soft: 0 10px 34px rgb(105 55 70 / 8%);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

figure {
  margin: 0;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--rose-500), var(--rose-700), var(--mint-600));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

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

.announcement {
  padding: 8px 20px;
  color: var(--rose-700);
  background: var(--rose-100);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.announcement span {
  margin: 0 12px;
  color: var(--mint-600);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(234 223 220 / 65%);
  background: rgb(255 253 249 / 92%);
  backdrop-filter: blur(14px);
  transition:
    box-shadow 260ms ease,
    background 260ms ease;
}

.site-header.is-compact {
  background: rgb(255 253 249 / 97%);
  box-shadow: 0 8px 28px rgb(105 55 70 / 8%);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: min-height 260ms ease;
}

.site-header.is-compact .header-inner {
  min-height: 68px;
}

.site-header.is-compact .brand-mark {
  width: 44px;
  height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  flex: none;
  padding: 2px;
  place-items: center;
  border: 1px solid var(--rose-200);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 14px rgb(159 52 86 / 10%);
  transition:
    width 260ms ease,
    height 260ms ease,
    transform 300ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.05);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--rose-700);
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--rose-500);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: var(--ink);
  transition: 180ms ease;
}

.button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  min-height: 54px;
  isolation: isolate;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  border: 1px solid var(--rose-600);
  border-radius: 999px;
  color: var(--white);
  background: var(--rose-600);
  box-shadow: 0 10px 28px rgb(199 78 115 / 24%);
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--rose-700);
  box-shadow: 0 13px 32px rgb(159 52 86 / 28%);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

/* Brilho que atravessa o botão no hover, reforçando o convite ao clique. */
.button:not(.button-outline)::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgb(255 255 255 / 32%) 50%, transparent 62%);
  content: "";
  translate: -130% 0;
  transition: translate 750ms ease;
}

.button:not(.button-outline):hover::after,
.button:not(.button-outline):focus-visible::after {
  translate: 130% 0;
}

.button-small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 0.83rem;
}

.button-outline {
  color: var(--rose-700);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
}

.button-light {
  border-color: var(--white);
  color: var(--rose-700);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--rose-700);
  background: var(--rose-100);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--rose-700);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--mint-600);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  max-width: 660px;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
}

h1 em {
  display: block;
  color: var(--rose-600);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  background:
    radial-gradient(circle at 8% 14%, rgb(242 191 205 / 28%) 0 100px, transparent 101px),
    radial-gradient(circle at 94% 82%, rgb(185 222 216 / 42%) 0 170px, transparent 171px),
    var(--cream);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: clamp(50px, 7vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.benefits {
  display: flex;
  gap: 26px;
  padding: 0;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  list-style: none;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefits li > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-700);
  background: var(--rose-100);
}

.hero-visual {
  position: relative;
  width: min(100%, 470px);
  padding-bottom: 58px;
  justify-self: end;
}

.hero-main,
.hero-secondary {
  overflow: hidden;
  border-radius: 34px;
  background: var(--white);
}

.hero-main {
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid var(--rose-200);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-main img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
}

.hero-secondary {
  position: absolute;
  bottom: 0;
  left: -34px;
  width: 168px;
  border: 6px solid var(--cream);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  transform: translate3d(0, var(--parallax, 0px), 0) rotate(-3deg);
}

.hero-secondary img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  object-fit: cover;
}

.hero-seal {
  position: absolute;
  right: -30px;
  bottom: 6px;
  display: grid;
  width: 138px;
  height: 138px;
  place-content: center;
  border: 1px dashed var(--rose-200);
  border-radius: 50%;
  color: var(--rose-700);
  background: rgb(255 253 249 / 95%);
  box-shadow: 0 12px 35px rgb(105 55 70 / 12%);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  animation: float-seal 6.5s ease-in-out infinite;
  transform: translate3d(0, var(--parallax, 0px), 0) rotate(-7deg);
}

@keyframes float-seal {
  0%,
  100% {
    translate: 0 0;
  }

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

.hero-seal strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.doodle {
  position: absolute;
  color: var(--rose-500);
  font-family: var(--font-display);
}

.doodle-heart {
  top: 12%;
  left: -44px;
  font-size: 3.2rem;
  transform: translate3d(0, var(--parallax, 0px), 0) rotate(-18deg);
}

.doodle-spark {
  top: -14px;
  right: 4px;
  color: var(--mint-600);
  font-size: 2rem;
  animation: twinkle 3.6s ease-in-out infinite;
  transform: translate3d(0, var(--parallax, 0px), 0);
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.5;
    scale: 0.85;
  }

  50% {
    opacity: 1;
    scale: 1.1;
  }
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.proof-grid {
  display: grid;
  padding: 26px 0;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  padding: 2px 28px;
  border-right: 1px solid var(--line);
}

.proof-grid div:first-child {
  padding-left: 0;
}

.proof-grid div:last-child {
  border: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 0.9rem;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.77rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 410px;
  margin-bottom: 4px;
  color: var(--muted);
}

.section-heading.centered {
  display: block;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered h2 {
  margin-bottom: 20px;
  margin-inline: auto;
}

.section-heading.centered p:last-child {
  max-width: 580px;
  margin-inline: auto;
  color: var(--muted);
}

.creations {
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

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

.product-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--rose-50);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 26px 28px;
}

.product-category {
  margin-bottom: 10px;
  color: var(--mint-600);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.product-content p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--rose-700);
  font-size: 0.86rem;
  font-weight: 700;
}

.product-arrow {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-100);
  transition: transform 180ms ease;
}

.product-link:hover .product-arrow,
.product-link:focus-visible .product-arrow {
  transform: translateX(4px);
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--rose-50);
}

.process::before,
.process::after {
  position: absolute;
  border: 1px solid var(--rose-200);
  border-radius: 50%;
  content: "";
}

.process::before {
  top: -110px;
  left: -110px;
  width: 260px;
  height: 260px;
}

.process::after {
  right: -50px;
  bottom: -50px;
  width: 140px;
  height: 140px;
}

.steps {
  position: relative;
  display: grid;
  padding: 0;
  margin: 58px 0 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.steps::before {
  position: absolute;
  z-index: 0;
  top: 50px;
  right: 12%;
  left: 12%;
  border-top: 1px dashed var(--rose-200);
  content: "";
}

.steps li {
  position: relative;
  z-index: 1;
  padding: 0 28px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 2px;
  left: calc(50% + 24px);
  color: var(--rose-500);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
}

.step-icon {
  display: grid;
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  place-items: center;
  border: 8px solid var(--rose-50);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 7px 24px rgb(105 55 70 / 10%);
  font-size: 1.8rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.ticker {
  overflow: hidden;
  padding: 16px 0;
  border-block: 1px dashed var(--rose-200);
  background: var(--rose-50);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  animation: ticker-slide 42s linear infinite;
  color: var(--rose-600);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  white-space: nowrap;
}

@keyframes ticker-slide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.gallery {
  position: relative;
  background: var(--mint-100);
}

/* Borda inferior recortada, inspirada nos selos de renda usados nas artes da marca. */
.gallery::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 22px;
  background-image: radial-gradient(circle at 50% 100%, var(--paper) 12px, transparent 13px);
  background-repeat: repeat-x;
  background-size: 28px 22px;
  content: "";
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow 260ms ease,
    transform 260ms ease;
}

.gallery-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.gallery-heart {
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.9rem;
  opacity: 0;
  text-shadow: 0 2px 12px rgb(63 41 48 / 45%);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  transform: translateY(8px);
}

.gallery-item:hover .gallery-heart {
  opacity: 1;
  transform: none;
}

.gallery-item:nth-child(even) {
  transform: translateY(26px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.instagram {
  overflow: hidden;
  background: var(--paper);
}

.instagram-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 44px;
}

.instagram-avatar {
  display: grid;
  width: 84px;
  height: 84px;
  flex: none;
  padding: 4px;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--rose-500), #e8a33d, var(--mint-600)) border-box;
  border: 3px solid transparent;
}

.instagram-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.instagram-head > div {
  flex: 1;
}

.instagram-head h2 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.instagram-handle {
  color: var(--rose-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.instagram-handle:hover,
.instagram-handle:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.instagram-description {
  max-width: 520px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.instagram-strip {
  overflow-x: auto;
  padding: 6px 0 14px;
  margin-inline: calc(50% - 50vw);
  padding-inline: max(20px, calc(50vw - 580px));
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.instagram-strip::-webkit-scrollbar {
  display: none;
}

.instagram-track {
  display: flex;
  width: max-content;
  gap: 18px;
}

.instagram-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 232px;
  flex: none;
  border-radius: 22px;
  background: var(--rose-50);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: center;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.instagram-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 500ms ease;
}

.instagram-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgb(63 41 48 / 42%));
  content: "";
  opacity: 0;
  transition: opacity 260ms ease;
}

.instagram-icon {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  transform: translateY(6px);
}

.instagram-card:hover,
.instagram-card:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.instagram-card:hover img,
.instagram-card:focus-visible img {
  transform: scale(1.06);
}

.instagram-card:hover::after,
.instagram-card:focus-visible::after,
.instagram-card:hover .instagram-icon,
.instagram-card:focus-visible .instagram-icon {
  opacity: 1;
}

.instagram-card:hover .instagram-icon,
.instagram-card:focus-visible .instagram-icon {
  transform: none;
}

.instagram-hint {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (hover: hover) {
  .instagram-track.is-animated {
    animation: ticker-slide 62s linear infinite;
  }

  .instagram-strip:hover .instagram-track.is-animated,
  .instagram-strip:focus-within .instagram-track.is-animated {
    animation-play-state: paused;
  }

  .instagram-hint {
    display: none;
  }
}

.testimonials {
  background:
    radial-gradient(circle at 88% 12%, rgb(242 191 205 / 26%) 0 130px, transparent 131px),
    var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.testimonial-card::before {
  position: absolute;
  top: 14px;
  right: 26px;
  color: var(--rose-100);
  content: "”";
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
}

.testimonial-stars {
  margin-bottom: 16px;
  color: #e8a33d;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.testimonial-card blockquote {
  flex: 1;
  padding: 0;
  margin: 0 0 26px;
  border: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--rose-500);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.8rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 46px;
}

.testimonial-footer p {
  margin: 0;
  color: var(--muted);
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(60px, 8vw, 110px);
}

.about-images {
  position: relative;
  padding: 0 0 40px 40px;
}

.about-main {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44%;
  aspect-ratio: 1;
  border: 8px solid var(--cream);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  transform: translate3d(0, var(--parallax, 0px), 0);
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
}

blockquote {
  position: relative;
  padding: 20px 0 20px 28px;
  margin: 34px 0;
  border-left: 2px solid var(--rose-500);
  color: var(--rose-700);
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-style: italic;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1.1fr;
  gap: clamp(60px, 9vw, 120px);
}

.faq-grid > div:first-child > p:not(.eyebrow) {
  max-width: 400px;
  margin-bottom: 28px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  color: var(--rose-600);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 650px;
  padding: 0 45px 24px 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta {
  position: relative;
  padding: 96px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgb(255 255 255 / 10%) 0 80px, transparent 81px),
    radial-gradient(circle at 90% 75%, rgb(185 222 216 / 18%) 0 140px, transparent 141px),
    var(--rose-600);
}

.cta::before {
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  height: 22px;
  background-image: radial-gradient(circle at 50% 100%, var(--rose-600) 12px, transparent 13px);
  background-repeat: repeat-x;
  background-size: 28px 22px;
  content: "";
}

.cta-inner {
  position: relative;
  max-width: 800px;
  text-align: center;
}

.cta .eyebrow {
  color: var(--rose-100);
}

.cta h2 {
  margin-bottom: 18px;
}

.cta p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 auto 32px;
  color: rgb(255 255 255 / 80%);
}

.cta-doodle {
  position: absolute;
  top: -40px;
  right: 4%;
  color: rgb(255 255 255 / 55%);
  font-family: var(--font-display);
  font-size: 5rem;
  transform: translate3d(0, var(--parallax, 0px), 0) rotate(15deg);
}

.site-footer {
  padding: 70px 0 24px;
  color: #dfcfd2;
  background: #402a31;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 60px;
}

.footer-mark {
  display: grid;
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  padding: 4px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 22px rgb(0 0 0 / 18%);
}

.footer-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand p {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.4;
}

.site-footer h2 {
  margin: 6px 0 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  font-size: 0.86rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-note {
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 54px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 22px;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 20%);
  background: #128c4a;
  box-shadow:
    0 10px 32px rgb(18 92 51 / 32%),
    inset 0 1px 0 rgb(255 255 255 / 18%);
  font-size: 0.8rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #0d7b40;
  box-shadow:
    0 14px 36px rgb(18 92 51 / 38%),
    inset 0 1px 0 rgb(255 255 255 / 18%);
  transform: translateY(-3px);
}

.whatsapp-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: #128c4a;
  background: var(--white);
  box-shadow: 0 2px 8px rgb(11 74 39 / 18%);
}

.whatsapp-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

:focus-visible {
  outline: 3px solid var(--mint-600);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 112px;
    right: 20px;
    left: 20px;
    display: grid;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    font-size: 0.95rem;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav .button {
    width: 100%;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 45px;
  }

  .hero-visual {
    width: min(100%, 400px);
  }

  .hero-seal {
    right: -16px;
    width: 118px;
    height: 118px;
    font-size: 0.6rem;
  }

  .hero-seal strong {
    font-size: 1.4rem;
  }

  .benefits {
    flex-wrap: wrap;
  }

  .product-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-head {
    flex-wrap: wrap;
    gap: 18px;
  }

  .instagram-head > div {
    flex-basis: calc(100% - 102px);
  }

  .steps {
    gap: 42px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item:nth-child(even) {
    transform: none;
  }

  .about-grid,
  .faq-grid {
    gap: 60px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 600px);
  }

  .section {
    padding: 76px 0;
  }

  .announcement {
    padding-inline: 8px;
    font-size: 0.62rem;
  }

  .announcement span {
    margin: 0 4px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-text strong {
    font-size: 1.06rem;
  }

  .brand-text small {
    font-size: 0.56rem;
  }

  .main-nav {
    top: 100px;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 9.5vw, 3.1rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .benefits {
    justify-content: center;
    gap: 14px 20px;
  }

  .hero-visual {
    width: min(90%, 380px);
    align-self: center;
    padding-bottom: 40px;
  }

  .hero-secondary {
    left: -18px;
    width: 128px;
  }

  .hero-seal {
    right: -8px;
    width: 106px;
    height: 106px;
  }

  .doodle-heart {
    left: -14px;
    font-size: 2.6rem;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .proof-grid div,
  .proof-grid div:first-child {
    padding: 0 15px;
  }

  .proof-grid div:nth-child(2) {
    border-right: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 22px;
  }

  .product-grid,
  .testimonial-grid,
  .steps,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 38px;
  }

  .steps li {
    max-width: 360px;
    margin-inline: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-item {
    border-width: 4px;
    border-radius: 16px;
  }

  .ticker {
    padding: 12px 0;
  }

  .ticker-track {
    gap: 20px;
    font-size: 1.15rem;
  }

  .instagram-avatar {
    width: 66px;
    height: 66px;
  }

  .instagram-head > div {
    flex-basis: calc(100% - 88px);
  }

  .instagram-card {
    width: 205px;
    border-radius: 18px;
  }

  .testimonials {
    background:
      radial-gradient(circle at 100% 6%, rgb(242 191 205 / 20%) 0 90px, transparent 91px),
      var(--paper);
  }

  .testimonial-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .about-images {
    max-width: 420px;
    padding: 0 0 34px 26px;
    margin-inline: auto;
  }

  .about-copy {
    padding-top: 8px;
  }

  .cta {
    padding: 76px 0;
  }

  .footer-grid {
    gap: 42px 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 420px) {
  .benefits {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .whatsapp-float > span:last-child {
    display: none;
  }

  .whatsapp-float {
    padding-right: 10px;
  }
}

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