:root {
  --bg: #0b0706;
  --bg-2: #160b08;
  --panel: rgba(22, 15, 13, .82);
  --panel-strong: rgba(16, 12, 11, .94);
  --line: rgba(255, 111, 49, .25);
  --line-soft: rgba(255, 244, 229, .12);
  --text: #fff2e4;
  --muted: #cfb09a;
  --muted-2: #9f7f69;
  --red: #b72a18;
  --red-2: #e2441e;
  --orange: #ff742b;
  --orange-2: #ff9b4a;
  --gold: #f2b45f;
  --dark: #070606;
  --shadow: 0 28px 90px rgba(0, 0, 0, .46);
  --radius: 6px;
  --container: 1320px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 5%, rgba(184, 43, 24, .23), transparent 28%),
    radial-gradient(circle at 88% 25%, rgba(255, 116, 43, .12), transparent 26%),
    linear-gradient(135deg, #090706 0%, #1b0b07 42%, #090807 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), transparent 80%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(9, 7, 6, .78);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 228px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 2px solid var(--orange);
  display: grid;
  place-items: center;
  color: var(--orange);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.brand-name {
  display: grid;
  gap: 3px;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1;
}

.brand-name strong {
  font-size: 17px;
}

.brand-name span {
  color: var(--muted);
  font-size: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.main-nav a {
  color: #f6d8c3;
  padding-block: 30px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 116, 43, .58);
  border-radius: 3px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff5ed;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(226, 68, 30, .24);
  cursor: pointer;
}

.btn.secondary {
  background: rgba(0, 0, 0, .22);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
}

.hero {
  min-height: 660px;
  padding: 78px 0 26px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8, 6, 5, .98) 0%, rgba(13, 8, 7, .68) 40%, rgba(13, 8, 7, .08) 74%),
    var(--hero-image, url("../images/casa-porto-hero.png"));
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  align-items: center;
  gap: 44px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(54px, 5.8vw, 88px);
  line-height: .9;
  letter-spacing: 0;
}

.hero h1 span,
.section-title span,
.page-hero h1 span {
  color: var(--orange);
}

.hero-copy {
  max-width: 520px;
  margin-top: 28px;
  color: #ead0be;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-social-actions {
  align-items: center;
}

.social-image-btn {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 116, 43, .22);
  background: rgba(7, 6, 6, .44);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .26);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease;
}

.social-image-btn:hover,
.social-image-btn:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 116, 43, .72);
  box-shadow: 0 20px 42px rgba(226, 68, 30, .2);
  filter: saturate(1.08);
  outline: 0;
}

.social-image-btn img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.whatsapp-social {
  border-color: rgba(18, 209, 99, .58);
  background: linear-gradient(135deg, rgba(18, 209, 99, .92), rgba(9, 110, 55, .9));
  color: #f8fff9;
  box-shadow: 0 14px 30px rgba(18, 209, 99, .18);
}

.whatsapp-social:hover,
.whatsapp-social:focus-visible {
  border-color: rgba(18, 209, 99, .9);
  box-shadow: 0 18px 36px rgba(18, 209, 99, .26);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  color: #f6d3b9;
  font-size: 13px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #25120c;
  margin-left: -8px;
}

.avatars img:first-child {
  margin-left: 0;
}

.stars {
  color: var(--gold);
  letter-spacing: .12em;
}

.benefit-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--line-soft);
  background: rgba(12, 10, 9, .74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.benefit-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 30px;
  border-right: 1px solid var(--line-soft);
}

.benefit-item:last-child {
  border-right: 0;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--orange);
}

.icon-box svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.7;
}

.benefit-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.benefit-item p,
.project-card p,
.muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 72px 0;
}

.section.panel-section {
  padding-top: 24px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  font-weight: 500;
}

.section-subtitle {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.description-text {
  text-align: justify;
}

.description-text p {
  margin: 0 0 16px;
}

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

.text-link {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.projects-shell {
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 78% 0%, rgba(180, 36, 20, .28), transparent 34%),
    rgba(16, 10, 8, .84);
  padding: 40px 54px 36px;
  box-shadow: var(--shadow);
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  padding: 10px 16px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.filter-btn.active {
  color: var(--text);
  border-color: rgba(255, 116, 43, .68);
  background: rgba(226, 68, 30, .2);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  border: 1px solid var(--line-soft);
  background: rgba(5, 5, 5, .52);
  overflow: hidden;
  min-width: 0;
  transition: transform .2s ease, border-color .2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 116, 43, .56);
}

.project-image {
  display: block;
  aspect-ratio: 16 / 9;
  background: #1c130f center / cover no-repeat;
  position: relative;
}

.size-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 9px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  font-size: 11px;
  font-weight: 900;
}

