:root {
  --black: #050505;
  --black-2: #0c0c0c;
  --black-3: #171717;
  --white: #f7f5f0;
  --white-soft: rgba(247, 245, 240, .72);
  --red: #c1121f;
  --red-deep: #7f0d16;
  --red-soft: rgba(193, 18, 31, .18);
  --ink: #111111;
  --ink-soft: rgba(17, 17, 17, .68);
  --night: var(--black);
  --night-2: var(--black-2);
  --night-3: var(--black-3);
  --paper: var(--black);
  --paper-2: var(--black-2);
  --porcelain: var(--white);
  --sage: var(--white);
  --green: var(--red);
  --green-deep: var(--red-deep);
  --clay: var(--red);
  --rose: var(--red-soft);
  --olive: var(--black-3);
  --line: rgba(17, 17, 17, .14);
  --line-strong: rgba(17, 17, 17, .32);
  --line-light: rgba(247, 245, 240, .16);
  --line-light-strong: rgba(247, 245, 240, .36);
  --shadow: rgba(0, 0, 0, .28);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

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

html.is-enhanced .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}

html.is-enhanced .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.is-enhanced .reveal-on-scroll[data-reveal-delay="1"] {
  transition-delay: 90ms;
}

html.is-enhanced .reveal-on-scroll[data-reveal-delay="2"] {
  transition-delay: 180ms;
}

html.is-enhanced .reveal-on-scroll[data-reveal-delay="3"] {
  transition-delay: 270ms;
}

body {
  margin: 0;
  color: var(--porcelain);
  background: var(--night);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 18%, rgba(193, 18, 31, .11), transparent 25%),
    radial-gradient(circle at 84% 70%, rgba(247, 245, 240, .045), transparent 28%),
    linear-gradient(90deg, rgba(247,245,240,.035) 1px, transparent 1px),
    linear-gradient(rgba(247,245,240,.025) 1px, transparent 1px);
  background-size: auto, auto, 86px 86px, 86px 86px;
  opacity: 1;
  pointer-events: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
.package h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: .92;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 10vw, 9rem);
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 12px;
  font-size: clamp(2.55rem, 4vw, 4.1rem);
  line-height: .94;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.8vw, 5.7rem);
}

h3 {
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--porcelain);
  background: var(--ink);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 250, 241, .24);
  color: var(--porcelain);
  background: linear-gradient(180deg, rgba(5, 5, 5, .88), rgba(5, 5, 5, .42));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand__mark {
  width: 34px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.main-nav {
  display: none;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.main-nav a,
.site-footer a {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  opacity: .62;
}

.header-button {
  display: none;
  align-items: center;
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease;
}

.header-button:hover {
  color: var(--ink);
  background: var(--porcelain);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 560px;
  height: 62svh;
  max-height: 620px;
  padding: 88px clamp(18px, 5vw, 76px) 14px;
  overflow: hidden;
  isolation: isolate;
  color: var(--porcelain);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("https://images.pexels.com/photos/169198/pexels-photo-169198.jpeg?auto=compress&cs=tinysrgb&w=2200") center / cover;
  transform: scale(1.02);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,.16), rgba(5,5,5,.24) 46%, rgba(5,5,5,.78)),
    linear-gradient(90deg, rgba(5,5,5,.76), rgba(193,18,31,.16) 54%, rgba(5,5,5,.38));
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  width: min(700px, 100%);
  padding-bottom: 14px;
}

.eyebrow,
.section__label,
.package__meta {
  color: var(--clay);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 250, 242, .82);
}

.eyebrow {
  margin-bottom: 12px;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 250, 242, .84);
  font-size: clamp(.92rem, 1.08vw, 1rem);
  line-height: 1.42;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--porcelain);
  background: var(--green);
  border-color: var(--green);
}

.hero .button--primary {
  color: var(--ink);
  background: var(--porcelain);
  border-color: var(--porcelain);
}

