:root {
  --forest: #1f4d3b;
  --sage: #a7b89a;
  --sand: #e9e1d4;
  --terracotta: #c86a4a;
  --graphite: #2f3432;
  --snow: #fafaf8;
  --cream: #f4efe7;
  --soft-green: #dde6d5;
  --line: rgba(47, 52, 50, 0.14);
  --shadow: 0 18px 50px rgba(31, 77, 59, 0.12);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--snow);
  color: var(--graphite);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(250, 250, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 800;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
}

.brand__text {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: var(--terracotta);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(58px, 8vw, 104px) clamp(20px, 7vw, 96px);
  background: var(--snow);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background: url("./assets/decorae-hero-bg.jpg?v=20260530-1") center / cover no-repeat;
  opacity: 1;
  transform: none;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(250, 250, 248, 0.88) 0%, rgba(250, 250, 248, 0.68) 40%, rgba(250, 250, 248, 0.18) 72%, rgba(250, 250, 248, 0.02) 100%),
    linear-gradient(180deg, rgba(250, 250, 248, 0.34) 0%, rgba(250, 250, 248, 0.06) 45%, rgba(250, 250, 248, 0.46) 100%);
}

.hero__content {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--forest);
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  font-weight: 800;
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  color: var(--forest);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.04;
}

h3 {
  color: var(--forest);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 26px;
  color: rgba(47, 52, 50, 0.88);
  font-size: clamp(1.04rem, 1.4vw, 1.24rem);
}

.hero__actions,
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--forest);
  color: var(--snow);
}

.button--secondary {
  border-color: var(--forest);
  color: var(--forest);
}

.button--light {
  background: var(--snow);
  color: var(--forest);
}

.hero__proof {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero__proof li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.hero__media {
  display: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section__header {
  max-width: var(--container);
  margin: 0 auto 38px;
}

.section__header--center {
  text-align: center;
}

.section__header > p:not(.eyebrow) {
  max-width: 820px;
}

.section__header--center p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.section__header--light h2,
.section__header--light p {
  color: var(--snow);
}

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

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  max-width: var(--container);
  margin: 0 auto;
}

.intro__copy {
  color: rgba(47, 52, 50, 0.9);
  font-size: 1.05rem;
}

.intro__note {
  align-self: start;
  padding: 24px;
  border-left: 5px solid var(--terracotta);
  border-radius: 8px;
  background: var(--snow);
  box-shadow: var(--shadow);
}

.intro__note strong,
.intro__note span {
  display: block;
}

.intro__note strong {
  margin-bottom: 8px;
  color: var(--forest);
}

.use-cases {
  background: var(--snow);
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}

.use-cases article,
.package-detail,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.use-cases article {
  min-height: 250px;
  padding: 24px;
}

.number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 800;
}

.benefits {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  background: var(--forest);
  color: var(--snow);
}

.benefits h2,
.benefits h3 {
  color: var(--snow);
}

.benefits__content p:not(.eyebrow) {
  color: rgba(250, 250, 248, 0.84);
}

.benefits__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefits__list div {
  padding: 20px;
  border: 1px solid rgba(250, 250, 248, 0.18);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.08);
}

.benefits__list p {
  margin-bottom: 0;
  color: rgba(250, 250, 248, 0.78);
}

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

.packages__stack {
  display: grid;
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

.packages__compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: stretch;
}

.package-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: 28px;
  padding: clamp(22px, 4vw, 34px);
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
}

.package-card--featured {
  border: 2px solid var(--forest);
  box-shadow: var(--shadow);
}

.package-card--featured .package-price {
  background: var(--forest);
  color: var(--snow);
}