.project-body {
  padding: 24px;
}

.project-title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 14px;
}

.project-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  color: #e5b899;
  font-size: 12px;
}

.project-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.project-price strong {
  color: var(--orange);
  font-size: 26px;
  font-weight: 500;
}

.small-btn {
  border: 1px solid rgba(255, 116, 43, .58);
  color: var(--orange-2);
  background: rgba(0, 0, 0, .18);
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .8fr);
  gap: 48px;
  align-items: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 34px;
  margin-top: 32px;
}

.feature {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
}

.feature .icon-box {
  background: rgba(226, 68, 30, .18);
  border-radius: 50%;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.image-panel {
  min-height: 410px;
  border: 1px solid var(--line-soft);
  background: var(--image) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.video-panel {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 116, 43, .32);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 116, 43, .18), transparent 38%),
    linear-gradient(135deg, rgba(19, 10, 8, .98), rgba(56, 16, 10, .88));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .52),
    0 18px 50px rgba(183, 42, 24, .24),
    inset 0 1px 0 rgba(255, 244, 229, .08);
  transform: translateY(0);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.video-panel:hover {
  border-color: rgba(255, 116, 43, .68);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, .58),
    0 24px 62px rgba(226, 68, 30, .3),
    inset 0 1px 0 rgba(255, 244, 229, .1);
  transform: translateY(-5px);
}

.video-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 244, 229, .08);
  pointer-events: none;
  z-index: 1;
}

.video-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.personalize {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  border: 1px solid var(--line-soft);
  background: rgba(12, 10, 9, .82);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.personalize-media {
  min-height: 360px;
  background: url("../images/personalizacao.jpg") center / cover no-repeat;
}

.personalize-content {
  padding: 46px;
}

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

.step {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.step strong {
  color: #ffe8d5;
  font-size: 13px;
}

.testimonials {
  position: relative;
}

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

.testimonial {
  border: 1px solid var(--line-soft);
  background: rgba(7, 7, 7, .54);
  padding: 26px;
}

.quote {
  color: #f2d6c4;
  line-height: 1.65;
  margin: 0 0 24px;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.person strong {
  display: block;
}

.person span {
  color: var(--muted-2);
  font-size: 12px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  background:
    linear-gradient(90deg, rgba(118, 21, 12, .9), rgba(16, 8, 6, .28)),
    url("../images/casa-porto-2.png") center right / cover no-repeat;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.final-cta h2 {
  max-width: 520px;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(8, 7, 7, .95);
  padding: 24px 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 28px;
  align-items: center;
}

.footer-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(380px, 46vw);
}

.footer-seal img {
  width: auto;
  height: 42px;
  max-width: min(380px, 46vw);
  object-fit: contain;
}

.page-hero {
  padding: 90px 0 58px;
  background-image:
    linear-gradient(90deg, rgba(8, 6, 5, .98), rgba(22, 10, 8, .54), rgba(22, 10, 8, .12)),
    var(--page-image, url("../images/casa-porto-hero.png"));
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line-soft);
}

.breadcrumbs {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 390px;
  gap: 34px;
  align-items: start;
}

.product-layout > * {
  min-width: 0;
}

.gallery-carousel {
  border: 1px solid var(--line-soft);
  background: rgba(5, 5, 5, .56);
  padding: 16px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.carousel-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #050505;
  max-width: 100%;
  min-width: 0;
}

.carousel-stage img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  cursor: zoom-in;
}

.carousel-arrow,
.lightbox-arrow,
.lightbox-close {
  border: 1px solid rgba(255, 116, 43, .58);
  background: rgba(8, 7, 7, .72);
  color: var(--text);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-arrow.prev {
  left: 14px;
}

.carousel-arrow.next {
  right: 14px;
}

.carousel-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  margin: 12px 0;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(96px, 140px);
  gap: 10px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-color: var(--orange) rgba(255, 255, 255, .08);
}

.carousel-thumb {
  border: 1px solid transparent;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.carousel-thumb.active {
  border-color: var(--orange);
}

.carousel-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: .72;
}

.carousel-thumb.active img,
.carousel-thumb:hover img {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 2, 2, .92);
  padding: 28px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1180px, 88vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-arrow.prev {
  left: 22px;
}

.lightbox-arrow.next {
  right: 22px;
}

.lightbox-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 20px;
  text-align: center;
  color: var(--muted);
}

