:root {
  --bg: #07090b;
  --bg-soft: #0e1114;
  --card: #111519;
  --text: #f6f3ed;
  --muted: #a7abb0;
  --line: rgba(255,255,255,.12);
  --red: #b42027;
  --red-dark: #6f0f14;
  --blue: #173f6a;
  --blue-dark: #0c223b;
  --white: #ffffff;
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

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

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(7,9,11,.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(7,9,11,.92); }
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 64px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(180,32,39,.15), rgba(12,16,21,.88) 52%, rgba(23,63,106,.18));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
  padding: 3px;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.brand-copy { display: grid; line-height: .88; }
.brand-copy strong { font-size: 9px; letter-spacing: .19em; font-weight: 700; color: #aeb2b6; }
.brand-copy span { font-family: "Bebas Neue", sans-serif; font-size: 25px; letter-spacing: .06em; }
.desktop-nav { display: flex; gap: 30px; margin-left: auto; }
.desktop-nav a { font-size: 13px; color: #c6c8ca; transition: color .2s ease; }
.desktop-nav a:hover { color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border-radius: 999px; font-weight: 800; font-size: 13px; letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #9e161d 0%, #bd252d 45%, #163b63 100%);
  box-shadow: 0 12px 30px rgba(147,20,28,.2);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(147,20,28,.32); }
.btn-header { padding: 12px 18px; }
.btn-lg { padding: 16px 24px; min-height: 54px; }
.btn-xl { padding: 19px 30px; min-height: 62px; font-size: 15px; }
.btn-ghost { background: rgba(255,255,255,.035); border-color: var(--line); color: #e8e8e8; }
.btn-ghost:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.07); }
.btn-light { background: #f4f1eb; color: #0b0c0e; }
.btn-full { width: 100%; min-height: 56px; }

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  padding: 132px 0 74px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 6%, rgba(255,255,255,.05), transparent 35%),
              linear-gradient(180deg, transparent 65%, rgba(255,255,255,.015));
}
.hero-glow { position: absolute; width: 430px; height: 430px; border-radius: 50%; filter: blur(100px); opacity: .18; }
.hero-glow-red { background: var(--red); left: -210px; top: 190px; }
.hero-glow-blue { background: #18548c; right: -170px; top: 110px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 72px; align-items: center; }

.eyebrow { display: flex; align-items: center; gap: 10px; color: #c9cbcd; font-size: 11px; letter-spacing: .18em; font-weight: 800; }
.eyebrow span { width: 24px; height: 2px; background: linear-gradient(90deg, var(--red), var(--blue)); }
.hero h1, .section-heading h2, .gallery-head h2, .pricing-copy h2, .location-card h2, .final-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  margin: 18px 0 18px;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .89;
}
.hero h1 { font-size: clamp(72px, 8vw, 112px); max-width: 620px; }
h1 em, h2 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.8); }
.hero-copy > p { max-width: 590px; color: #aeb1b5; line-height: 1.7; font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-meta { display: flex; align-items: stretch; gap: 20px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); max-width: 610px; }
.meta-item { display: flex; align-items: center; gap: 12px; min-width: 0; }
.meta-icon { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 14px; color: #f0f0f0; }
.meta-item div { display: grid; gap: 3px; }
.meta-item small { color: #70757a; font-size: 9px; letter-spacing: .16em; font-weight: 800; }
.meta-item strong { font-size: 12px; white-space: nowrap; }
.meta-separator { width: 1px; background: var(--line); }

.hero-visual { position: relative; }
.visual-frame {
  position: relative; overflow: hidden; border-radius: 30px; border: 1px solid rgba(255,255,255,.13);
  background: #050607; box-shadow: 0 40px 90px rgba(0,0,0,.4);
  aspect-ratio: 4/4.2;
}
.visual-frame::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.18) 45%, rgba(0,0,0,.7) 100%);
}
.visual-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: contrast(1.06) saturate(.92); transform: scale(1.06); }
.visual-tag {
  position: absolute; top: 19px; left: 19px; z-index: 4; padding: 9px 12px; border-radius: 999px;
  background: rgba(5,7,9,.74); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px);
  font-size: 9px; letter-spacing: .16em; font-weight: 800;
}
.price-badge {
  position: absolute; right: 18px; bottom: 18px; z-index: 4; width: 132px; height: 132px;
  background: #f5f1e9; color: #090b0d; border-radius: 50%; display: grid; place-content: center; text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.32); transform: rotate(-5deg);
}
.price-badge > span { font-size: 9px; letter-spacing: .18em; font-weight: 900; }
.price-badge strong { font-family: "Bebas Neue", sans-serif; font-size: 56px; line-height: .9; font-weight: 400; }
.price-badge strong small { font-family: "Inter", sans-serif; font-size: 13px; font-weight: 900; vertical-align: 22px; margin-right: 2px; }
.visual-caption { display: flex; justify-content: space-between; margin-top: 14px; color: #676c70; font-size: 9px; letter-spacing: .16em; font-weight: 800; gap: 12px; }
.visual-brand-badge { position: absolute; left: 18px; bottom: 18px; z-index: 4; padding: 10px 12px; border-radius: 999px; background: rgba(7,9,11,.82); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px); font-size: 8px; letter-spacing: .18em; font-weight: 900; }