.button--primary:hover,
.hero .button--secondary:hover {
  color: var(--porcelain);
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.hero .button--primary:hover {
  color: var(--porcelain);
  background: transparent;
  border-color: var(--porcelain);
}

.button--secondary:hover {
  color: var(--porcelain);
  background: var(--green);
  border-color: var(--green);
}

.hero__proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  width: min(760px, 100%);
  border: 1px solid rgba(255, 250, 242, .28);
  background: rgba(255, 250, 242, .28);
}

.hero__proof span {
  padding: 10px 12px;
  background: rgba(5, 5, 5, .48);
  color: rgba(255, 250, 242, .82);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section {
  scroll-margin-top: 82px;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 88% 16%, rgba(193, 18, 31, .12), transparent 26%),
    linear-gradient(135deg, var(--night) 0%, var(--night-2) 100%);
  color: var(--porcelain);
}

.section--dark {
  color: var(--porcelain);
  background:
    radial-gradient(circle at 10% 18%, rgba(247, 245, 240, .12), transparent 24%),
    radial-gradient(circle at 86% 72%, rgba(5, 5, 5, .16), transparent 28%),
    linear-gradient(135deg, #b20f1b 0%, #7f0d16 100%);
}

.section--intro {
  background:
    radial-gradient(circle at 88% 18%, rgba(193, 18, 31, .08), transparent 24%),
    var(--white);
  color: var(--ink);
}

.section--intro .section__label,
#servicos .eyebrow,
.deliverables .eyebrow,
#pacotes .eyebrow,
.objections .eyebrow,
.contact .eyebrow {
  color: var(--red);
}

.section--intro .section__grid > p,
#servicos .section__header > p,
.deliverables p,
#pacotes .section__header > p,
.package p,
.package li,
.objections p,
.contact__intro > p {
  color: var(--ink-soft);
}

.section__grid,
.section__header,
.budget,
.contact,
.story,
.gallery-feature,
.deliverables {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.section__header {
  margin-bottom: clamp(26px, 4vw, 44px);
}

#servicos .section__header {
  margin-bottom: clamp(22px, 3vw, 32px);
}

#servicos h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
}

#servicos,
#pacotes,
.objections,
.contact {
  background:
    radial-gradient(circle at 86% 12%, rgba(193, 18, 31, .07), transparent 22%),
    var(--white);
  color: var(--ink);
}

.carousel-shell {
  position: relative;
}

.carousel-topline {
  margin: -10px 0 14px;
}

.scroll-hint {
  margin: 0;
  color: var(--sage);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.carousel-controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.carousel-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, .18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 5, 5, .82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .22);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease;
}