.floating-chat {
  position: fixed;
  right: 26px;
  bottom: 112px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(360px, calc(100vw - 40px));
  color: #fff2e4;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(18px, 10px, 0) scale(.96);
  transition: opacity .32s ease, transform .32s ease;
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, .42));
}

.floating-chat.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.floating-chat img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 2px solid rgba(255, 116, 43, .88);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 4px rgba(10, 7, 6, .86),
    0 12px 34px rgba(226, 68, 30, .28);
}

.floating-chat-bubble {
  position: relative;
  min-height: 44px;
  padding: 13px 18px 13px 20px;
  border: 1px solid rgba(255, 116, 43, .36);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(18, 12, 10, .98), rgba(61, 18, 11, .96)),
    radial-gradient(circle at 12% 0%, rgba(255, 116, 43, .22), transparent 38%);
  color: #fff2e4;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow:
    0 18px 55px rgba(0, 0, 0, .44),
    0 12px 34px rgba(183, 42, 24, .24),
    inset 0 1px 0 rgba(255, 244, 229, .08);
  backdrop-filter: blur(12px);
}

.floating-chat-bubble::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(255, 116, 43, .32);
  border-bottom: 1px solid rgba(255, 116, 43, .32);
  background: rgba(22, 10, 8, .98);
  transform: rotate(45deg);
}

.typing-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  vertical-align: -2px;
  background: var(--orange);
  animation: caretBlink .7s steps(1) infinite;
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.purchase-toast {
  position: fixed;
  right: 26px;
  bottom: 112px;
  z-index: 58;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 14px 15px;
  width: min(390px, calc(100vw - 32px));
  min-height: 88px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 128, 23, .54);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(15, 10, 8, .98), rgba(25, 13, 9, .98)),
    radial-gradient(circle at 10% 0%, rgba(255, 116, 43, .16), transparent 42%);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, .46),
    0 12px 40px rgba(255, 91, 24, .14),
    inset 0 1px 0 rgba(255, 244, 229, .08);
  color: #f7eee7;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(18px, 10px, 0) scale(.96);
  transition: opacity .32s ease, transform .32s ease;
}

.purchase-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.purchase-toast-check {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid #12f06c;
  border-radius: 50%;
  color: #12f06c;
  box-shadow: 0 0 24px rgba(18, 240, 108, .34);
}

.purchase-toast-check svg {
  width: 29px;
  height: 29px;
}

.purchase-toast-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  font-size: 15px;
  line-height: 1.08;
}

.purchase-toast-copy strong {
  color: #fffaf3;
  font-size: 16px;
  line-height: 1;
}

.purchase-toast-copy span {
  color: rgba(255, 244, 229, .82);
}

.purchase-toast-title {
  grid-column: 2;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1;
}

.buy-box,
.content-box {
  border: 1px solid var(--line-soft);
  background: rgba(8, 7, 7, .68);
  padding: 28px;
}

.buy-box {
  position: sticky;
  top: 108px;
}

.contact-card {
  position: sticky;
  top: 108px;
  border: 1px solid rgba(255, 116, 43, .32);
  background:
    linear-gradient(145deg, rgba(13, 9, 8, .92), rgba(39, 13, 8, .84)),
    radial-gradient(circle at 14% 0%, rgba(255, 116, 43, .18), transparent 44%);
  padding: 30px;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, .38),
    0 14px 42px rgba(226, 68, 30, .16),
    inset 0 1px 0 rgba(255, 244, 229, .08);
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-form label {
  color: #fff2e4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 116, 43, .24);
  background: rgba(4, 4, 4, .48);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 136px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(214, 193, 176, .58);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 116, 43, .78);
  background: rgba(8, 7, 7, .72);
  box-shadow: 0 0 0 4px rgba(255, 116, 43, .12);
}

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: .72;
}

