:root {
  --bg: #090c09;
  --surface: #111711;
  --surface-soft: #0d120d;
  --ink: #f3f7f1;
  --ink-soft: #b5c0b2;
  --line: rgba(255, 255, 255, 0.1);

  --brand: #1476ed;
  --brand-dark: #0757ba;
  --brand-soft: #dcecff;
  --cyan: #73d9ff;

  --dark: #07111f;
  --dark-2: #0b1c30;

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;

  --shadow-sm: 0 14px 36px rgba(7, 17, 31, 0.08);
  --shadow-lg: 0 32px 90px rgba(7, 17, 31, 0.16);

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  display: block;
}

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

h1,
h2,
h3,
.brand-name {
  font-family: "Manrope", system-ui, sans-serif;
}

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

.page-shell {
  overflow: hidden;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(3, 10, 20, 0.14);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
}

.brand-symbol svg {
  width: 23px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.7;
  stroke-linecap: round;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-note {
  margin-top: 4px;
  font-size: 0.68rem;
  color: #92a2b7;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  color: #c5d0df;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: white;
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: white;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.header-cta:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.header-cta svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* HERO */

.hero {
  position: relative;
  min-height: 710px;
  display: grid;
  align-items: center;
  padding: 118px 0 58px;
  color: white;
  background:
    radial-gradient(circle at 72% 10%, rgba(18,118,237,0.15), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0a1b2f 60%, #0a2744 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,211,255,0.22), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-glow-one {
  width: 380px;
  height: 380px;
  right: 6%;
  top: 10%;
  background: rgba(20,118,237,0.13);
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  left: 4%;
  bottom: 0;
  background: rgba(115,217,255,0.06);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 76px;
}

.location-pill {
  width: fit-content;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #b9c7d8;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  font-size: 0.78rem;
}

.location-pill strong {
  color: white;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(32,200,115,0.12);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(3.45rem, 5.7vw, 5.35rem);
  line-height: 1.04;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--cyan);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: #b6c3d4;
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.22s ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: white;
  background: var(--brand);
  box-shadow: 0 18px 40px rgba(20,118,237,0.24);
}

.button-primary:hover {
  background: #2584f4;
  box-shadow: 0 22px 48px rgba(20,118,237,0.32);
}

.button-light {
  color: var(--dark);
  background: white;
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
}

.text-link {
  color: #d7e2ef;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.text-link span {
  color: var(--cyan);
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 590px;
}

.trust-strip div {
  display: grid;
  gap: 4px;
}

.trust-strip strong {
  font-size: 0.79rem;
}

.trust-strip span {
  color: #8394aa;
  font-size: 0.72rem;
}

.trust-strip i {
  width: 1px;
  height: 35px;
  background: rgba(255,255,255,0.13);
}

.hero-media {
  position: relative;
  min-width: 0;
}

.image-frame {
  position: relative;
  min-height: 525px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.1);
  transform: rotate(1deg);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  border-radius: inherit;
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 525px;
  object-fit: cover;
  object-position: 62% center;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.hero-media:hover .image-frame img {
  transform: scale(1.025);
}

.image-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,12,22,0.05), rgba(4,12,22,0.55)),
    linear-gradient(90deg, transparent 55%, rgba(4,12,22,0.12));
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(8,24,43,0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.floating-card-top {
  top: 26px;
  right: 26px;
  padding: 16px 18px;
  border-radius: 18px;
  display: grid;
  gap: 4px;
}

.mini-label {
  color: var(--cyan);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.floating-card-top strong {
  font-size: 0.84rem;
}

.floating-card-bottom {
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.quote-mark {
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: 2.6rem;
  line-height: 0.85;
}

.floating-card-bottom div {
  display: grid;
  gap: 4px;
}

.floating-card-bottom strong {
  font-size: 0.9rem;
}

.floating-card-bottom span:last-child {
  color: #b8c6d8;
  font-size: 0.76rem;
  line-height: 1.45;
}

.media-index {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: #8fa0b5;
}

.media-index span {
  color: var(--cyan);
  font-size: 0.69rem;
  font-weight: 800;
}

.media-index div {
  height: 1px;
  background: rgba(255,255,255,0.13);
}

.media-index small {
  font-size: 0.68rem;
}

/* SHARED */

.section {
  padding: 112px 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.section-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.section-head h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.section-head > p {
  margin: 0;
  max-width: 470px;
  color: var(--ink-soft);
  line-height: 1.72;
}

/* SERVICES */

.services-section {
  --bg: #151b15;
  --surface: #1b241b;
  --dark: #020402;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  grid-column: span 4;
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.service-card:nth-child(1) {
  grid-column: span 5;
  background:
    radial-gradient(circle at 100% 0%, rgba(115,217,255,0.22), transparent 38%),
    var(--dark);
  color: white;
  border-color: color-mix(in srgb, var(--cyan) 32%, transparent);
}

.service-card:nth-child(2) {
  grid-column: span 7;
}

.service-card:nth-child(n+4) {
  min-height: 235px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in srgb, var(--cyan) 36%, transparent);
}

.service-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Manrope";
  font-size: 0.72rem;
  font-weight: 800;
  color: #8090a3;
}

.service-card:nth-child(1) .service-number {
  color: #8ea6c2;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
}

.service-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:nth-child(1) .service-icon {
  color: var(--cyan);
  background: rgba(115,217,255,0.09);
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.service-body p {
  margin: 0;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.62;
}

.service-card:nth-child(1) .service-body p {
  color: var(--ink-soft);
}

.service-footer {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.service-footer a {
  color: var(--ink);
  font-weight: 700;
}

/* ABOUT */

.about-section {
  background: var(--surface-soft);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 90px;
  align-items: start;
}

.about-copy {
  position: sticky;
  top: 120px;
}

.about-copy h2 {
  margin-bottom: 26px;
}

.about-copy > p {
  color: var(--ink-soft);
  line-height: 1.82;
  max-width: 560px;
}

.inline-cta {
  margin-top: 16px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.inline-cta span {
  color: var(--brand);
}

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

.principles article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.principles article > span {
  color: var(--brand);
  font-family: "Manrope";
  font-size: 0.72rem;
  font-weight: 800;
}

.principles h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.principles p {
  margin: 0;
  max-width: 540px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* PREVIEW */

.preview-section {
  padding: 28px 0 105px;
  background: var(--surface-soft);
}

.preview-panel {
  position: relative;
  min-height: 330px;
  padding: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(115,217,255,0.16), transparent 26%),
    var(--dark);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.preview-panel::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: -190px;
  border: 1px solid rgba(115,217,255,0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(115,217,255,0.025),
    0 0 0 84px rgba(115,217,255,0.018);
}

.preview-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.preview-copy .section-kicker {
  color: var(--cyan);
}

.preview-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.preview-copy p {
  margin-bottom: 0;
  color: #aebdd0;
  line-height: 1.7;
}

.preview-panel .button {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

/* FINAL CTA */

.cta-section {
  padding: 86px 0;
  background: var(--bg);
}

.cta-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 68px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 92% 30%, rgba(115,217,255,0.12), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b2848 100%);
}

.cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8c7d8;
  font-size: 0.75rem;
}

.cta-panel h2 {
  margin: 72px 0 18px;
  max-width: 790px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.cta-panel h2 span {
  color: var(--cyan);
}

.cta-panel p {
  max-width: 520px;
  color: #aebdd0;
  line-height: 1.7;
}

.cta-panel .button {
  margin-top: 16px;
}

.cta-orbit {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -140px;
  top: 20px;
  border: 1px solid rgba(115,217,255,0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(115,217,255,0.025),
    0 0 0 110px rgba(115,217,255,0.018);
}

/* CONTACT */

.contact-section {
  background: var(--surface-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.contact-copy p {
  margin-top: 24px;
  color: var(--ink-soft);
  max-width: 410px;
  line-height: 1.7;
}

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

.contact-list > * {
  min-height: 98px;
  display: grid;
  grid-template-columns: 0.8fr 1.3fr auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.contact-list strong {
  font-family: "Manrope";
  font-size: 1.02rem;
}

.contact-list b {
  color: var(--brand);
}

/* FOOTER */

.footer {
  padding: 50px 0;
  background: var(--dark);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 40px;
}

.brand-footer {
  width: fit-content;
}

.footer p {
  margin: 0;
  max-width: 390px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer small {
  color: #9aa694;
  font-size: 0.7rem;
  text-align: right;
}

/* FLOATING WHATSAPP */

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #10140f;
  background: var(--cyan);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--cyan) 24%, transparent);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 42px color-mix(in srgb, var(--cyan) 34%, transparent);
}

.floating-whatsapp svg {
  width: 28px;
  fill: currentColor;
}

/* PREVIEW / FINAL */

body.preview-mode .final-only {
  display: none !important;
}

body.final-mode .preview-only {
  display: none !important;
}

/* PREVIEW-SPECIFIC SERVICE COMPOSITION */
body.preview-mode .service-card:nth-child(1),
body.preview-mode .service-card:nth-child(2) {
  grid-column: span 6;
  min-height: 255px;
}

body.preview-mode .service-card:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 205px;
}

body.preview-mode .service-card:nth-child(3) .service-body {
  max-width: 680px;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.72s cubic-bezier(.2,.7,.2,1),
    transform 0.72s cubic-bezier(.2,.7,.2,1);
}

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

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 112px 0 54px;
  }

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

  .hero-content {
    max-width: 760px;
  }

  .image-frame,
  .image-frame img {
    min-height: 540px;
  }

  .section-head,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-copy {
    position: static;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    grid-column: span 6;
  }

  .preview-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer small {
    text-align: left;
  }
}

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

  .nav-wrap {
    height: 76px;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .brand-note {
    font-size: 0.6rem;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    gap: 8px;
    font-size: 0.78rem;
  }

  .header-cta svg {
    width: 15px;
  }

  .hero {
    padding: 102px 0 52px;
  }

  .location-pill {
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.65rem);
  }

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

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

  .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .trust-strip {
    gap: 16px;
  }

  .trust-strip i {
    height: 46px;
  }

  .trust-strip span {
    font-size: 0.68rem;
  }

  .image-frame,
  .image-frame img {
    min-height: 460px;
  }

  .image-frame {
    border-radius: 26px;
    transform: none;
  }

  .floating-card-top {
    top: 16px;
    right: 16px;
  }

  .floating-card-bottom {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .section {
    padding: 82px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 2.55rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(n+4) {
    grid-column: auto;
    min-height: 245px;
  }

  body.preview-mode .service-card:nth-child(1),
  body.preview-mode .service-card:nth-child(2),
  body.preview-mode .service-card:nth-child(3) {
    grid-column: auto;
    min-height: 230px;
  }

  .service-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .preview-section {
    padding-bottom: 82px;
  }

  .preview-panel {
    min-height: auto;
    padding: 34px 26px;
    border-radius: 28px;
  }

  .preview-copy h2 {
    font-size: 2.45rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-panel {
    min-height: 470px;
    padding: 36px 26px;
    border-radius: 28px;
  }

  .cta-panel h2 {
    margin-top: 64px;
    font-size: 3.05rem;
  }

  .contact-list > * {
    grid-template-columns: 0.7fr 1.3fr auto;
    gap: 12px;
  }

  .contact-list strong {
    font-size: 0.88rem;
  }

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

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip i {
    width: 100%;
    height: 1px;
  }

  .image-frame,
  .image-frame img {
    min-height: 400px;
  }

  .floating-card-bottom {
    grid-template-columns: 26px 1fr;
    padding: 17px;
  }

  .service-card {
    padding: 24px;
  }

  .principles article {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .contact-list > * {
    min-height: 90px;
    grid-template-columns: 1fr auto;
  }

  .contact-list > * > span {
    grid-column: 1 / -1;
    margin-bottom: -8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   V4 — PRODUCTION REFINEMENT
   ========================================================= */

.site-header .nav-wrap {
  height: 74px;
  transition: height .25s ease;
}

.site-header.is-scrolled .nav-wrap {
  height: 64px;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.brand-symbol svg { width: 21px; }
.brand-note { display: none; }

.header-cta {
  min-height: 42px;
  padding-inline: 16px;
  background: rgba(255,255,255,.035);
}

.hero {
  min-height: 640px;
  padding: 96px 0 48px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  gap: 60px;
}

.hero-content { padding-top: 8px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #96a8bd;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-eyebrow strong { color: #d9e5f2; }

.hero h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 4.6vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.headline-main,
.headline-accent {
  display: block;
}

.headline-accent {
  margin-top: 18px;
  color: var(--cyan);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions { margin-bottom: 28px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-proof span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: #93a6bb;
  background: rgba(255,255,255,.025);
  font-size: .68rem;
  font-weight: 700;
}

.image-frame {
  min-height: 475px;
  height: 475px;
  border-radius: 28px;
  transform: none;
}

.image-frame img {
  height: 100%;
  min-height: 0;
  object-position: 60% center;
}

.image-gradient {
  background:
    linear-gradient(180deg, rgba(4,12,22,.12), rgba(4,12,22,.48)),
    linear-gradient(90deg, rgba(4,12,22,.1), transparent 45%);
}

.media-topline {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.78);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.media-service-strip {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 82px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(5,18,33,.78);
  backdrop-filter: blur(14px);
}

.media-service-strip div { display: grid; gap: 5px; }
.media-service-strip small { color: var(--cyan); font-size: .58rem; font-weight: 800; letter-spacing: .13em; }
.media-service-strip strong { font-size: .8rem; color: #fff; }
.media-arrow { color: var(--cyan); font-size: 1.2rem; }

/* tighter section rhythm */
.section { padding: 86px 0; }
.section-head { margin-bottom: 38px; }
.section-head h2 { font-size: clamp(2.45rem, 3.6vw, 3.65rem); }

/* premium bento for preview: one large card + two stacked cards */
body.preview-mode .services-grid {
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(160px, auto));
  gap: 16px;
}

body.preview-mode .service-card:nth-child(1) {
  grid-column: 1 / span 5;
  grid-row: 1 / span 2;
  min-height: 390px;
}

body.preview-mode .service-card:nth-child(2) {
  grid-column: 6 / -1;
  grid-row: 1;
  min-height: 187px;
}

body.preview-mode .service-card:nth-child(3) {
  grid-column: 6 / -1;
  grid-row: 2;
  min-height: 187px;
}

body.preview-mode .service-card:nth-child(2),
body.preview-mode .service-card:nth-child(3) {
  flex-direction: row;
  align-items: flex-end;
  gap: 30px;
}

body.preview-mode .service-card:nth-child(2) .service-number,
body.preview-mode .service-card:nth-child(3) .service-number {
  align-self: stretch;
  min-width: 92px;
  flex-direction: column;
  align-items: flex-start;
}

body.preview-mode .service-card:nth-child(2) .service-body,
body.preview-mode .service-card:nth-child(3) .service-body {
  max-width: 580px;
}

.about-section { padding: 82px 0; }
.about-layout { gap: 72px; }
.about-copy h2 { font-size: clamp(2.5rem, 3.8vw, 3.8rem); }
.principles article { padding: 28px 0; }

.preview-section { padding: 12px 0 78px; }
.preview-panel {
  min-height: 285px;
  padding: 42px 46px;
  border-radius: 30px;
}
.preview-copy h2 { font-size: clamp(2.25rem, 3.7vw, 3.45rem); }

.floating-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.96);
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  .hero { min-height: auto; padding: 100px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-content { max-width: 760px; }
  .image-frame { height: 500px; min-height: 500px; }

  body.preview-mode .services-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  body.preview-mode .service-card:nth-child(1),
  body.preview-mode .service-card:nth-child(2),
  body.preview-mode .service-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
  }
  body.preview-mode .service-card:nth-child(3) { grid-column: 1 / -1; }
  body.preview-mode .service-card:nth-child(2),
  body.preview-mode .service-card:nth-child(3) { flex-direction: column; align-items: stretch; }
  body.preview-mode .service-card:nth-child(2) .service-number,
  body.preview-mode .service-card:nth-child(3) .service-number {
    align-self: auto;
    min-width: 0;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .site-header .nav-wrap { height: 68px; }
  .site-header.is-scrolled .nav-wrap { height: 60px; }
  .hero { padding: 92px 0 44px; }
  .hero-grid { gap: 34px; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(2.85rem, 13vw, 3.7rem); margin-bottom: 18px; }
  .hero-lead { margin-bottom: 24px; }
  .hero-actions { margin-bottom: 22px; }
  .hero-proof { gap: 7px; }
  .hero-proof span { padding: 7px 9px; }
  .image-frame { height: 390px; min-height: 390px; border-radius: 24px; }
  .media-service-strip { left: 12px; right: 12px; bottom: 12px; }

  .section { padding: 68px 0; }
  body.preview-mode .services-grid { grid-template-columns: 1fr; }
  body.preview-mode .service-card:nth-child(1),
  body.preview-mode .service-card:nth-child(2),
  body.preview-mode .service-card:nth-child(3) {
    grid-column: auto;
    min-height: 210px;
  }

  .preview-panel { padding: 30px 24px; }
  .preview-panel .button { width: 100%; }
}

@media (max-width: 430px) {
  .brand-name { font-size: .8rem; }
  .hero h1 { font-size: 3rem; }
  .image-frame { height: 340px; min-height: 340px; }
  .media-service-strip strong { font-size: .72rem; }
}


/* =========================================================
   V5 FINAL — HERO PHOTO TUNING
   ========================================================= */
.image-frame img {
  object-position: 58% 42%;
}

@media (max-width: 980px) {
  .image-frame img {
    object-position: 60% 40%;
  }
}

@media (max-width: 720px) {
  .image-frame img {
    object-position: 64% 38%;
  }
}


@media (max-width: 390px) {
  .brand {
    gap: 9px;
  }

  .brand-name {
    font-size: 0.8rem;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 0.74rem;
  }
}

/* No modo prévia mobile, os CTAs da própria página já são suficientes.
   Ocultamos o WhatsApp flutuante para evitar sobreposição visual. */
@media (max-width: 720px) {
  body.preview-mode .floating-whatsapp {
    display: none !important;
  }
}


/* AJUSTE FINAL DO HERO — DESKTOP */
@media (min-width: 901px) {
  .hero h1 {
    line-height: 1.02;
  }

  .headline-accent {
    margin-top: 8px;
  }
}

.headline-second-line {
  display: block;
  margin-top: 4px;
}

/* TEMA — ESTÉTICA AUTOMOTIVA */
:root {
  --bg: #090c09;
  --surface: #111711;
  --surface-soft: #0d120d;
  --ink: #f3f7f1;
  --ink-soft: #b5c0b2;
  --line: rgba(255, 255, 255, 0.1);
  --brand-soft: color-mix(in srgb, var(--brand) 16%, transparent);
  --dark: #080b08;
  --dark-2: #111710;
}

.site-header.is-scrolled {
  background: rgba(8, 11, 8, 0.9);
}

.hero {
  background:
    radial-gradient(circle at 78% 12%, rgba(167, 244, 50, 0.12), transparent 30%),
    linear-gradient(135deg, #070907 0%, #10160f 62%, #182413 100%);
}

.hero-glow-one { background: rgba(167, 244, 50, 0.11); }
.hero-glow-two { background: rgba(200, 255, 112, 0.045); }
.status-dot {
  background: var(--cyan);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--cyan) 12%, transparent);
}

.button-primary {
  color: #10140f;
  background: var(--brand);
  box-shadow: 0 18px 40px rgba(167, 244, 50, 0.18);
}

.button-primary:hover {
  color: #10140f;
  background: #b8ff4d;
  box-shadow: 0 22px 48px rgba(167, 244, 50, 0.26);
}

.image-frame {
  border-color: rgba(200, 255, 112, 0.18);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.42);
}

.image-frame img { object-position: 70% center; }

.service-card:nth-child(1) {
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 244, 50, 0.16), transparent 38%),
    var(--dark);
  border-color: color-mix(in srgb, var(--cyan) 32%, transparent);
}

.service-card:nth-child(1):hover {
  border-color: color-mix(in srgb, var(--cyan) 62%, transparent);
}

.service-card {
  background: var(--surface);
  border-color: var(--line);
}

.preview-panel {
  background:
    radial-gradient(circle at 90% 10%, rgba(167, 244, 50, 0.12), transparent 28%),
    var(--dark);
}

.cta-panel {
  background:
    radial-gradient(circle at 92% 30%, rgba(167, 244, 50, 0.1), transparent 30%),
    linear-gradient(135deg, #080b08 0%, #172315 100%);
}

.button-light { color: #10140f; background: var(--cyan); }
.floating-whatsapp { background: var(--cyan); }

.footer {
  background: #070907;
  border-top: 1px solid var(--line);
}

/* Vitrine pública: aviso discreto e legível no rodapé. */
.site-model-notice { margin: 20px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: #b5c0b2; font-size: .82rem; line-height: 1.6; text-align: center; }
[data-demo-address] { overflow-wrap: anywhere; }