.carousel-button:hover {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.carousel-button:disabled {
  cursor: default;
  opacity: .45;
  transform: none;
}

.carousel-button--prev {
  margin-left: clamp(10px, 2vw, 22px);
}

.carousel-button--next {
  margin-right: clamp(10px, 2vw, 22px);
}

.section__header > p,
.section__grid > p,
.budget__copy,
.confidence > p,
.contact__intro > p,
.story__copy p,
.gallery-feature p,
.deliverables p,
.objections p {
  max-width: 720px;
  color: rgba(255, 250, 241, .72);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.party .section__header > p {
  color: rgba(255, 250, 241, .74);
}

.section--dark .section__header > p,
.section--dark .step p {
  color: rgba(255, 250, 242, .68);
}

.story {
  position: relative;
  align-items: center;
  overflow: hidden;
  color: var(--porcelain);
  background:
    radial-gradient(circle at 18% 20%, rgba(193, 18, 31, .14), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(247, 245, 240, .06), transparent 28%),
    linear-gradient(135deg, #050505 0%, #171717 54%, #0c0c0c 100%);
}

.story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='760' height='520' viewBox='0 0 760 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23f7f5f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='.16'%3E%3Cpath d='M104 156c34-44 86-44 120 0 34-44 86-44 120 0'/%3E%3Cpath d='M224 156v168'/%3E%3Cpath d='M156 324h136'/%3E%3Cpath d='M168 324c12 42 100 42 112 0'/%3E%3Ccircle cx='548' cy='154' r='35'/%3E%3Ccircle cx='596' cy='154' r='35'/%3E%3Cpath d='M540 210c24 22 68 22 92 0'/%3E%3Cpath d='M534 108c-22-28-50-33-72-18 32 2 48 26 52 50'/%3E%3Cpath d='M630 108c22-28 50-33 72-18-32 2-48 26-52 50'/%3E%3Cpath d='M112 420c40-54 86-54 126 0 40-54 86-54 126 0'/%3E%3Cpath d='M186 392c-8-36 24-56 42-24 18-32 50-12 42 24'/%3E%3Cpath d='M500 392c0-54 78-54 78 0'/%3E%3Cpath d='M500 392h78l-14 58h-50z'/%3E%3Cpath d='M492 392h94'/%3E%3Cpath d='M626 340c18-30 54-30 72 0-18 30-54 30-72 0z'/%3E%3Cpath d='M662 312v56'/%3E%3Cpath d='M634 340h56'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 560px 384px;
  opacity: .45;
  pointer-events: none;
}

.story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 12, .6), rgba(13, 27, 20, .22) 48%, rgba(7, 16, 12, .78)),
    linear-gradient(180deg, rgba(7, 16, 12, .08), rgba(7, 16, 12, .7));
  pointer-events: none;
}

.story > * {
  position: relative;
  z-index: 1;
}

.story__image,
.gallery-feature__image {
  min-height: 320px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 34px 90px var(--shadow);
}

.story__image {
  background-image: url("https://images.pexels.com/photos/2959192/pexels-photo-2959192.jpeg?auto=compress&cs=tinysrgb&w=1400");
  border: 1px solid var(--line-light);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
}

.story__copy {
  display: grid;
  gap: 14px;
}

.story h2,
.gallery-feature h2,
.section--dark h2,
.deliverables h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.story h2,
.story .eyebrow {
  color: var(--porcelain);
}

.story__copy p,
.story .check-list li {
  color: rgba(255, 250, 241, .74);
}

.story .check-list li::before {
  border-color: var(--green);
}

.story .button--primary {
  color: var(--green-deep);
  background: var(--porcelain);
  border-color: var(--porcelain);
}

.story .button--primary:hover {
  color: var(--porcelain);
  background: transparent;
  border-color: var(--porcelain);
}

.story__copy p:last-child,
.gallery-feature p:last-child {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 250, 241, .74);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.card-grid,
.steps,
.packages,
.visual-grid {
  display: grid;
  gap: 14px;
}

.card-grid {
  display: flex;
  gap: 16px;
  margin-inline: calc(clamp(18px, 5vw, 76px) * -1);
  padding: 4px clamp(18px, 5vw, 76px) 6px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.card-grid::-webkit-scrollbar {
  display: none;
}

.card,
.step,
.package {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 250, 241, .055);
  backdrop-filter: blur(10px);
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

#servicos .card,
#pacotes .package,
.objections article {
  border-color: rgba(17, 17, 17, .14);
  background: rgba(255, 255, 255, .62);
  color: var(--ink);
  backdrop-filter: none;
}

#servicos .card:hover,
#pacotes .package:hover,
.objections article:hover {
  border-color: rgba(17, 17, 17, .28);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .1);
}

#servicos .card p {
  color: var(--ink-soft);
}