.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-status {
  margin: 6px 0 0;
  border: 1px solid rgba(255, 116, 43, .32);
  background: rgba(255, 116, 43, .1);
  color: #fff2e4;
  padding: 13px 14px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-status.success {
  border-color: rgba(18, 240, 108, .34);
  background: rgba(18, 240, 108, .1);
}

.contact-status.error {
  border-color: rgba(255, 91, 24, .58);
  background: rgba(120, 18, 10, .22);
}

.price-large {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 48px;
  margin: 12px 0;
}

.check-list {
  padding: 0;
  margin: 22px 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  padding: 9px 0 9px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  border: 1px solid var(--line-soft);
  background: rgba(8, 7, 7, .62);
  padding: 26px;
}

.pricing-card-action {
  cursor: pointer;
  position: relative;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.pricing-card-action::after {
  content: "Solicitar atendimento";
  display: inline-flex;
  margin-top: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-card-action:hover,
.pricing-card-action:focus-visible {
  border-color: rgba(255, 116, 43, .62);
  background:
    linear-gradient(145deg, rgba(13, 9, 8, .86), rgba(46, 15, 8, .76)),
    rgba(8, 7, 7, .62);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, .32),
    0 12px 34px rgba(255, 91, 24, .14);
  transform: translateY(-4px);
  outline: 0;
}

.pricing-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.pricing-card strong {
  color: var(--orange);
  font-size: 26px;
}

.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.consultation-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.consultation-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 116, 43, .18), transparent 34%),
    rgba(4, 3, 3, .82);
  backdrop-filter: blur(10px);
}

.consultation-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border: 1px solid rgba(255, 116, 43, .36);
  background:
    linear-gradient(145deg, rgba(13, 9, 8, .98), rgba(44, 14, 8, .94)),
    radial-gradient(circle at 14% 0%, rgba(255, 116, 43, .18), transparent 44%);
  padding: 34px;
  box-shadow:
    0 34px 95px rgba(0, 0, 0, .58),
    0 16px 48px rgba(255, 91, 24, .18),
    inset 0 1px 0 rgba(255, 244, 229, .08);
  transform: translateY(14px) scale(.98);
  transition: transform .24s ease;
}

.consultation-modal.is-open .consultation-dialog {
  transform: translateY(0) scale(1);
}

.consultation-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 116, 43, .44);
  background: rgba(8, 7, 7, .68);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.consultation-dialog .contact-form {
  margin-top: 22px;
}

.whatsapp-button {
  display: block;
  margin-top: 18px;
  border-radius: 12px;
  transition: transform .2s ease, filter .2s ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 28px rgba(0, 220, 96, .18));
  outline: 0;
}

.whatsapp-button img {
  display: block;
  width: min(282px, 100%);
  height: auto;
}

body.modal-open {
  overflow: hidden;
}

.facade-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 116, 43, .22), transparent 24%),
    linear-gradient(180deg, rgba(6, 6, 7, .52), rgba(11, 7, 6, .94));
}

.facade-carousel {
  position: relative;
  min-height: 560px;
  padding: 30px 76px 58px;
}

.facade-stage {
  position: relative;
  height: 440px;
  max-width: 1280px;
  margin-inline: auto;
  perspective: 1200px;
}

.facade-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(660px, 58vw);
  height: 440px;
  border: 1px solid rgba(255, 116, 43, .34);
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: #080706;
  cursor: pointer;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .5);
  transform: translateX(-50%);
  transition: transform .38s ease, opacity .38s ease, filter .38s ease, border-color .38s ease;
}

.facade-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(6, 5, 5, .8));
}

.facade-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facade-slide[data-position="-2"] {
  transform: translateX(calc(-50% - 560px)) scale(.68) rotateY(18deg);
  opacity: .34;
  filter: brightness(.45);
}

.facade-slide[data-position="-1"] {
  transform: translateX(calc(-50% - 340px)) scale(.82) rotateY(11deg);
  opacity: .62;
  filter: brightness(.62);
}

.facade-slide[data-position="0"] {
  z-index: 5;
  border-color: rgba(255, 155, 74, .9);
  box-shadow: 0 36px 110px rgba(226, 68, 30, .28), 0 28px 80px rgba(0, 0, 0, .58);
}

.facade-slide[data-position="1"] {
  transform: translateX(calc(-50% + 340px)) scale(.82) rotateY(-11deg);
  opacity: .62;
  filter: brightness(.62);
}