.package-includes {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.package-includes strong {
  display: block;
  margin-bottom: 12px;
  color: var(--forest);
}

.package-detail__tag,
.price-card__tag {
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-meta {
  margin: 14px 0 0;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
}

.package-price {
  display: inline-grid;
  gap: 2px;
  margin: 4px 0 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--soft-green);
  color: var(--forest);
}

.package-price strong {
  font-size: 1.65rem;
  line-height: 1;
}

.package-price span {
  font-size: 0.86rem;
  font-weight: 700;
}

.package-detail ul,
.price-card ul {
  margin: 0;
  padding-left: 18px;
}

.package-detail li,
.price-card li {
  margin-bottom: 8px;
}

.package-cta {
  width: 100%;
  margin-top: 18px;
}

.steps {
  background: var(--snow);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps__grid li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.steps__grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.steps__grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.deliverables {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 42px;
  align-items: center;
  background: var(--sage);
}

.deliverables h2 {
  color: var(--snow);
}

.deliverables__copy > p:not(.eyebrow) {
  color: rgba(47, 52, 50, 0.86);
}

.deliverables__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.deliverables__grid span {
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(250, 250, 248, 0.72);
  color: var(--forest);
  font-weight: 700;
}

.deliverables img {
  width: 100%;
  max-height: 460px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--snow);
  box-shadow: var(--shadow);
}

.gallery {
  overflow: hidden;
  background: var(--snow);
}

.gallery__rail {
  display: grid;
  grid-auto-columns: minmax(320px, 520px);
  grid-auto-flow: column;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.gallery__rail img {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
  background: var(--cream);
  scroll-snap-align: start;
}

.not-included {
  background: var(--graphite);
  color: var(--snow);
}

.not-included h2 {
  color: var(--snow);
}

.not-included .section__header p:not(.eyebrow) {
  color: rgba(250, 250, 248, 0.78);
}

.not-included__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}

.not-included__grid span {
  padding: 14px;
  border-radius: 6px;
  background: rgba(250, 250, 248, 0.08);
  color: rgba(250, 250, 248, 0.9);
}

.not-included__grid span::before {
  content: "Não inclui";
  display: block;
  margin-bottom: 6px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-note {
  max-width: var(--container);
  margin: 24px auto 0;
  padding: 16px 18px;
  border-left: 4px solid var(--terracotta);
  border-radius: 6px;
  background: rgba(250, 250, 248, 0.08);
  color: rgba(250, 250, 248, 0.88);
}

.pricing {
  background: var(--terracotta);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.price-card {
  padding: 28px;
}

.price-card--featured {
  border-color: var(--forest);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.price-card > p:not(.price-card__tag) {
  color: rgba(47, 52, 50, 0.72);
  font-weight: 700;
}

.custom-offer {
  max-width: 820px;
  margin: 28px auto 0;
  padding: 26px;
  border-radius: 8px;
  background: var(--snow);
  text-align: center;
}

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

.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}

.audience__grid span {
  padding: 18px;
  border-left: 4px solid var(--terracotta);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  font-weight: 700;
}

.profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: stretch;
  background: var(--snow);
}

.profile__content {
  max-width: 780px;
}

.profile__credential {
  display: inline-flex;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--cream);
  color: var(--forest);
  font-weight: 800;
}

.profile__photo {
  width: 100%;
  min-height: 360px;
  max-height: 520px;
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 18%;
  box-shadow: var(--shadow);
}

.faq {
  background: var(--soft-green);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: var(--container);
  margin: 0 auto;
}

.faq__grid article {
  padding: 20px;
  border: 1px solid rgba(31, 77, 59, 0.16);
  border-radius: 8px;
  background: var(--snow);
}

.faq__grid h3 {
  margin-bottom: 8px;
}

.faq__grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.commercial-policy {
  background: var(--snow);
}

.policy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}

.policy__grid span {
  padding: 18px;
  border-left: 4px solid var(--terracotta);
  border-radius: 8px;
  background: var(--cream);
  color: var(--forest);
  font-weight: 700;
}

.whatsapp-copy {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--terracotta);
  border-radius: 6px;
  background: var(--cream);
  color: var(--forest);
  font-weight: 600;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
  background: var(--snow);
}

.contact__box {
  padding: 28px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--snow);
}

.contact__box h3 {
  color: var(--snow);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--forest);
  color: var(--snow);
}

.footer div {
  display: grid;
  gap: 2px;
}

.footer p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(250, 250, 248, 0.76);
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--snow);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--snow);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--forest);
  }

  .hero,
  .intro__grid,
  .benefits,
  .deliverables,
  .profile,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 420px;
  }

  .use-cases__grid,
  .not-included__grid,
  .faq__grid,
  .policy__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps__grid,
  .pricing__grid,
  .packages__compare,
  .audience__grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand__text {
    font-size: 1rem;
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding: clamp(54px, 12vh, 92px) 22px 34px;
    align-items: end;
  }

  .hero::before {
    background-image: url("./assets/decorae-hero-mobile-bg.jpg?v=20260530-1");
    background-position: center;
    opacity: 1;
    transform: none;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(250, 250, 248, 0.9) 0%, rgba(250, 250, 248, 0.72) 40%, rgba(250, 250, 248, 0.24) 75%, rgba(250, 250, 248, 0.04) 100%),
      linear-gradient(180deg, rgba(250, 250, 248, 0.48) 0%, rgba(250, 250, 248, 0.12) 42%, rgba(250, 250, 248, 0.68) 100%);
  }

  .hero__content {
    align-self: end;
    max-width: 330px;
    padding-bottom: 18px;
  }

  h1 {
    max-width: 315px;
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .hero__lead {
    max-width: 300px;
    margin-bottom: 18px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hero__actions {
    max-width: 270px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .button--secondary,
  .hero__proof {
    display: none;
  }

  .hero__media {
    display: none;
  }

  .use-cases__grid,
    .benefits__list,
    .steps__grid,
    .deliverables__grid,
    .not-included__grid,
    .pricing__grid,
    .packages__compare,
    .faq__grid,
    .audience__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .gallery__rail {
    grid-auto-columns: minmax(260px, 86vw);
  }

  .footer {
    display: grid;
  }
}