.trust-strip { border-block: 1px solid var(--line); overflow: hidden; background: #0a0d0f; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 15px 0; white-space: nowrap; animation: marquee 24s linear infinite; will-change: transform; }
.ticker-track span { font-family: "Bebas Neue", sans-serif; font-size: 18px; letter-spacing: .1em; color: #b5b8bb; }
.ticker-track i { font-style: normal; color: #9e161d; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 112px 0; }
.section-heading { max-width: 700px; }
.section-heading h2, .gallery-head h2, .pricing-copy h2, .location-card h2, .final-cta h2 { font-size: clamp(56px, 6.5vw, 86px); }
.section-heading > p, .pricing-copy > p { color: var(--muted); line-height: 1.75; font-size: 15px; max-width: 570px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 54px; }
.feature-card { position: relative; min-height: 290px; padding: 28px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01)); border-radius: var(--radius); overflow: hidden; }
.feature-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: var(--red); filter: blur(90px); opacity: .06; right: -60px; bottom: -70px; }
.feature-number { position: absolute; top: 24px; right: 25px; color: #444a50; font-family: "Bebas Neue", sans-serif; font-size: 22px; }
.feature-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; border: 1px solid var(--line); background: #0b0e11; font-size: 20px; }
.feature-card h3 { margin: 62px 0 12px; font-size: 19px; }
.feature-card p { margin: 0; color: #90959a; line-height: 1.7; font-size: 13px; }
.feature-card p strong { color: #fff; }

.gallery-section { padding: 112px 0; background: #0a0d10; border-block: 1px solid rgba(255,255,255,.06); }
.gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding-bottom: 9px; border-bottom: 1px solid #5c6166; font-size: 12px; font-weight: 800; color: #c7c9ca; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 250px 250px; gap: 12px; margin-top: 44px; }
.gallery-grid-featured { grid-template-columns: 1.05fr .95fr; grid-template-rows: 280px 280px; }
.gallery-grid-featured .gallery-featured { grid-row: 1 / 3; }
.gallery-grid-featured .gallery-item img { object-position: center; }
.gallery-grid-featured .gallery-featured img { object-position: center 62%; }
.gallery-item { position: relative; overflow: hidden; border-radius: 22px; border: 1px solid rgba(255,255,255,.08); margin: 0; min-height: 0; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.74)); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item figcaption { position: absolute; left: 18px; bottom: 17px; z-index: 2; font-size: 9px; letter-spacing: .15em; font-weight: 800; color: #e2e2e2; }
.gallery-tall { grid-row: 1 / 3; }
.gallery-wide { grid-column: 2 / 4; }

.pricing-section { padding: 112px 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr .88fr; gap: 80px; align-items: center; }
.pricing-copy .btn { margin-top: 28px; }
.pricing-card { border-radius: 32px; padding: 34px; color: #090b0d; background: linear-gradient(160deg, #f7f3eb 0%, #d9d4cb 100%); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.pricing-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 10px; letter-spacing: .16em; font-weight: 900; }
.pill { padding: 8px 10px; border: 1px solid rgba(0,0,0,.18); border-radius: 999px; font-size: 8px; }
.pricing-value { margin: 44px 0 31px; display: flex; align-items: flex-start; justify-content: center; }
.pricing-value small { margin-top: 16px; font-weight: 900; font-size: 16px; }
.pricing-value strong { font-family: "Bebas Neue", sans-serif; font-size: 118px; line-height: .82; font-weight: 400; }
.pricing-value sup { margin-top: 12px; font-size: 22px; font-weight: 900; }
.pricing-line { height: 1px; background: rgba(0,0,0,.16); }
.pricing-card ul { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 15px; }
.pricing-card li { display: flex; gap: 12px; align-items: center; font-size: 12px; font-weight: 700; }
.pricing-card li span { width: 23px; height: 23px; border-radius: 50%; background: #111; color: #fff; display: grid; place-items: center; font-size: 10px; }

.location-section { padding: 112px 0; background: #0a0d10; border-top: 1px solid rgba(255,255,255,.06); }
.location-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 16px; align-items: stretch; }
.location-card { padding: 48px; border-radius: 28px; border: 1px solid var(--line); background: #0e1216; }
.location-card h2 { margin-bottom: 36px; }
.address-block { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0 28px; border-block: 1px solid var(--line); }
.address-icon { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(145deg, rgba(180,32,39,.18), rgba(23,63,106,.18)); border: 1px solid var(--line); }
.address-block div { display: grid; gap: 6px; }
.address-block small { color: #676d72; font-size: 9px; letter-spacing: .16em; font-weight: 900; }
.address-block strong { font-size: 15px; }
.address-block p { margin: 0; color: #969b9f; line-height: 1.55; font-size: 12px; }
.contact-links { margin-top: 18px; display: grid; }
.contact-links a { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); color: #c7c9cb; font-size: 12px; }
.contact-links b { font-size: 12px; }
.map-wrap { min-height: 600px; border-radius: 28px; overflow: hidden; position: relative; border: 1px solid var(--line); background: #111; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.9) contrast(.95); opacity: .88; }
.map-label { position: absolute; bottom: 16px; left: 16px; padding: 10px 12px; border-radius: 999px; background: rgba(7,9,11,.84); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12); font-size: 8px; letter-spacing: .14em; font-weight: 900; }

.final-cta { position: relative; padding: 120px 0 130px; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 60%, rgba(160,26,33,.14), transparent 42%); }
.final-cta-bg { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-family: "Bebas Neue", sans-serif; font-size: clamp(160px, 31vw, 520px); color: rgba(255,255,255,.022); white-space: nowrap; pointer-events: none; }
.final-cta-inner { position: relative; z-index: 2; text-align: center; display: grid; justify-items: center; }
.final-cta-inner > p { color: #7c8186; font-size: 10px; letter-spacing: .2em; font-weight: 900; }
.final-cta h2 { max-width: 850px; margin: 16px auto 30px; }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; background: #080a0c; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner > p { color: #666c70; font-size: 10px; }
.footer-brand .brand-mark { width: 58px; height: 42px; padding: 3px; }
.footer-brand .brand-copy span { font-size: 21px; }
.back-top { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: #aaa; }
.mobile-book { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-sm { transition-delay: .08s; }
.reveal-delay { transition-delay: .16s; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 680px; width: 100%; }
  .visual-frame { aspect-ratio: 16/10; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; }
  .feature-card h3 { margin-top: 44px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 300px; }
  .gallery-grid-featured { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-grid-featured .gallery-featured { grid-row: auto; min-height: 380px; }
  .gallery-grid-featured .gallery-item:not(.gallery-featured) { min-height: 280px; }
  .gallery-tall { grid-row: auto; }
  .gallery-wide { grid-column: 1 / 3; }
  .pricing-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-card { max-width: 620px; width: 100%; }
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 460px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header .header-inner { height: 68px; }
  .brand-mark { width: 56px; height: 40px; padding: 3px; }
  .brand-copy strong { font-size: 8px; }
  .brand-copy span { font-size: 22px; }
  .btn-header { display: none; }
  .hero { padding: 112px 0 54px; }
  .hero h1 { font-size: clamp(62px, 19vw, 88px); }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { gap: 14px; }
  .meta-separator { display: none; }
  .hero-meta { display: grid; grid-template-columns: 1fr; }
  .visual-frame { aspect-ratio: 4/4.4; }
  .visual-frame img { transform: scale(1.05); object-position: center top; }
  .price-badge { width: 112px; height: 112px; }
  .price-badge strong { font-size: 49px; }
  .visual-caption { font-size: 7px; }
  .section, .gallery-section, .pricing-section, .location-section { padding: 82px 0; }
  .section-heading h2, .gallery-head h2, .pricing-copy h2, .location-card h2, .final-cta h2 { font-size: clamp(50px, 15vw, 68px); }
  .feature-card { padding: 24px; }
  .gallery-head { align-items: flex-start; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 230px 260px; gap: 9px; }
  .gallery-item { border-radius: 16px; }
  .gallery-item:first-child { grid-column: 1 / 3; }
  .gallery-wide { grid-column: 1 / 3; }
  .pricing-card { padding: 25px; border-radius: 25px; }
  .pricing-top { align-items: flex-start; flex-direction: column; }
  .pricing-value { margin: 40px 0 28px; }
  .pricing-value strong { font-size: 102px; }
  .location-card { padding: 28px 22px; }
  .map-wrap { min-height: 390px; }
  .final-cta { padding: 96px 0 120px; }
  .footer-inner { padding-bottom: 68px; }
  .footer-inner > p { display: none; }
  .mobile-book {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 16px 19px; border-radius: 999px; font-size: 13px; font-weight: 900;
    background: linear-gradient(90deg, #a3161d, #b92028 45%, #153c65); color: #fff;
    box-shadow: 0 16px 45px rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .gallery-item img { transition: none; }
}

/* =========================================================
   MOBILE — CENTRALIZAÇÃO GERAL
   ========================================================= */
@media (max-width: 640px) {

  /* HEADER */
  .site-header .header-inner {
    justify-content: center;
    text-align: center;
  }

  .brand {
    justify-content: center;
    text-align: center;
  }

  .brand-copy {
    text-align: center;
  }

  .desktop-nav,
  .btn-header {
    display: none;
  }


  /* HERO */
  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow {
    justify-content: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    margin-inline: auto;
  }

  .hero-meta {
    justify-items: center;
    text-align: center;
  }

  .meta-item {
    justify-content: center;
    width: 100%;
  }

  .meta-item div {
    justify-items: center;
    text-align: center;
  }

  .hero-visual {
    margin-inline: auto;
    text-align: center;
  }

  .visual-caption {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }


  /* SEÇÃO EXPERIÊNCIA / SERVIÇOS */
  .section-heading {
    text-align: center;
    margin-inline: auto;
  }

  .section-heading > p {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card {
    text-align: center;
  }

  .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card h3,
  .feature-card p {
    text-align: center;
  }


  /* GALERIA */
  .gallery-head {
    align-items: center;
    text-align: center;
  }

  .gallery-head > div {
    width: 100%;
    text-align: center;
  }

  .gallery-head .eyebrow {
    justify-content: center;
  }

  .gallery-head h2 {
    text-align: center;
  }

  .text-link {
    margin-inline: auto;
  }

  .gallery-item figcaption {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    text-align: center;
  }


  /* PREÇO */
  .pricing-copy {
    text-align: center;
  }

  .pricing-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-copy .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    margin-inline: auto;
    text-align: center;
  }

  .pricing-top {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .pricing-value {
    justify-content: center;
  }

  .pricing-card ul {
    justify-items: center;
  }

  .pricing-card li {
    justify-content: center;
    text-align: center;
  }


  /* LOCALIZAÇÃO */
  .location-card {
    text-align: center;
  }

  .location-card h2 {
    text-align: center;
  }

  .address-block {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .address-block > div {
    justify-items: center;
    text-align: center;
  }

  .address-icon {
    margin-inline: auto;
  }

  .contact-links {
    text-align: center;
  }

  .contact-links a {
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .map-label {
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 30px);
    text-align: center;
  }


  /* CTA FINAL */
  .final-cta-inner {
    text-align: center;
  }

  .final-cta-inner > p,
  .final-cta h2 {
    text-align: center;
  }

  .final-cta .btn {
    margin-inline: auto;
  }


  /* FOOTER */
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-bottom: 28px;
  }

  .footer-brand {
    justify-content: center;
    margin-inline: auto;
  }

  .footer-brand .brand-copy {
    text-align: center;
  }

  /* Seu CSS anterior escondia esse texto no mobile.
     Isso faz copyright + Innovatech aparecer novamente. */
  .footer-inner > p {
    display: block;
    margin: 0;
    text-align: center;
    line-height: 1.7;
    max-width: 320px;
  }

  .footer-divider {
    display: inline-block;
    margin-inline: 4px;
  }

  .footer-credit {
    display: inline-block;
  }

  .back-top {
    margin-inline: auto;
  }
}

/* =========================================================
   IDENTIDADE 2026 — NOVO LOGO + TABELA COMPLETA
   ========================================================= */

/* O novo logo possui fundo escuro e deve aparecer inteiro, sem crop. */
.brand-mark {
  width: 86px;
  height: 56px;
  padding: 2px;
  border-radius: 12px;
  background: #0b0c0e;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  border-radius: 9px;
}

.footer-brand .brand-mark {
  width: 78px;
  height: 52px;
}

.pricing-heading-center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.pricing-heading-center .eyebrow {
  justify-content: center;
}

.pricing-heading-center > p {
  margin-inline: auto;
}

.price-table-card {
  max-width: 900px;
  margin: 52px auto 0;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(187, 145, 88, .28);
  background:
    radial-gradient(circle at 50% 0%, rgba(190, 150, 93, .08), transparent 28%),
    linear-gradient(180deg, #101113 0%, #090a0c 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
  overflow: hidden;
}

.price-table-top {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding-bottom: 28px;
}

.price-table-logo {
  width: min(100%, 380px);
  max-height: 230px;
  object-fit: contain;
  border-radius: 18px;
  filter: saturate(.82) contrast(1.04);
}

.price-table-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #c9a46f;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .08em;
}

.price-table-title > span {
  font-size: clamp(30px, 4vw, 48px);
}

.price-table-title > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 7px 18px;
  border: 1px solid rgba(201, 164, 111, .38);
  border-radius: 12px;
  font-size: 32px;
  font-weight: 400;
}

.price-table {
  overflow: hidden;
  border: 1px solid rgba(201, 164, 111, .26);
  border-radius: 22px;
  background: rgba(255, 255, 255, .01);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 66px;
  padding: 15px 24px;
  border-bottom: 1px solid rgba(201, 164, 111, .18);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row > span {
  color: #ece8e1;
  font-size: 18px;
  line-height: 1.35;
}

.price-row > span small {
  color: #a99f91;
  font-size: 13px;
}

.price-row > strong {
  min-width: 112px;
  color: #c9a46f;
  font-size: 19px;
  text-align: right;
  white-space: nowrap;
}

.price-row-featured {
  background: linear-gradient(90deg, rgba(180, 32, 39, .11), rgba(201, 164, 111, .055), rgba(23, 63, 106, .08));
}

.price-table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
}

.price-table-footer > p {
  margin: 0;
  color: #7e8387;
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .brand-mark {
    width: 82px;
    height: 52px;
  }

  .brand-copy {
    display: none;
  }

  .footer-brand .brand-mark {
    width: 90px;
    height: 58px;
  }

  .price-table-card {
    margin-top: 34px;
    padding: 20px 12px;
    border-radius: 22px;
  }

  .price-table-top {
    gap: 16px;
    padding: 0 8px 22px;
  }

  .price-table-logo {
    width: min(100%, 310px);
    max-height: 205px;
  }

  .price-table-title {
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .price-table-title > span {
    font-size: 34px;
  }

  .price-table-title > strong {
    min-width: 96px;
    padding: 6px 14px;
    font-size: 27px;
  }

  .price-table {
    border-radius: 16px;
  }

  .price-row {
    gap: 12px;
    min-height: 60px;
    padding: 13px 14px;
    text-align: left;
  }

  .price-row > span {
    font-size: 15px;
  }

  .price-row > span small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
  }

  .price-row > strong {
    min-width: 88px;
    font-size: 15px;
  }

  .price-table-footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .price-table-footer .btn {
    width: 100%;
  }
}