.card:hover,
.step:hover,
.package:hover {
  border-color: var(--line-light-strong);
  background: rgba(255, 250, 241, .09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  transform: translateY(-3px);
}

.card {
  flex: 0 0 min(82vw, 340px);
  display: grid;
  min-height: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.step {
  min-height: 198px;
  padding: 22px;
}

.card__image {
  aspect-ratio: 1 / .76;
  min-height: 0;
  background-position: center;
  background-size: cover;
}

.card__body {
  display: grid;
  align-content: start;
  min-height: 178px;
  padding: 20px;
}

.section--dark .step {
  min-height: 172px;
  border-color: rgba(247, 245, 240, .42);
  background: rgba(247, 245, 240, .94);
  color: var(--ink);
}

.section--dark .step:hover {
  background: #fff;
}

.card span,
.step span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--sage);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section--dark .step span {
  color: var(--red);
}

.section--dark .step h3 {
  color: var(--ink);
}

.section--dark .step p {
  color: var(--ink-soft);
}

.card h3,
.step h3,
.package h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.12;
}

.card p,
.step p {
  font-size: .95rem;
  line-height: 1.5;
}

.card p,
.step p,
.package p,
.package li,
.budget__copy p {
  color: rgba(255, 250, 241, .7);
}

.card p,
.step p,
.package p {
  margin-bottom: 0;
}

