@font-face {
  font-family: "Britanica Expanded";
  src: url("./assets/fonts/Britanica-Expanded-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Britanica Expanded";
  src: url("./assets/fonts/Britanica-Expanded-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Britanica Expanded";
  src: url("./assets/fonts/Britanica-Expanded-Heavy.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Britanica Expanded";
  src: url("./assets/fonts/Britanica-Expanded-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Transforma Script";
  src: url("./assets/fonts/TransformaScript-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {

    --font-title: "Britanica Expanded", Arial, sans-serif;
    --font-text: "Manrope", Arial, sans-serif;

    /* CORES */
    --bg: #070707;
    --bg-soft: #0d0d0f;
    --panel: #111114;
    --panel-2: #16161a;

    --text: #f7f5f7;
    --muted: #aaa7b0;
    --line: rgba(255,255,255,.10);

    --purple: #551679;
    --pink: #E94E9D;
    --yellow: #F1E81C;

    /* GRADIENTES */
    --gradient: linear-gradient(
        90deg,
        var(--purple) 0%,
        var(--pink) 52%,
        var(--yellow) 100%
    );

    /* MEDIDAS */
    --radius-sm:14px;
    --radius:24px;
    --radius-lg:38px;

    --max:1220px;

    /* SOMBRAS */
    --shadow:0 24px 70px rgba(0,0,0,.36);

}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 18%, rgba(233,78,157,.09), transparent 28%),
    radial-gradient(circle at 12% 58%, rgba(85,22,121,.12), transparent 34%),
    var(--bg);
  font-family: var(--font-text);
  font-weight: 500;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

::selection { background: var(--pink); color: #fff; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-tight { padding: 72px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .16em;
  font-weight: 700; color: #d8d4dc;
}
.eyebrow::before {
  content:""; width: 28px; height: 2px; background: var(--gradient); border-radius: 2px;
}
.display {
  margin: 18px 0 22px;
  font-family: "Britanica Expanded", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 6.4vw, 7.3rem);
  line-height: .93;
  letter-spacing: -.02em;
  max-width: 1100px;
}
.h2 {
  margin: 14px 0 18px;
  font-family: "Britanica Expanded", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.3vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.01em;
}
.h3 {
  font-family: "Britanica Expanded", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  font-weight: 700;
  color: var(--muted);
  max-width: 720px;
}
.muted { color: var(--muted); }
.gradient-text {
  background: var(--gradient); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.font-regular {
  font-weight: 400;
}
.font-bold {
  font-weight: 700;
}
.font-heavy {
  font-weight: 800;
}
.font-black {
  font-weight: 900;
}
.script-text {
  font-family: "Transforma Script", cursive;
  font-weight: 500;
}
.text-purple {
  color: var(--purple);
}
.text-pink {
  color: var(--pink);
}
.text-yellow {
  color: var(--yellow);
}
.text-white {
  color: var(--text);
}
.kicker { color: var(--pink); font-weight: 700; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  min-height: 52px; padding: 0 22px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: #090909; border: 0; background: var(--gradient); }
.btn-secondary { background: rgba(255,255,255,.03); }
.btn-secondary:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.btn-icon { font-size: 1.1rem; }

.site-header {
  position: fixed; top: 14px; left: 0; width: 100%; z-index: 1000;
  transition: top .25s ease;
}
.nav-shell {
  width: min(calc(100% - 28px), 1180px); margin: auto;
  min-height: 66px; padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(8,8,9,.72); backdrop-filter: blur(20px);
  border-radius: 999px; display:flex; align-items:center; justify-content:space-between;
  box-shadow: 0 12px 50px rgba(0,0,0,.25);
}
.logo img { width: 105px; height: auto; }
.nav-links { display:flex; align-items:center; gap: 28px; font-size: .93rem; color:#d7d4da; }
.nav-links a:hover { color: #fff; }
.nav-cta { min-height: 44px; padding-inline: 19px; }
.menu-toggle { display:none; background:none; color:#fff; border:0; font-size:1.5rem; width:44px; height:44px; }

.hero {
  min-height: auto;
  padding: 158px 0 70px;
  display: flex;
  align-items: center;
}
.hero-grid { display:grid; grid-template-columns: 1.07fr .93fr; align-items:center; gap: 42px; }
.hero-copy .lead{
    width:100%;
    max-width:580px;
}
.hero-meta { margin-top: 34px; display:flex; flex-wrap:wrap; gap: 18px 30px; color:#c6c2ca; font-size:.9rem; }
.hero-meta span { display:flex; align-items:center; gap:9px; }
.hero-meta i { width:7px; height:7px; border-radius:50%; background:var(--yellow); box-shadow:0 0 16px var(--yellow); }

.hero-visual { position:relative; min-height: 610px; }
.browser {
  position:absolute; overflow:hidden; border:1px solid rgba(255,255,255,.13);
  border-radius: 22px; background:#111; box-shadow: var(--shadow);
}
.browser::before {
  content:""; display:block; height:28px; border-bottom:1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 16px 14px,#ff5d55 0 3px,transparent 4px),
    radial-gradient(circle at 28px 14px,#ffbd2e 0 3px,transparent 4px),
    radial-gradient(circle at 40px 14px,#28c840 0 3px,transparent 4px),
    #18181c;
}
.browser-main { inset: 34px 0 70px 44px; transform: rotate(-2.4deg); }
.browser-side { width:58%; right:0; bottom:10px; transform:rotate(5deg); z-index:2; }
.site-preview {
  height:100%; min-height:420px; padding:42px 34px;
  background:
    radial-gradient(circle at 78% 18%, rgba(241,232,28,.3), transparent 19%),
    radial-gradient(circle at 20% 65%, rgba(233,78,157,.36), transparent 28%),
    linear-gradient(145deg,#130f18,#0b0b0d 60%,#201025);
}
.preview-label { color:#aaa; font-size:.72rem; text-transform:uppercase; letter-spacing:.16em; }
.preview-title { font-family:"Britanica Expanded"; font-size:clamp(2rem,4vw,4.4rem); line-height:.88; margin:25px 0; letter-spacing:-.06em; }
.preview-pill { display:inline-block; background:#fff; color:#111; border-radius:999px; padding:10px 14px; font-size:.75rem; font-weight:700; }
.browser-side .site-preview { min-height:310px; background:linear-gradient(145deg,#551679,#e94e9d 64%,#f1e81c); color:#070707; }
.browser-side .preview-title { font-size:2.25rem; max-width:320px; }
.orbit {
  position:absolute; inset:0; pointer-events:none;
  border:1px solid rgba(255,255,255,.08); border-radius:50%; transform:scale(.94);
}
.float-tag {
  position:absolute; z-index:4; padding:12px 16px; border-radius:999px;
  background:rgba(20,20,24,.88); border:1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(12px); font-size:.82rem; box-shadow:var(--shadow);
}
.tag-a { top:45px; right:2px; }
.tag-b { left:6px; bottom:70px; }
.scroll-hint { position:absolute; left:50%; bottom:26px; transform:translateX(-50%); font-size:.77rem; color:#888; letter-spacing:.13em; text-transform:uppercase; }

.trust-strip { border-block:1px solid var(--line); background:rgba(255,255,255,.015); overflow:hidden; }
.marquee { display:flex; width:max-content; animation:marquee 26s linear infinite; }
.marquee span { padding:18px 34px; color:#aaa; text-transform:uppercase; letter-spacing:.13em; font-size:.76rem; }
.marquee b { color:var(--pink); padding-right:12px; }
@keyframes marquee { to { transform:translateX(-50%); } }

.split-head { display:grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items:end; margin-bottom:52px; }
.split-head .lead { justify-self:end; }

.feature-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:18px; }
.feature-card {
  grid-column:span 4; min-height:300px; border:1px solid var(--line);
  border-radius:var(--radius); padding:28px; background:linear-gradient(155deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  position:relative; overflow:hidden; transition:.3s ease;
}
.feature-card:hover { transform:translateY(-6px); border-color:rgba(233,78,157,.4); }
.feature-card.large { grid-column:span 7; }
.feature-card.small { grid-column:span 5; }
.feature-num { color:var(--pink); font-weight:800; font-size:.84rem; }
.feature-card p { color:var(--muted); max-width:430px; }
.feature-icon {
  width:54px; height:54px; border-radius:18px; display:grid; place-items:center;
  background:var(--gradient); color:#090909; font-size:1.25rem; margin-bottom:50px;
}
.feature-card::after {
  content:""; position:absolute; width:180px; height:180px; border-radius:50%;
  background:var(--gradient); filter:blur(80px); opacity:.11; right:-70px; bottom:-90px;
}

.projects-stack { display:grid; gap:26px; }
.project {
  min-height:580px; border-radius:var(--radius-lg); overflow:hidden; position:relative;
  border:1px solid var(--line); background:#101014; display:grid; grid-template-columns:.83fr 1.17fr;
}
.project-copy { padding:48px; display:flex; flex-direction:column; justify-content:space-between; }
.project-tags { display:flex; flex-wrap:wrap; gap:8px; }
.tag { border:1px solid var(--line); border-radius:999px; padding:7px 11px; color:#c7c3cb; font-size:.74rem; }
.project-visual { min-height:100%; padding:54px; display:grid; place-items:center; position:relative; overflow:hidden; }
.project-visual.gradient-a { background:linear-gradient(135deg,#20102a,#551679 52%,#e94e9d); }
.project-visual.gradient-b { background:linear-gradient(135deg,#151515,#262626 55%,#a6a6a6); }
.project-visual.gradient-c { background:linear-gradient(135deg,#22180a,#b17b10 55%,#f1e81c); }
.project-screen {
  width:min(96%,620px); aspect-ratio:1.4; border-radius:18px; border:7px solid #17171a;
  box-shadow:0 35px 70px rgba(0,0,0,.45); background:#f5f2ef; transform:perspective(1000px) rotateY(-6deg) rotateX(3deg);
  overflow:hidden;
}
.project-screen .screen-top { height:24px; background:#17171a; }
.project-screen .screen-body { height:calc(100% - 24px); padding:32px; color:#111; }
.screen-logo { font-weight:800; font-size:.72rem; letter-spacing:.12em; }
.screen-head { font-family:"Britanica Expanded"; font-size:clamp(1.6rem,3vw,3rem); line-height:.9; letter-spacing:-.05em; max-width:380px; margin:38px 0 20px; }
.screen-bar { height:7px; border-radius:8px; background:#ddd; margin:9px 0; width:72%; }
.screen-bar.short { width:46%; }
.screen-button { display:inline-block; margin-top:22px; border-radius:999px; padding:9px 14px; background:#111; color:#fff; font-size:.66rem; }

.stats { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.stat { padding:26px; border-top:1px solid var(--line); }
.stat strong { display:block; font-family:"Britanica Expanded"; font-size:clamp(2rem,4vw,4rem); letter-spacing:-.05em; }
.stat span { color:var(--muted); font-size:.88rem; }

.process-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:start; }
.process-intro { position:sticky; top:120px; }
.timeline { border-left:1px solid var(--line); }
.step { position:relative; padding:0 0 56px 44px; }
.step::before { content:""; position:absolute; left:-6px; top:5px; width:11px; height:11px; border-radius:50%; background:var(--pink); box-shadow:0 0 0 7px rgba(233,78,157,.08); }
.step:last-child { padding-bottom:0; }
.step small { color:var(--pink); font-weight:800; }
.step p { color:var(--muted); max-width:580px; }

.benefit-board {
  border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden;
  display:grid; grid-template-columns:repeat(3,1fr);
}
.benefit { min-height:250px; padding:30px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.benefit:nth-child(3n){ border-right:0; }
.benefit:nth-last-child(-n+3){ border-bottom:0; }
.benefit strong { display:block; margin:50px 0 10px; font-size:1.12rem; }
.benefit p { color:var(--muted); margin:0; font-size:.93rem; }

.faq { max-width:900px; margin:auto; }
.faq-item { border-bottom:1px solid var(--line); }
.faq-button { width:100%; background:none; color:#fff; border:0; padding:24px 0; display:flex; justify-content:space-between; text-align:left; font-weight:700; font-size:1.06rem; }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease; color:var(--muted); }
.faq-answer p { padding:0 44px 24px 0; margin:0; }
.faq-item.open .faq-answer { max-height:300px; }
.faq-item.open .faq-button span:last-child { transform:rotate(45deg); }
/* Centraliza somente o cabeçalho da seção de FAQ */
.faq-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  max-width: 850px;
  margin: 0 auto 52px;
}

.cta-panel {
  padding:70px; border-radius:var(--radius-lg); background:
    radial-gradient(circle at 78% 20%,rgba(241,232,28,.35),transparent 26%),
    radial-gradient(circle at 18% 85%,rgba(85,22,121,.48),transparent 34%),
    linear-gradient(135deg,#171218,#0d0d0f);
  border:1px solid rgba(255,255,255,.12); overflow:hidden; position:relative;
}
.cta-panel .h2 { max-width:880px; }
.cta-panel::after { content:"LYTA"; position:absolute; right:-20px; bottom:-70px; font-family:"Britanica Expanded"; font-size:13rem; font-weight:800; opacity:.035; letter-spacing:-.09em; }

.footer { padding:58px 0 24px; border-top:1px solid var(--line); }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:36px; }
.footer h4 { margin:0 0 16px; }
.footer a { color:var(--muted); display:block; margin:10px 0; }
.footer a:hover { color:#fff; }
.footer-bottom { border-top:1px solid var(--line); margin-top:42px; padding-top:20px; display:flex; justify-content:space-between; color:#797680; font-size:.82rem; }

.page-hero { padding:190px 0 90px; }
.page-hero .display { max-width:1000px; font-size:clamp(3rem,7vw,7rem); }
.content-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:70px; }
.content-grid aside { position:sticky; top:120px; align-self:start; }
.prose { color:#c6c2ca; font-size:1.08rem; }
.prose h2, .prose h3 { color:#fff; font-family:"Britanica Expanded"; letter-spacing:-.03em; }
.prose h2 { font-size:2.4rem; margin-top:70px; }
.prose ul { padding-left:20px; }
.prose li { margin:10px 0; }

.service-list { display:grid; gap:18px; }
.service-row { padding:28px; border:1px solid var(--line); border-radius:var(--radius); display:grid; grid-template-columns:80px 1fr auto; align-items:center; gap:22px; background:rgba(255,255,255,.02); }
.service-row .num { color:var(--pink); font-weight:800; }
.service-row p { margin:4px 0 0; color:var(--muted); }
.service-row .arrow { font-size:1.3rem; }

.form-wrap { display:grid; grid-template-columns:.75fr 1.25fr; gap:50px; }
.form-card { padding:34px; border:1px solid var(--line); border-radius:var(--radius); background:var(--panel); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { display:flex; flex-direction:column; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-size:.82rem; color:#d4d0d8; }
.field input, .field select, .field textarea {
  width:100%; border:1px solid var(--line); color:#fff; background:#0b0b0d;
  border-radius:14px; padding:15px 16px;
}
.field textarea { min-height:135px; resize:vertical; }

.mobile-bar { display:none; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

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

@media (max-width: 980px) {
  .nav-links { display:none; }
  .menu-toggle { display:grid; place-items:center; }
  .nav-links.open {
    display:flex; position:fixed; inset:0; background:#09090b; flex-direction:column; justify-content:center;
    font-size:1.5rem; z-index:-1;
  }
  .hero-grid, .split-head, .process-grid, .content-grid, .form-wrap { grid-template-columns:1fr; }
  .hero { padding-top:140px; }
  .hero-visual { min-height:540px; }
  .split-head .lead { justify-self:start; }
  .feature-card, .feature-card.large, .feature-card.small { grid-column:span 6; }
  .project { grid-template-columns:1fr; }
  .project-copy { min-height:360px; }
  .project-visual { min-height:500px; }
  .stats { grid-template-columns:repeat(2,1fr); }
  .process-intro, .content-grid aside { position:static; }
  .benefit-board { grid-template-columns:repeat(2,1fr); }
  .benefit:nth-child(n) { border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
  .benefit:nth-child(2n) { border-right:0; }
  .benefit:nth-last-child(-n+2) { border-bottom:0; }
  .footer-grid { grid-template-columns:1.2fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column:1/-1; }
}

@media (max-width: 680px) {
  .container { width:min(calc(100% - 24px), var(--max)); }
  .section { padding:82px 0; }
  .site-header { top:8px; }
  .nav-shell { width:calc(100% - 16px); min-height:58px; padding-left:14px; }
  .logo img { width:88px; }
  .nav-cta { display:none; }
  .hero { padding-top:122px; min-height:auto; }
  .hero-grid { gap:20px; }
  .display { font-size:clamp(3.2rem,15vw,5.2rem); }
  .hero-visual { min-height:430px; margin-top:18px; }
  .browser-main { left:12px; right:14px; bottom:60px; }
  .browser-side { width:70%; bottom:0; }
  .site-preview { padding:28px 22px; }
  .float-tag { font-size:.68rem; padding:9px 12px; }
  .tag-a { top:18px; }
  .tag-b { bottom:42px; }
  .scroll-hint { display:none; }
  .feature-card, .feature-card.large, .feature-card.small { grid-column:1/-1; min-height:260px; }
  .project { min-height:0; border-radius:28px; }
  .project-copy { min-height:330px; padding:30px; }
  .project-visual { min-height:360px; padding:28px 18px; }
  .project-screen { transform:none; }
  .stats { grid-template-columns:1fr 1fr; }
  .stat { padding:18px 8px; }
  .benefit-board { grid-template-columns:1fr; }
  .benefit:nth-child(n) { border-right:0; border-bottom:1px solid var(--line); }
  .benefit:last-child { border-bottom:0; }
  .cta-panel { padding:38px 24px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:first-child { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; gap:10px; padding-bottom:72px; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .service-row { grid-template-columns:42px 1fr; }
  .service-row .arrow { display:none; }
  .mobile-bar {
    display:flex; position:fixed; left:10px; right:10px; bottom:10px; z-index:900;
    min-height:56px; border-radius:999px; background:var(--gradient); color:#080808;
    align-items:center; justify-content:center; font-weight:800; box-shadow:0 10px 40px rgba(0,0,0,.45);
  }
}


/* PORTFÓLIO VISUAL POR CATEGORIAS */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 34px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  color: #c9c5cd;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}
.filter-btn:hover,
.filter-btn.active {
  color: #080808;
  border-color: transparent;
  background: var(--gradient);
  transform: translateY(-2px);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.portfolio-item {
  grid-column: span 4;
  min-height: 430px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: #111114;
  transition: transform .35s ease, border-color .35s ease, opacity .3s ease;
}
.portfolio-item.wide { grid-column: span 8; }
.portfolio-item.tall { min-height: 620px; }
.portfolio-item:hover {
  transform: translateY(-7px);
  border-color: rgba(233,78,157,.45);
}
.portfolio-item.is-hidden { display: none; }
.portfolio-art {
  position: absolute;
  inset: 0;
  padding: 28px;
  overflow: hidden;
}
.portfolio-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9), transparent 58%);
}
.art-web {
  background:
    radial-gradient(circle at 80% 18%, rgba(241,232,28,.38), transparent 22%),
    radial-gradient(circle at 20% 80%, rgba(233,78,157,.34), transparent 30%),
    linear-gradient(145deg,#160f1d,#09090b 65%,#27132f);
}
.art-brand {
  background:
    radial-gradient(circle at 25% 24%, rgba(233,78,157,.45), transparent 24%),
    linear-gradient(135deg,#541679,#b92f82 58%,#f1e81c);
}
.art-social {
  background:
    radial-gradient(circle at 78% 20%, rgba(241,232,28,.35), transparent 24%),
    linear-gradient(145deg,#0d0d0f,#1c1c22 58%,#551679);
}
.mock-window {
  width: 88%;
  height: 68%;
  margin: 22px auto 0;
  border-radius: 18px;
  border: 6px solid #17171a;
  background: #f6f3ef;
  box-shadow: 0 28px 60px rgba(0,0,0,.4);
  transform: perspective(900px) rotateY(-7deg) rotateX(3deg);
  overflow: hidden;
}
.mock-window::before {
  content: "";
  display: block;
  height: 24px;
  background: #17171a;
}
.mock-window .mock-content {
  padding: 25px;
  color: #111;
}
.mock-kicker {
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
}
.mock-title {
  margin: 25px 0 18px;
  max-width: 330px;
  font-family: "Britanica Expanded";
  font-size: clamp(1.5rem, 2.7vw, 2.8rem);
  line-height: .9;
  letter-spacing: -.05em;
}
.mock-line {
  height: 7px;
  width: 70%;
  margin: 8px 0;
  border-radius: 99px;
  background: #d7d4d0;
}
.mock-line.short { width: 44%; }
.brand-shapes {
  position: absolute;
  inset: 28px;
}
.brand-shapes span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 20px 50px rgba(0,0,0,.23);
}
.brand-shapes span:nth-child(1) {
  width: 47%;
  aspect-ratio: 1;
  left: 4%;
  top: 10%;
  border-radius: 38% 62% 58% 42%;
  background: #f1e81c;
}
.brand-shapes span:nth-child(2) {
  width: 42%;
  aspect-ratio: .72;
  right: 5%;
  top: 8%;
  border-radius: 22px;
  background: #551679;
  transform: rotate(8deg);
}
.brand-shapes span:nth-child(3) {
  width: 54%;
  height: 26%;
  left: 21%;
  bottom: 15%;
  border-radius: 22px;
  background: #e94e9d;
  transform: rotate(-5deg);
}
.social-cards {
  position: absolute;
  inset: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-content: center;
}
.social-card {
  aspect-ratio: .8;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,.15);
  background:
    linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.025)),
    #17171d;
  padding: 18px;
  transform: rotate(-2deg);
}
.social-card:nth-child(2) {
  transform: rotate(3deg) translateY(20px);
  background: linear-gradient(150deg,#551679,#e94e9d);
}
.social-card strong {
  display: block;
  font-family: "Britanica Expanded";
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 55%;
}
.portfolio-info {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
}
.portfolio-info small {
  display: block;
  margin-bottom: 7px;
  color: #d0ccd4;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .68rem;
}
.portfolio-info h3 {
  margin: 0;
  font-family: "Britanica Expanded";
  font-size: clamp(1.25rem,2vw,1.8rem);
  line-height: 1.02;
}
.portfolio-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .portfolio-item,
  .portfolio-item.wide { grid-column: span 6; }
}
@media (max-width: 680px) {
  .portfolio-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .portfolio-filter::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; }
  .portfolio-item,
  .portfolio-item.wide {
    grid-column: 1 / -1;
    min-height: 440px;
  }
  .portfolio-item.tall { min-height: 520px; }
  .mock-window { width: 96%; }
}


/* ==========================================================================
   LANDING PAGE UNIFICADA — NOVOS COMPONENTES
   Estas regras complementam o CSS original do projeto.
   ========================================================================== */

/* Faz as âncoras não ficarem escondidas atrás do menu fixo. */
section[id] {
  scroll-margin-top: 100px;
}

/* Fonte geral da interface. */
body,
button,
input,
textarea,
select {
  font-family: "Britanica Expanded", Arial, sans-serif;
}

/* Peso dos principais níveis de título. */
.display { font-weight: 900; }
.h2 { font-weight: 800; }
.h3 { font-weight: 700; }

/* A hero não precisa mais ocupar obrigatoriamente 100% da tela.
   O último valor do padding controla a distância até a faixa animada. */
.hero {
  min-height: auto;
  padding: 150px 0 74px;
}

/* Evita sobreposição entre o texto e a composição visual. */
.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  gap: clamp(44px, 6vw, 88px);
}

.hero-copy {
  min-width: 0;
}

.hero-copy .lead {
  max-width: 590px;
}

.hero-meta {
  margin-top: 28px;
}

/* Classes reutilizáveis para destacar palavras no HTML. */
.font-regular { font-weight: 400; }
.font-bold { font-weight: 700; }
.font-heavy { font-weight: 800; }
.font-black { font-weight: 900; }

.script-text {
  font-family: "Transforma Script", cursive;
  font-weight: 500;
}

.text-purple { color: var(--purple); }
.text-pink { color: var(--pink); }
.text-yellow { color: var(--yellow); }

/* Garante o gradiente em navegadores baseados em WebKit. */
.gradient-text,
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Seção com fundo levemente diferente para criar ritmo visual. */
.section-soft {
  background: rgba(255,255,255,.012);
  border-block: 1px solid var(--line);
}

/* =========================
   SOBRE
   ========================= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.13);
  background: #111114;
  box-shadow: var(--shadow);
}

.about-photo-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(85,22,121,.65), transparent 38%, rgba(241,232,28,.42));
  mix-blend-mode: screen;
  opacity: .55;
}

.about-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-sticker {
  position: absolute;
  right: -20px;
  bottom: 34px;
  z-index: 2;
  padding: 13px 18px;
  border-radius: 999px;
  color: #080808;
  background: var(--gradient);
  font-weight: 800;
  transform: rotate(-4deg);
  box-shadow: var(--shadow);
}

.about-copy .lead strong {
  color: #fff;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-points span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d5d1d9;
  background: rgba(255,255,255,.025);
  font-size: .82rem;
}

/* =========================
   SERVIÇOS
   ========================= */
.services-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 560px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -110px;
  border-radius: 50%;
  background: var(--gradient);
  filter: blur(88px);
  opacity: .12;
}

.service-card-featured {
  border-color: rgba(233,78,157,.38);
  background:
    radial-gradient(circle at 85% 15%, rgba(241,232,28,.12), transparent 24%),
    linear-gradient(155deg, rgba(85,22,121,.24), rgba(255,255,255,.018));
}

.service-index {
  color: var(--pink);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-card .feature-icon {
  margin: 46px 0 24px;
}

.service-card p {
  color: var(--muted);
}

.clean-list {
  list-style: none;
  margin: 20px 0 30px;
  padding: 0;
  color: #d5d1d9;
}

.clean-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.clean-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--yellow);
}

.text-link {
  margin-top: auto;
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 800;
}

/* =========================
   DEPOIMENTOS
   ========================= */
.testimonials-section {
  background:
    radial-gradient(circle at 15% 30%, rgba(85,22,121,.13), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(233,78,157,.09), transparent 28%);
}

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

/* Área abaixo dos depoimentos */
.testimonial-cta {
  margin-top: 36px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 28px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: rgba(255,255,255,.025);

  text-align: center;
}

/* Texto acima do botão */
.testimonial-cta p {
  margin: 0;
  max-width: 520px;

  color: var(--muted);
  font-size: .95rem;
  text-align: center;
}

/* Mantém o botão no tamanho do conteúdo */
.testimonial-cta .btn {
  width: auto;
}

.testimonial-card {
  grid-column: span 4;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.025);
  display: flex;
  flex-direction: column;
}

.testimonial-featured {
  grid-column: span 8;
  min-height: 430px;
  padding: clamp(30px, 5vw, 56px);
  background:
    radial-gradient(circle at 90% 15%, rgba(241,232,28,.13), transparent 25%),
    linear-gradient(145deg, rgba(85,22,121,.28), rgba(255,255,255,.025));
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

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

.verified {
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.testimonial-card blockquote {
  margin: 42px 0 34px;
  color: #f6f3f7;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.52;
}

.testimonial-featured blockquote {
  max-width: 850px;
  font-size: clamp(1.45rem, 2.3vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -.035em;
}

.testimonial-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-meta strong {
  font-size: .92rem;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: .78rem;
}

/* =========================
   PREÇOS
   ========================= */
.pricing-section {
  background: rgba(255,255,255,.012);
  border-block: 1px solid var(--line);
}

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

.pricing-card {
  position: relative;
  min-height: 760px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101013;
  display: flex;
  flex-direction: column;
}

.pricing-featured {
  border-color: rgba(233,78,157,.55);
  box-shadow: 0 22px 80px rgba(85,22,121,.18);
  transform: translateY(-14px);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #080808;
  background: var(--gradient);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pricing-category {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  font-weight: 800;
}

.pricing-title {
  min-height: 86px;
  margin: 22px 0;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1;
}

.price {
  padding: 22px 0 26px;
  border-block: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.price small,
.price span {
  color: var(--muted);
}

.price strong {
  margin: 7px 0;
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  line-height: 1;
}

.price-list {
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
}

.price-list li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: #d4d0d8;
  font-size: .87rem;
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.btn-full {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin-top: 28px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.025);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
}

.pricing-note span {
  color: var(--muted);
}

/* =========================
   CONTATO
   ========================= */
.contact-details {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* =========================
   CONTATO
   ========================= */

/*
  Cria duas colunas:
  texto à esquerda e formulário à direita.
*/
.form-wrap {
  display: grid;
  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(0, 1.18fr);
  gap: 64px;
  align-items: start;
}

/*
  Impede que textos ou campos largos
  ultrapassem a largura das colunas.
*/
.form-wrap > * {
  min-width: 0;
}

/*
  Limita a largura do texto da esquerda.
*/
.contact-copy {
  max-width: 520px;
}

/*
  Espaçamento do texto complementar.
*/
.contact-text {
  margin-top: 30px;
}

.contact-text p {
  margin: 0 0 18px;

  color: var(--muted);

  font-size: 0.96rem;
  line-height: 1.7;
}

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

/*
  Mantém o formulário dentro de um card.
*/
.form-card {
  padding: 34px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--panel);
}

/*
  Organiza os campos em duas colunas.
*/
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/*
  Cada field organiza label e campo.
*/
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/*
  Faz o campo ocupar as duas colunas.
*/
.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #d4d0d8;

  font-size: 0.82rem;
  font-weight: 700;
}

/*
  Estilo dos campos.
*/
.field input,
.field select,
.field textarea {
  width: 100%;

  padding: 15px 16px;

  border: 1px solid var(--line);
  border-radius: 14px;

  color: #fff;
  background: #0b0b0d;
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}
/* =========================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   position: fixed mantém o botão visível durante a rolagem.
========================================================= */

.whatsapp-float {
  position: fixed;

  /* Distância da direita e da parte inferior da tela */
  right: 24px;
  bottom: 24px;

  z-index: 1100;

  min-height: 58px;
  padding: 8px 18px 8px 8px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border-radius: 999px;

  color: #080808;
  background: var(--gradient);

  font-family: "Britanica Expanded", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;

  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.38);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5);
}

.whatsapp-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #fff;
  background: #25d366;

  font-family: Arial, sans-serif;
  font-size: 1.25rem;
}

/* =========================
   RESPONSIVIDADE
   ========================= */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 38px;
  }

  .services-showcase,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child,
  .pricing-card:last-child {
    grid-column: 1 / -1;
  }

  .pricing-featured {
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero {
    padding: 135px 0 58px;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .about-photo {
    max-width: 620px;
  }

  .testimonial-card,
  .testimonial-featured {
    grid-column: span 6;
  }
}

@media (max-width: 680px) {

  .whatsapp-float {
  right: 14px;
  bottom: 82px;

  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 7px;

  justify-content: center;
}

.whatsapp-label {
  display: none;
}

.whatsapp-icon {
  width: 42px;
  height: 42px;
}
  .hero {
    padding: 116px 0 44px;
  }

  .display {
    font-size: clamp(2.75rem, 13.5vw, 4.5rem);
    letter-spacing: -.055em;
  }

  .hero-visual {
    min-height: 430px;
  }

  .about-sticker {
    right: 10px;
    bottom: 20px;
    font-size: .75rem;
  }

  .services-showcase,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .pricing-card {
    min-height: auto;
  }

  .service-card:last-child,
  .pricing-card:last-child {
    grid-column: auto;
  }

  .testimonial-card,
  .testimonial-featured {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .testimonial-featured blockquote {
    font-size: 1.45rem;
  }

  .pricing-note {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    padding-bottom: 18px;
  }
}


/* =========================================================
   AJUSTES FINAIS — TIPOGRAFIA, HERO, SEÇÕES E PORTFÓLIO
========================================================= */

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-title: "Britanica Expanded", Arial, sans-serif;
  --font-text: "Manrope", Arial, sans-serif;
}

body,
p,
li,
label,
input,
select,
textarea,
blockquote,
.lead,
.faq-answer,
.footer-description {
  font-family: var(--font-text);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display,
.h1,
.h2,
.h3,
.eyebrow,
.pricing-price,
.price strong {
  font-family: var(--font-title);
}

.btn,
button,
.text-link,
.pricing-card a,
.whatsapp-float,
.faq-button {
  font-family: var(--font-text);
  font-weight: 500;
}

/* Títulos dos diferenciais permanecem Britanica Bold. */
.benefit strong {
  font-family: var(--font-title);
  font-weight: 700;
}

/* Texto específico acima do botão de avaliações. */
.testimonial-cta p {
  font-family: var(--font-title);
  font-weight: 700;
}

/* Todo destaque em degradê usa Transforma Script. */
.gradient-text,
.text-gradient {
  font-family: "Transforma Script", cursive;
  font-weight: 500;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Hero mais compacta para apresentar a proposta na primeira dobra. */
.hero {
  min-height: 100svh;
  padding: 112px 0 42px;
  display: flex;
  align-items: center;
}

.hero .display {
  font-size: clamp(3.6rem, 6.1vw, 6.7rem);
  line-height: .91;
  letter-spacing: -.045em;
  max-width: 920px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.hero-copy .display,
.hero-copy .lead,
.hero-copy .btn-row,
.hero-copy .hero-meta {
  margin-top: 0;
  margin-bottom: 0;
}

.hero .gradient-text {
  display: inline;
  font-size: .9em;
  line-height: .92;
}

@media (min-width: 981px) and (max-height: 800px) {
  .hero { padding-top: 96px; padding-bottom: 30px; }
  .hero .display { font-size: clamp(3.25rem, 5.5vw, 5.75rem); }
  .hero-copy { gap: 13px; }
  .hero-copy .lead { font-size: .96rem; line-height: 1.5; }
  .hero-visual { transform: scale(.92); transform-origin: center right; }
}

/* Reduz a transição entre Sobre e Serviços. */
.about-section { padding-bottom: 58px; }
#servicos { padding-top: 58px; }

/* Cabeçalhos centralizados e sem coluna lateral. */
.portfolio-heading,
.testimonials-heading,
.pricing-heading,
.faq-heading {
  max-width: 920px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.portfolio-heading .h2,
.testimonials-heading .h2,
.pricing-heading .h2,
.faq-heading .h2 {
  max-width: 860px;
  margin-inline: auto;
}

/* Portfólio editável: três imagens por linha. */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  grid-auto-flow: dense;
}

.portfolio-item,
.portfolio-item.wide,
.portfolio-item.tall,
.project-card {
  grid-column: span 1;
  grid-row: span 1;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.025);
}

.project-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.project-info {
  padding: 20px 22px 24px;
}

.project-category {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-text);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
}

/* Rodapé distribuído sem coluna vazia. */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) minmax(150px, .65fr) minmax(180px, .65fr);
  column-gap: clamp(50px, 8vw, 130px);
  align-items: start;
  width: 100%;
  padding: 64px 0 28px;
}

.footer-grid > :nth-child(2) { justify-self: center; }
.footer-grid > :nth-child(3) { justify-self: end; }
.footer-description { max-width: 390px; line-height: 1.65; }

@media (max-width: 980px) {
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid {
    grid-template-columns: 1.2fr .7fr .7fr;
    column-gap: 36px;
  }
}

@media (max-width: 680px) {
  .hero { min-height: auto; padding: 108px 0 42px; }
  .hero .display { font-size: clamp(2.65rem, 12.5vw, 4.25rem); }
  .about-section { padding-bottom: 42px; }
  #servicos { padding-top: 42px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-heading,
  .testimonials-heading,
  .pricing-heading,
  .faq-heading { margin-bottom: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > :nth-child(2),
  .footer-grid > :nth-child(3) { justify-self: start; }
}


/* ==========================================================================
   AJUSTES FINAIS SOLICITADOS
   ========================================================================== */

/* Todos os botões e links com aparência de botão usam Manrope Medium. */
button,
.btn,
input[type="submit"],
input[type="button"],
a.button,
.text-link,
.pricing-link,
.filter-btn,
.faq-button,
.whatsapp-float {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
}

/* Mais distância entre o texto da hero e os botões. */
.hero-copy .btn-row,
.hero-actions {
  margin-top: 28px;
}

/* Os dois mockups da hero recebem imagens sem mudar a moldura, posição ou rotação. */
.browser .hero-project-image {
  width: 100%;
  height: calc(100% - 28px);
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Botões dos planos no mesmo padrão cápsula do botão de avaliações. */
.pricing-card .btn,
.pricing-card .pricing-link {
  width: fit-content;
  min-height: 48px;
  margin-top: auto;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: transparent;
  font-family: "Manrope", Arial, sans-serif;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.pricing-card .btn:hover,
.pricing-card .pricing-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.04);
}

/* Portfólio no formato visual anterior: cards variados e sobreposição de texto. */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 270px;
  gap: 16px;
}

.portfolio-item,
.portfolio-item.wide,
.portfolio-item.tall,
.project-card,
.project-card.project-wide,
.project-card.project-tall {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #101014;
}

.project-card.project-wide {
  grid-column: span 8;
}

.project-card.project-tall {
  grid-column: span 4;
  grid-row: span 3;
}

.project-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,.9) 0%, rgba(5,5,8,.18) 42%, transparent 70%);
  pointer-events: none;
}

.portfolio-item:hover .project-cover {
  transform: scale(1.025);
}

.portfolio-info.project-info {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  padding: 0;
}

/* CTA final centralizado. */
.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta-content .eyebrow {
  justify-content: center;
}

.final-cta-content .h2 {
  max-width: 920px;
  margin: 22px auto 0;
}

.final-cta-content .lead {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
}

.final-cta-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Espaço interno para a seta dos selects. */
.field select {
  padding: 15px 48px 15px 16px;
  background-position: right 18px center;
  background-repeat: no-repeat;
}

@media (max-width: 980px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .portfolio-item,
  .project-card,
  .project-card.project-wide,
  .project-card.project-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 680px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .portfolio-item,
  .project-card,
  .project-card.project-wide,
  .project-card.project-tall {
    grid-column: 1;
    grid-row: auto;
    min-height: 440px;
  }

  .final-cta-content .h2 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-cta-actions .btn {
    width: 100%;
    max-width: 340px;
  }
}

/* ========================================================================== 
   CORREÇÕES — SETAS DO FORMULÁRIO, BOTÕES DE INVESTIMENTO E SOLUÇÕES
   ========================================================================== */

/* Seta personalizada com distância real da lateral direita. */
.field select {
  -webkit-appearance: none;
  appearance: none;
  padding: 15px 52px 15px 16px;
  background-color: #0b0b0d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.25 6 6.25 11 1.25' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 8px;
}

/* INVESTIMENTO: restaura os botões largos originais dos cards. */
.pricing-card .btn,
.pricing-card .pricing-link {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  padding: 0 22px;
  align-self: stretch;
  border-radius: 999px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: .92rem;
  font-weight: 500;
}

.pricing-card .btn-primary {
  color: #090909;
  border: 0;
  background: var(--gradient);
}

.pricing-card .btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.pricing-card .btn-primary:hover {
  transform: translateY(-3px);
  border-color: transparent;
  background: var(--gradient);
}

.pricing-card .btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
}

/* SOLUÇÕES: aplica o formato cápsula aos links dos três cards. */
.service-card .text-link {
  width: fit-content;
  min-height: 48px;
  margin-top: auto;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.02);
  font-family: "Manrope", Arial, sans-serif;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card .text-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
}

/* ========================================================================== 
   AJUSTES FINAIS — JULHO 2026
   ========================================================================== */

/* Mais respiro entre o menu fixo e o conteúdo da hero. */
.hero {
  padding-top: 182px;
}

/* Quebras de linha e ritmo do título principal. */
.hero .display .gradient-text {
  display: inline-block;
  margin-top: 0.08em;
}

/* Seção Sobre: remove a moldura/retângulo de fundo e deixa somente a imagem. */
.about-photo-frame {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-photo-frame::before {
  display: none;
}

.about-photo-frame img {
  display: block;
  border-radius: 0;
}

/* Headings centralizados para as seções que não terão texto lateral. */
.centered-heading {
  max-width: 920px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.centered-heading .h2 {
  max-width: 860px;
  margin: 0 auto;
}

/* Destaque do subtítulo da seção Sobre em duas linhas. */
.about-copy .h2 .gradient-text {
  display: inline-block;
}

/* Diferenciais: destaque tipográfico e ícones nos cards. */
.differentials-heading .gradient-text {
  display: inline-block;
  margin-top: 0.08em;
}

.kicker-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: var(--pink);
  border: 1px solid rgba(233, 78, 157, 0.28);
  background: linear-gradient(145deg, rgba(85,22,121,.18), rgba(233,78,157,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.kicker-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.benefit strong {
  margin-top: 26px;
}

/* Ajuste do bloco de soluções centralizado. */
.services-heading .gradient-text {
  display: inline-block;
}

/* Responsivo */
@media (max-width: 980px) {
  .hero {
    padding-top: 164px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 132px;
  }

  .centered-heading {
    margin-bottom: 36px;
  }

  .about-photo-frame img {
    max-width: 100%;
  }
}

/* ========================================================================== 
   CORREÇÕES FINAIS — TEXTO SOBRE, FOTO E DIFERENCIAIS
   ========================================================================== */

/* Mantém as duas linhas do destaque da seção Sobre sem quebra interna. */
.about-highlight-line {
  display: inline-block;
  white-space: nowrap;
}

/* Exibe a imagem completa, sem cortar a lateral esquerda. */
.about-photo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

/* Diagramação mais harmônica na seção Diferenciais. */
.differentials-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
}

.differentials-regular,
.differentials-highlight {
  display: block;
}

.differentials-highlight {
  max-width: 100%;
  line-height: 0.95;
}

@media (max-width: 680px) {
  .about-highlight-line {
    white-space: normal;
  }
}

/* ========================================================================== 
   CORREÇÕES DEFINITIVAS — COMPATIBILIDADE, MOBILE E FORMULÁRIO
   ========================================================================== */

/* Evita estouro horizontal causado por grids, imagens ou textos longos. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.container,
.hero-grid,
.hero-copy,
.hero-visual,
.form-wrap,
.form-card,
.form-grid,
.field,
.nav-shell,
.nav-links {
  min-width: 0;
}

/* Degradê de texto com valores explícitos para não depender de variável no servidor. */
.gradient-text,
.text-gradient {
  display: inline-block;
  max-width: 100%;
  font-family: "Transforma Script", cursive;
  font-weight: 500;
  line-height: .98;
  color: #e94e9d;
  background-color: #e94e9d;
  background-image: linear-gradient(90deg, #551679 0%, #e94e9d 52%, #f1e81c 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Fallback: mantém o texto visível quando background-clip:text não for suportado. */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .gradient-text,
  .text-gradient {
    color: #e94e9d;
    background: none;
    -webkit-text-fill-color: currentColor;
  }
}

/* MENU MOBILE: overlay independente, legível e acima do conteúdo. */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header {
    z-index: 3000;
  }

  .nav-shell {
    position: relative;
    z-index: 3001;
  }

  .menu-toggle {
    position: relative;
    z-index: 3003;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    position: fixed;
    inset: 0;
    z-index: 3002;
    width: 100%;
    min-height: 100dvh;
    padding: 110px 28px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    background: rgba(7, 7, 7, .98);
    backdrop-filter: blur(18px);
  }

  .nav-links.open a {
    width: min(100%, 420px);
    padding: 15px 18px;
    display: block;
    color: #fff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(1.05rem, 5vw, 1.35rem);
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
}

/* HERO: dimensões previsíveis e sem compressão do texto. */
.hero-grid {
  width: 100%;
}

.hero-copy .display,
.hero-copy .lead {
  width: 100%;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 132px 0 58px;
    align-items: flex-start;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero .display {
    width: 100%;
    max-width: 780px;
    font-size: clamp(3.1rem, 9vw, 5.2rem);
    line-height: .94;
  }

  .hero-visual {
    width: 100%;
    min-height: 500px;
  }
}

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

  .hero {
    padding: 112px 0 44px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero .display,
  .display {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: .95;
    letter-spacing: -.04em;
    white-space: normal;
  }

  .hero .gradient-text,
  .hero .display .gradient-text {
    display: inline-block;
    width: auto;
    max-width: 100%;
    font-size: .92em;
    line-height: 1;
    white-space: normal;
  }

  .hero-copy .lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-copy .btn-row {
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy .btn-row .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-visual {
    min-height: 390px;
    margin-top: 0;
  }

  .browser-main {
    inset: 28px 10px 74px 10px;
  }

  .browser-side {
    width: 68%;
    right: 4px;
    bottom: 4px;
  }
}

@media (max-width: 380px) {
  .hero .display,
  .display {
    font-size: clamp(2.25rem, 11.5vw, 3rem);
  }

  .hero-visual {
    min-height: 340px;
  }
}

/* FORMULÁRIO: grid fluido e campos protegidos contra overflow. */
.form-wrap {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.form-card,
.form-grid,
.field {
  width: 100%;
  min-width: 0;
}

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

.field input,
.field select,
.field textarea,
.field button {
  min-width: 0;
  max-width: 100%;
  font-family: "Manrope", Arial, sans-serif;
}

.field input,
.field select,
.field textarea {
  min-height: 52px;
  font-size: 16px;
  line-height: 1.35;
}

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

.field select {
  padding-right: 54px;
  background-position: right 20px center;
}

.form-card button[type="submit"] {
  width: 100%;
  min-height: 54px;
}

@media (max-width: 980px) {
  .form-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .contact-copy {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .form-card {
    padding: 22px;
    border-radius: 20px;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .field.full {
    grid-column: auto;
  }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
  }
}

/* ========================================================================== 
   CORREÇÕES CRÍTICAS V8 — MENU MOBILE, HERO E DEGRADÊ
   Mantido no fim do arquivo para prevalecer sobre regras antigas.
   ========================================================================== */

/* Degradês explícitos: evita falha por cache, variáveis ou sobreposição. */
.gradient-text,
.text-gradient,
.hero .gradient-text,
.about-copy .gradient-text,
.services-heading .gradient-text,
.differentials-highlight,
.testimonials-heading .gradient-text,
.pricing-heading .gradient-text {
  background-color: transparent !important;
  background-image: linear-gradient(90deg, #551679 0%, #E94E9D 52%, #F1E81C 100%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* Elementos com fundo em degradê. */
.btn-primary,
a.btn-primary,
button.btn-primary,
.pricing-card .btn-primary,
.about-sticker,
.feature-icon,
.whatsapp-float,
.mobile-bar a,
.pricing-badge {
  background-color: #E94E9D !important;
  background-image: linear-gradient(90deg, #551679 0%, #E94E9D 52%, #F1E81C 100%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}

/* Evita que classes genéricas apaguem o fundo dos botões principais. */
.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover,
.pricing-card .btn-primary:hover {
  background-image: linear-gradient(90deg, #551679 0%, #E94E9D 52%, #F1E81C 100%) !important;
}

/* Base de largura segura. */
html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

main,
section,
.container,
.hero-grid,
.hero-copy,
.hero-visual,
.form-wrap,
.form-card,
.form-grid,
.field {
  min-width: 0 !important;
  max-width: 100%;
}

/* MENU MOBILE: o backdrop-filter do nav criava um containing block e prendia
   o menu dentro do cabeçalho em alguns navegadores mobile. */
@media (max-width: 980px) {
  .site-header {
    position: fixed !important;
    inset: 8px 0 auto !important;
    width: 100% !important;
    z-index: 10000 !important;
  }

  .nav-shell {
    position: relative !important;
    width: calc(100% - 24px) !important;
    max-width: none !important;
    min-height: 64px !important;
    margin: 0 auto !important;
    padding: 8px 12px 8px 18px !important;
    z-index: 10002 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    filter: none !important;
    isolation: auto !important;
  }

  .logo {
    position: relative !important;
    z-index: 10004 !important;
    flex: 0 0 auto !important;
  }

  .logo img {
    width: 112px !important;
    height: auto !important;
  }

  .menu-toggle {
    position: relative !important;
    z-index: 10004 !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    border: 0 !important;
    color: #fff !important;
    background: transparent !important;
    font-family: Arial, sans-serif !important;
    font-size: 2rem !important;
    line-height: 1 !important;
  }

  .nav-cta {
    display: none !important;
  }

  .nav-links {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10001 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    padding: 112px 24px 42px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    overflow-y: auto !important;
    background: #070707 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    transition: opacity .2s ease, visibility .2s ease !important;
  }

  .nav-links.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-links a,
  .nav-links.open a {
    display: block !important;
    width: min(100%, 420px) !important;
    min-width: 0 !important;
    padding: 15px 16px !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
    color: #fff !important;
    font-family: "Manrope", Arial, sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  body.menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  /* HERO: usa bloco simples no mobile para impedir colunas comprimidas. */
  .hero {
    min-height: auto !important;
    padding: 126px 0 50px !important;
    display: block !important;
  }

  .hero .container,
  .hero-grid {
    width: min(calc(100% - 32px), var(--max)) !important;
    max-width: 100% !important;
    margin-inline: auto !important;
  }

  .hero-grid {
    display: block !important;
  }

  .hero-copy {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    gap: 16px !important;
  }

  .hero-copy > *,
  .hero .display,
  .hero-copy .lead,
  .hero-copy .btn-row,
  .hero-meta {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .hero .eyebrow {
    display: flex !important;
    width: 100% !important;
    font-size: .78rem !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .hero .display {
    display: block !important;
    margin: 0 !important;
    font-size: clamp(2.65rem, 12.5vw, 4.4rem) !important;
    line-height: .96 !important;
    letter-spacing: -.045em !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .hero .display br {
    display: block !important;
  }

  .hero .display .gradient-text {
    display: inline !important;
    width: auto !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .hero-copy .lead {
    margin: 8px 0 0 !important;
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }

  .hero-copy .btn-row {
    margin-top: 20px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-copy .btn-row .btn {
    width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .hero-meta {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-visual {
    width: 100% !important;
    min-height: 390px !important;
    margin-top: 34px !important;
  }
}

@media (max-width: 390px) {
  .hero .container,
  .hero-grid {
    width: calc(100% - 24px) !important;
  }

  .hero .display {
    font-size: clamp(2.35rem, 12vw, 3.5rem) !important;
  }

  .hero .eyebrow {
    font-size: .72rem !important;
  }

  .nav-links a,
  .nav-links.open a {
    font-size: 1.05rem !important;
  }
}

/* FORMULÁRIO: comportamento previsível em desktop, tablet e celular. */
.form-wrap {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr) !important;
  gap: clamp(36px, 5vw, 64px) !important;
  align-items: start !important;
}

.form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.field,
.field input,
.field select,
.field textarea,
.field button {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.field input,
.field select,
.field textarea {
  font-size: 16px !important;
}

.field select {
  padding-right: 54px !important;
  background-position: right 20px center !important;
}

.form-card button[type="submit"] {
  width: 100% !important;
}

@media (max-width: 980px) {
  .form-wrap {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 40px !important;
  }
}

@media (max-width: 680px) {
  .form-card {
    padding: 22px !important;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .field.full {
    grid-column: auto !important;
  }
}

/* ========================================================================== 
   AJUSTE — RESPIRO LATERAL DA HERO NO DESKTOP
   ========================================================================== */
@media (min-width: 981px) {
  .hero .container {
    width: min(calc(100% - 112px), 1240px) !important;
    margin-inline: auto !important;
  }

  .hero-grid {
    column-gap: clamp(48px, 5vw, 82px) !important;
  }

  .hero-copy {
    padding-left: 4px;
  }

  .hero-visual {
    padding-right: 4px;
  }
}

@media (min-width: 1440px) {
  .hero .container {
    width: min(calc(100% - 144px), 1280px) !important;
  }
}