.facade-slide[data-position="2"] {
  transform: translateX(calc(-50% + 560px)) scale(.68) rotateY(-18deg);
  opacity: .34;
  filter: brightness(.45);
}

.facade-slide[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.facade-number,
.facade-slide strong,
.facade-slide small {
  position: absolute;
  z-index: 2;
  left: 34px;
}

.facade-number {
  bottom: 142px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .16em;
}

.facade-slide strong {
  bottom: 74px;
  max-width: 420px;
  font-size: 42px;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.facade-slide small {
  bottom: 38px;
  color: #fff0e3;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.facade-nav {
  position: absolute;
  top: 45%;
  z-index: 7;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-2), #ff8500);
  color: #130805;
  font-size: 40px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 44px rgba(226, 68, 30, .28);
}

.facade-nav.prev {
  left: 16px;
}

.facade-nav.next {
  right: 16px;
}

.facade-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.facade-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 244, 229, .35);
  cursor: pointer;
}

.facade-dots button.active {
  width: 30px;
  background: var(--orange);
}

@media (max-width: 1060px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav.open {
    display: grid;
    position: absolute;
    top: 82px;
    left: 24px;
    right: 24px;
    padding: 22px;
    background: rgba(8, 7, 7, .97);
    border: 1px solid var(--line-soft);
  }

  .main-nav.open a {
    padding: 12px 0;
  }

  .hero-grid,
  .audience,
  .personalize,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .benefit-bar,
  .project-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .steps,
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }

  .facade-carousel {
    padding-inline: 52px;
  }

  .facade-slide {
    width: min(470px, 62vw);
  }

  .facade-slide[data-position="-2"] {
    transform: translateX(calc(-50% - 300px)) scale(.72);
  }

  .facade-slide[data-position="-1"] {
    transform: translateX(calc(-50% - 170px)) scale(.84);
  }

  .facade-slide[data-position="1"] {
    transform: translateX(calc(-50% + 170px)) scale(.84);
  }

  .facade-slide[data-position="2"] {
    transform: translateX(calc(-50% + 300px)) scale(.72);
  }

  .buy-box {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .audience {
    gap: 28px;
  }

  .video-panel {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .video-panel:hover {
    transform: none;
  }

  .video-panel::before {
    inset: 8px;
  }

  .gallery-carousel {
    padding: 10px;
  }

  .carousel-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .carousel-track {
    grid-auto-columns: 82px;
  }

  .hero {
    min-height: auto;
    padding: 66px 0 22px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .projects-shell {
    padding: 28px 18px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .steps,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .personalize-content {
    padding: 28px;
  }

  .carousel-arrow,
  .lightbox-arrow,
  .lightbox-close {
    width: 40px;
    height: 40px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox img {
    max-width: 94vw;
  }

  .floating-chat {
    right: 14px;
    bottom: 82px;
  }

  .floating-chat img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .floating-chat-bubble {
    max-width: calc(100vw - 76px);
    padding: 11px 14px;
    font-size: 13px;
  }

  .purchase-toast {
    right: 12px;
    bottom: 82px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    width: calc(100vw - 24px);
    min-height: 78px;
    padding: 13px 14px;
  }

  .purchase-toast-check {
    width: 40px;
    height: 40px;
  }

  .purchase-toast-check svg {
    width: 24px;
    height: 24px;
  }

  .purchase-toast-copy {
    font-size: 13px;
  }

  .purchase-toast-copy strong {
    font-size: 14px;
  }

  .purchase-toast-title {
    grid-column: 2;
    font-size: 11px;
  }

  .facade-carousel {
    min-height: 360px;
    padding: 12px 44px 46px;
  }

  .consultation-modal {
    padding: 12px;
  }

  .consultation-dialog {
    max-height: 92vh;
    padding: 24px 18px;
  }

  .consultation-close {
    top: 10px;
    right: 10px;
  }

  .facade-stage {
    height: 270px;
  }

  .facade-slide {
    width: min(86vw, 390px);
    height: 270px;
  }

  .facade-slide[data-position="-2"],
  .facade-slide[data-position="2"] {
    opacity: 0;
  }

  .facade-slide[data-position="-1"] {
    transform: translateX(calc(-50% - 92px)) scale(.76);
  }

  .facade-slide[data-position="1"] {
    transform: translateX(calc(-50% + 92px)) scale(.76);
  }

  .facade-nav {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .facade-slide strong {
    font-size: 26px;
  }
}