.card--planning .card__image {
  background-image: url("https://images.pexels.com/photos/6476260/pexels-photo-6476260.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.card--venue .card__image {
  background-image: url("https://images.pexels.com/photos/169193/pexels-photo-169193.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.card--catering .card__image {
  background-image: url("https://images.pexels.com/photos/587741/pexels-photo-587741.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.card--decor .card__image {
  background-image: url("https://images.pexels.com/photos/2306281/pexels-photo-2306281.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.card--music .card__image {
  background-image: url("https://images.pexels.com/photos/3171837/pexels-photo-3171837.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.card--photo .card__image {
  background-image: url("https://images.pexels.com/photos/3014856/pexels-photo-3014856.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.card--transport .card__image {
  background-image: url("https://images.pexels.com/photos/2959194/pexels-photo-2959194.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.card--support .card__image {
  background-image: url("https://images.pexels.com/photos/3756776/pexels-photo-3756776.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.card--coordination .card__image {
  background-image: url("https://images.pexels.com/photos/3060839/pexels-photo-3060839.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.gallery-feature {
  align-items: end;
  background:
    radial-gradient(circle at 14% 18%, rgba(193, 18, 31, .14), transparent 25%),
    linear-gradient(135deg, var(--night) 0%, var(--night-2) 100%);
}

.party {
  position: relative;
  overflow: hidden;
  color: var(--porcelain);
  background:
    radial-gradient(circle at 16% 18%, rgba(193, 18, 31, .24), transparent 26%),
    radial-gradient(circle at 82% 70%, rgba(247, 245, 240, .08), transparent 26%),
    linear-gradient(135deg, #050505 0%, #1a1a1a 48%, #0c0c0c 100%);
}

.party::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 250, 241, .06) 1px, transparent 1px),
    linear-gradient(rgba(255, 250, 241, .045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), rgba(0,0,0,.16));
  pointer-events: none;
}

.party > * {
  position: relative;
  z-index: 1;
}

.party .eyebrow,
.party h2 {
  color: var(--porcelain);
}

.party .section__header {
  margin-bottom: clamp(20px, 3vw, 30px);
}

.party h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
}

.party-grid {
  display: grid;
  align-items: start;
  gap: 16px;
}

.party-card {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, .22);
  border-radius: 8px;
  background: rgba(255, 250, 241, .09);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.party-card--dj {
  background: linear-gradient(180deg, rgba(193, 18, 31, .22), rgba(247, 245, 240, .08));
}

.party-card--classic {
  background: linear-gradient(180deg, rgba(247, 245, 240, .13), rgba(193, 18, 31, .08));
}

.party-card--family {
  background: linear-gradient(180deg, rgba(193, 18, 31, .14), rgba(247, 245, 240, .08));
}

.party-card__media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.party-card--dj .party-card__media {
  background-image: url("https://images.pexels.com/photos/3171837/pexels-photo-3171837.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.party-card--classic .party-card__media {
  background-image: url("https://images.pexels.com/photos/169198/pexels-photo-169198.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.party-card--family .party-card__media {
  background-image: url("https://images.pexels.com/photos/1444442/pexels-photo-1444442.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.party-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, .2));
}

.party-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.party-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
}

.party-card__body p {
  margin: 0;
  color: var(--sage);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.party-card__body h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.1;
}

.party-card__body span {
  color: rgba(255, 250, 241, .78);
  font-size: .9rem;
  line-height: 1.42;
}

.deliverables {
  align-items: start;
  background:
    radial-gradient(circle at 78% 18%, rgba(193, 18, 31, .07), transparent 24%),
    var(--white);
  color: var(--ink);
}

.deliverables__grid,
.objections__grid {
  display: grid;
  gap: 12px;
}

.deliverables article,
.objections article {
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, .62);
}

.objections article {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px);
}

.deliverables span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sage);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.deliverables span {
  color: var(--red);
}

.deliverables h3,
.objections h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.15;
}

.deliverables p,
.objections p {
  margin-bottom: 0;
  font-size: .95rem;
  line-height: 1.48;
}

.gallery-feature__image {
  min-height: 300px;
  background-image:
    linear-gradient(180deg, rgba(23,21,18,.02), rgba(23,21,18,.08)),
    url("https://images.pexels.com/photos/313707/pexels-photo-313707.jpeg?auto=compress&cs=tinysrgb&w=1500");
}

.visual-grid {
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.visual-tile {
  min-height: 150px;
  background-position: center;
  background-size: cover;
}

.visual-tile:nth-child(1) {
  background-image: url("https://images.pexels.com/photos/2657307/pexels-photo-2657307.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.visual-tile:nth-child(2) {
  background-image: url("https://images.pexels.com/photos/1024993/pexels-photo-1024993.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.visual-tile:nth-child(3) {
  background-image: url("https://images.pexels.com/photos/1444442/pexels-photo-1444442.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.package {
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 24px;
}

.package--featured {
  border-color: rgba(193, 18, 31, .56);
  background: linear-gradient(180deg, rgba(193, 18, 31, .1), #fff);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .14);
}

.package h3 {
  margin: 18px 0 14px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.package--featured h3 {
  color: var(--red);
}

.package ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.package li {
  position: relative;
  padding-left: 18px;
}

.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 1px;
  background: var(--green);
}

.budget {
  align-items: start;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 250, 241, .13), transparent 24%),
    linear-gradient(135deg, #c1121f 0%, #55070d 100%);
  color: var(--porcelain);
}

.budget .eyebrow,
.budget__copy p {
  color: rgba(255, 250, 242, .76);
}

.budget__copy p:last-child {
  margin-bottom: 0;
}

.confidence {
  display: grid;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(247,245,240,.92), rgba(247,245,240,.72)),
    url("https://images.pexels.com/photos/169211/pexels-photo-169211.jpeg?auto=compress&cs=tinysrgb&w=1600") center / cover;
  color: var(--ink);
}

.objections {
  background:
    linear-gradient(90deg, rgba(247,245,240,.9), rgba(247,245,240,.52)),
    url("https://images.pexels.com/photos/169211/pexels-photo-169211.jpeg?auto=compress&cs=tinysrgb&w=1600") center / cover;
  color: var(--ink);
}

.confidence h2 {
  max-width: 1120px;
  color: var(--ink);
}

.contact {
  align-items: start;
  background:
    radial-gradient(circle at 80% 14%, rgba(193, 18, 31, .07), transparent 24%),
    var(--white);
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .1);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, .16);
  border-radius: 6px;
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(193, 18, 31, .72);
  box-shadow: 0 0 0 3px rgba(193, 18, 31, .14);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

#servicos h2,
#pacotes h2,
.deliverables h2,
.objections h2,
.contact h2,
#servicos h3,
#pacotes h3,
.deliverables h3,
.objections h3 {
  color: var(--ink);
}

#servicos p,
#pacotes p,
#pacotes li,
.deliverables p,
.objections p,
.contact p {
  color: var(--ink-soft);
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 32px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line-light);
  background: var(--night);
  color: var(--porcelain);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, .72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }

  .button {
    width: auto;
  }

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

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

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

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

  .field--full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .main-nav,
  .header-button {
    display: inline-flex;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(2.7rem, 3.35vw, 3.65rem);
  }

  .hero__lead {
    max-width: 590px;
  }

  .section__grid,
  .section__header,
  .budget,
  .contact,
  .story,
  .gallery-feature,
  .deliverables {
    grid-template-columns: minmax(0, .9fr) minmax(360px, .62fr);
  }

  .story__image {
    min-height: 460px;
  }

  .section__header > p {
    align-self: end;
  }

  .card-grid {
    display: flex;
    margin-inline: calc(clamp(18px, 5vw, 76px) * -1);
    padding: 4px clamp(18px, 5vw, 76px) 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .card {
    flex: 0 0 clamp(280px, 24vw, 360px);
  }

  .card__image {
    aspect-ratio: 1 / .78;
    min-height: 0;
  }

  .card__body {
    min-height: 178px;
    padding: 18px 20px 20px;
  }

  .card span {
    margin-bottom: 14px;
    font-size: .64rem;
  }

  .card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
  }

  .card p {
    font-size: .9rem;
    line-height: 1.44;
  }

  .steps,
  .packages {
    grid-template-columns: repeat(4, 1fr);
  }

  .section--dark .step {
    min-height: 156px;
    padding: 20px;
  }

  .section--dark .step span {
    margin-bottom: 18px;
  }

  .section--dark .step h3 {
    font-size: 1.05rem;
  }

  .section--dark .step p {
    font-size: .88rem;
    line-height: 1.42;
  }

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

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

  .party-card__media {
    height: clamp(150px, 18vh, 180px);
  }

  .party-card__body {
    min-height: 132px;
    padding: 16px 18px 18px;
  }

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

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

  .contact-form {
    align-self: start;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    gap: 10px;
    font-size: .72rem;
    letter-spacing: .12em;
  }

  .brand__mark {
    width: 28px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  h2,
  #servicos h2,
  .story h2,
  .gallery-feature h2,
  .section--dark h2,
  .deliverables h2,
  .party h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    line-height: .98;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.45rem);
    line-height: .98;
  }

  .hero {
    min-height: 620px;
    height: auto;
    max-height: none;
    padding: 96px 18px 18px;
  }

  .hero__lead {
    font-size: .94rem;
  }

  .hero__actions {
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .section {
    padding: 58px 18px;
  }

  .section__header,
  .section__grid,
  .story,
  .deliverables,
  .budget,
  .contact {
    gap: 22px;
  }

  .section__header {
    margin-bottom: 26px;
  }

  .section__header > p,
  .section__grid > p,
  .budget__copy,
  .confidence > p,
  .contact__intro > p,
  .story__copy p,
  .deliverables p,
  .objections p {
    font-size: .98rem;
    line-height: 1.56;
  }

  .story__image,
  .gallery-feature__image {
    min-height: 280px;
  }

  .card-grid {
    gap: 14px;
  }

  .card {
    flex-basis: min(78vw, 320px);
  }

  .card__body {
    min-height: 170px;
  }

  .carousel-button {
    width: 38px;
    height: 38px;
    font-size: 1.45rem;
  }

  .party-grid {
    display: flex;
    gap: 14px;
    margin-inline: -18px;
    padding: 0 18px 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .party-grid::-webkit-scrollbar {
    display: none;
  }

  .party-card {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .party-card__media {
    height: 210px;
  }

  .packages {
    gap: 14px;
  }

  .package {
    min-height: auto;
  }

  .contact-form {
    gap: 14px;
  }

  .hero__proof span,
  .step,
  .package {
    padding: 22px;
  }

  .scroll-hint {
    margin-top: -4px;
  }
}

@media (max-width: 520px) {
  body {
    line-height: 1.5;
  }

  .site-header {
    min-height: 64px;
    background: rgba(5, 5, 5, .9);
  }

  .hero {
    min-height: 560px;
    padding: 84px 18px 20px;
  }

  .hero h1 {
    max-width: 95%;
    margin-bottom: 12px;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: .62rem;
    letter-spacing: .16em;
  }

  .hero__lead {
    max-width: 94%;
    font-size: .9rem;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 16px;
  }

  .hero__proof {
    display: none;
  }

  .button {
    min-height: 46px;
    padding-inline: 16px;
    font-size: .62rem;
    letter-spacing: .11em;
  }

  .section {
    padding: 46px 18px;
  }

  .eyebrow,
  .section__label,
  .package__meta {
    margin-bottom: 10px;
    font-size: .62rem;
    letter-spacing: .16em;
  }

  h2,
  #servicos h2,
  .story h2,
  .gallery-feature h2,
  .section--dark h2,
  .deliverables h2,
  .party h2,
  .contact h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.02;
  }

  .section__header {
    gap: 16px;
    margin-bottom: 22px;
  }

  .section__header > p,
  .section__grid > p,
  .budget__copy,
  .confidence > p,
  .contact__intro > p,
  .story__copy p,
  .deliverables p,
  .objections p {
    font-size: .94rem;
    line-height: 1.58;
  }

  .story,
  .deliverables,
  .budget,
  .contact {
    gap: 18px;
  }

  .story__image {
    min-height: 235px;
  }

  .story__copy {
    gap: 12px;
  }

  .check-list {
    gap: 8px;
  }

  .check-list li {
    font-size: .92rem;
    line-height: 1.45;
  }

  .card {
    flex-basis: min(76vw, 292px);
  }

  .card__image {
    aspect-ratio: 1 / .86;
  }

  .card__body {
    min-height: 150px;
    padding: 16px;
  }

  .card span,
  .step span,
  .deliverables span {
    margin-bottom: 12px;
    font-size: .6rem;
  }

  .card h3,
  .step h3,
  .deliverables h3,
  .objections h3 {
    font-size: 1rem;
  }

  .card p,
  .step p,
  .deliverables p,
  .objections p,
  .package p,
  .package li {
    font-size: .88rem;
    line-height: 1.46;
  }

  .carousel-button {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .deliverables__grid,
  .steps,
  .packages,
  .objections__grid {
    display: flex;
    gap: 14px;
    margin-inline: -18px;
    padding: 0 18px 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .deliverables__grid::-webkit-scrollbar,
  .steps::-webkit-scrollbar,
  .packages::-webkit-scrollbar,
  .objections__grid::-webkit-scrollbar {
    display: none;
  }

  .deliverables article,
  .step,
  .package,
  .objections article {
    flex: 0 0 min(78vw, 310px);
    min-height: auto;
    padding: 18px;
    scroll-snap-align: start;
  }

  .section--dark .step {
    min-height: 180px;
  }

  .package h3 {
    margin: 12px 0 10px;
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .package ul {
    margin-top: 16px;
    gap: 8px;
  }

  .party-card {
    flex-basis: min(78vw, 310px);
  }

  .party-card__media {
    height: 185px;
  }

  .party-card__body {
    min-height: 126px;
    padding: 16px;
  }

  .budget__copy {
    display: grid;
    gap: 12px;
  }

  .budget__copy p {
    margin-bottom: 0;
  }

  .contact-form {
    gap: 12px;
    padding: 16px;
  }

  .field {
    gap: 6px;
  }

  .field label {
    font-size: .6rem;
    letter-spacing: .13em;
  }

  .field input,
  .field textarea {
    padding: 13px 14px;
  }

  .field textarea {
    min-height: 104px;
  }

  .site-footer {
    padding: 26px 18px;
  }
}

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

  html.is-enhanced .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
