/* ASTRA DIGITAL — layout de página */

/* ===== NAV ===== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4, 2, 8, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a[data-sec] {
  font-size: .92rem; font-weight: 500; color: var(--tx-dim); letter-spacing: .01em;
  position: relative; transition: color .25s;
}
.nav-links a[data-sec]:hover, .nav-links a.active { color: var(--branco); }
.nav-links a[data-sec]::after {
  content: ""; position: absolute; left: 0; bottom: -7px; height: 2px; width: 0;
  background: var(--accent-3); border-radius: 2px; transition: width .3s var(--ease);
  box-shadow: 0 0 8px var(--accent-3);
}
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; width: 44px; height: 44px; background: none; border: 1px solid var(--line-strong); border-radius: 12px; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--branco); border-radius: 2px; transition: .3s var(--ease); }
.burger span:nth-child(1) { top: 16px; } .burger span:nth-child(2) { top: 21px; } .burger span:nth-child(3) { top: 26px; }
body.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ===== NAV DROPDOWN ===== */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 5px; }
.nav-drop-trigger .caret { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.nav-drop:hover .nav-drop-trigger .caret { transform: rotate(180deg); }
.nav-drop-panel {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translate(-50%, 8px);
  min-width: 268px; padding: 8px; display: flex; flex-direction: column; gap: 2px;
  background: rgba(10, 7, 18, .92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong); border-radius: 16px;
  box-shadow: 0 28px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.03) inset;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  z-index: 95;
}
.nav-drop-panel::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 18px;
}
.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.nav-drop-panel a[role="menuitem"] {
  display: flex; align-items: center; gap: 12px; padding: 11px 13px; border-radius: 11px;
  font-size: .92rem; font-weight: 500; color: var(--tx-dim); white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-drop-panel a[role="menuitem"]:hover { color: var(--branco); background: rgba(168,85,247,.1); }
.nav-drop-panel .dico {
  width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center;
  border-radius: 9px; border: 1px solid var(--line); background: rgba(84,0,255,.1); color: var(--accent-3);
}
.nav-drop-panel .dico svg { width: 16px; height: 16px; }

/* ===== HERO ===== */
.hero { padding-top: 120px; padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero h1 { margin: 22px 0 22px; }
.hero .lead { max-width: 33ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.proof { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.proof-item { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--tx-dim); }
.proof-item b { color: var(--branco); font-weight: 700; }
.proof-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 8px var(--accent-3); }

.hero-visual { position: relative; aspect-ratio: 553 / 329; display: grid; place-items: center; }
.hero-visual .neon-frame {
  position: relative; width: 100%; height: 100%; border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong); overflow: hidden;
  background: radial-gradient(120% 120% at 70% 20%, rgba(84,0,255,.18), #04020a 70%);
  box-shadow: 0 40px 120px rgba(84,0,255,.25);
}
.hero-visual .neon-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; opacity: .96; }
.hero-visual .neon-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,2,10,.6)); }
.float-badge {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px;
  padding: 12px 16px; border-radius: 14px; background: rgba(10,8,18,.78); border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px); box-shadow: 0 14px 40px rgba(0,0,0,.5);
}
.float-badge .ico { --s: 38px; }
.float-badge .ico svg { width: 50%; height: 50%; }
.float-badge small { display: block; color: var(--tx-mute); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; }
.float-badge strong { font-size: 1.05rem; }
.fb-1 { top: 8%; left: -6%; animation: floaty 6s ease-in-out infinite; }
.fb-2 { bottom: 10%; right: -5%; animation: floaty 6s ease-in-out infinite 1.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== SOBRE ===== */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 76px); align-items: start; }
.sobre-copy p { color: var(--tx-dim); margin-top: 18px; font-size: 1.04rem; line-height: 1.7; }
.pilares { display: grid; gap: 16px; }
.pilar { display: flex; gap: 18px; align-items: flex-start; padding: 24px; }
.pilar h3 { font-size: 1.18rem; margin-bottom: 5px; }
.pilar p { color: var(--tx-dim); font-size: .96rem; line-height: 1.55; }

/* ===== QUEM SOMOS / sócios ===== */
.quem { background: var(--bg-soft); overflow: hidden; }
.quem-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.quem-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong);
  box-shadow: 0 40px 110px rgba(84,0,255,.22); }
.quem-photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1 / 1; }
.quem-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(4,2,10,.72)); pointer-events: none; }
.quem-names { position: absolute; left: 26px; bottom: 22px; z-index: 2; }
.quem-names .nm { display: flex; align-items: baseline; gap: 10px; font-weight: 700; font-size: 1.12rem; }
.quem-names .nm + .nm { margin-top: 4px; }
.quem-names .role { font-size: .82rem; font-weight: 500; color: var(--accent-3); letter-spacing: .02em; }
.quem-copy p { color: var(--tx-dim); margin-top: 18px; font-size: 1.04rem; line-height: 1.7; }
.quem-copy p b { color: var(--branco); font-weight: 600; }
.quem-sign { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.founder-chip { display: flex; align-items: center; gap: 13px; padding: 14px 20px 14px 14px; border-radius: 100px;
  border: 1px solid var(--line-strong); background: rgba(84,0,255,.06); }
.founder-chip .ico { --s: 42px; }
.founder-chip .ico svg { width: 46%; height: 46%; }
.founder-chip b { display: block; font-size: .98rem; }
.founder-chip small { color: var(--tx-mute); font-size: .78rem; }
@media (max-width: 860px) {
  .quem-grid { grid-template-columns: 1fr; }
  .quem-photo { max-width: 460px; margin-inline: auto; }
}

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 950;
  width: 64px; height: 64px; min-width: 64px; min-height: 64px; border-radius: 50%;
  display: grid; place-items: center; padding: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  transform: scale(0); opacity: 0; pointer-events: none;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .3s ease, box-shadow .3s ease;
}
.wa-float.show { transform: scale(1); opacity: 1; pointer-events: auto; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 38px rgba(37,211,102,.45); }
.wa-float img { width: 64px; height: 64px; display: block; border-radius: 50%; position: relative; z-index: 2; }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%; z-index: 1;
  background: #25D366;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .55; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 620px) {
  .wa-float { right: 16px; bottom: 16px; width: 58px; height: 58px; min-width: 58px; min-height: 58px; }
  .wa-float img { width: 58px; height: 58px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-pulse { animation: none; }
  .wa-float { transition: opacity .3s ease; }
}

/* ===== Section heading block ===== */
.sec-head { max-width: 740px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .h-1, .sec-head .h-2 { margin: 18px 0 16px; }

/* ===== SERVIÇOS ===== */
.serv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.serv-grid .wide { grid-template-columns: 1fr; }
.serv-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.serv {
  display: flex; flex-direction: column; padding: 30px 28px 28px;
}
.serv-head { display: flex; align-items: center; gap: 15px; margin-bottom: 16px; }
.serv h3 { font-size: 1.32rem; }
.serv .tagline { color: var(--accent-3); font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.serv .desc { color: var(--tx-dim); font-size: .96rem; line-height: 1.6; margin-bottom: 20px; }
.serv .incl-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--tx-mute); margin-bottom: 12px; }
.incl { list-style: none; display: grid; gap: 9px; margin-bottom: 24px; }
.incl li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--cinza-claro); line-height: 1.4; }
.incl li svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 2px; color: var(--accent-3); }
.serv-row2 .incl { grid-template-columns: 1fr 1fr; gap: 9px 22px; }
.serv .saiba { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; padding-right: 6px; font-weight: 600; font-size: .92rem; color: var(--branco); transition: gap .3s, color .3s; }
.serv .saiba svg { width: 17px; height: 17px; flex: 0 0 17px; overflow: visible; transition: transform .3s; }
.serv:hover .saiba { color: var(--accent-3); } .serv:hover .saiba svg { transform: translateX(4px); }

/* ===== DADOS / stats ===== */
.dados { background: var(--bg-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 54px; }
.stat { padding: 30px 26px; grid-column: span 2; }
.stat.feature { grid-column: span 6; display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; }
@media (min-width: 861px){ .stat.feature { grid-column: span 6; } }
.stat .num { font-size: clamp(2.6rem, 4.6vw, 4rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.stat.feature .num { font-size: clamp(3.4rem, 7vw, 6rem); }
.stat .num .suf { color: var(--accent-3); }
.stat .stat-txt { color: var(--tx-dim); font-size: .98rem; line-height: 1.5; margin-top: 14px; }
.stat .src { display: block; margin-top: 12px; font-size: .72rem; color: var(--tx-mute); letter-spacing: .03em; }
.dados-close {
  margin-top: 40px; padding: 30px 34px; border-radius: var(--radius);
  border: 1px solid var(--line-strong); background: linear-gradient(100deg, rgba(84,0,255,.14), rgba(168,85,247,.05));
  font-size: clamp(1.05rem, 1.6vw, 1.32rem); line-height: 1.55; text-wrap: pretty;
}
.dados-close b { color: var(--branco); }

/* ===== PROCESSO ===== */
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.steps::before { content: ""; position: absolute; top: 28px; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong) 12%, var(--line-strong) 88%, transparent); z-index: 0; }
.step { position: relative; z-index: 1; }
.step .node {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 1.1rem; margin-bottom: 22px;
  border: 1px solid var(--line-strong); background: #07050d; color: var(--accent-3);
  box-shadow: 0 0 calc(26px * var(--glow)) rgba(84,0,255,.28);
}
.step h3 { font-size: 1.16rem; margin-bottom: 9px; }
.step p { color: var(--tx-dim); font-size: .92rem; line-height: 1.55; }

/* ===== DIFERENCIAIS ===== */
.dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.dif { padding: 30px 28px; }
.dif .ico { margin-bottom: 20px; }
.dif h3 { font-size: 1.18rem; margin-bottom: 10px; }
.dif p { color: var(--tx-dim); font-size: .95rem; line-height: 1.6; }

/* ===== CASES ===== */
.cases { background: var(--bg-soft); }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.impact { padding: 36px 30px; text-align: left; }
.impact .num { font-size: clamp(2.6rem, 4.4vw, 3.6rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.impact .num .suf { color: var(--accent-3); }
.impact p { color: var(--tx-dim); margin-top: 14px; font-size: .98rem; }
.cases-lower { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; margin-top: 20px; }
.testimonial { padding: 38px 36px; display: flex; flex-direction: column; }
.testimonial .quote { font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.4; font-weight: 500; text-wrap: pretty; }
.testimonial .quote::before { content: "“"; color: var(--accent-3); font-size: 2.4em; line-height: 0; vertical-align: -0.4em; margin-right: 6px; }
.testimonial .who { margin-top: auto; padding-top: 26px; display: flex; align-items: center; gap: 14px; }
.testimonial .avatar { width: 50px; height: 50px; border-radius: 50%; }
.testimonial .who b { display: block; }
.testimonial .who small { color: var(--tx-mute); }
.logos-card { padding: 32px; display: flex; flex-direction: column; }
.logos-card .incl-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--tx-mute); margin-bottom: 20px; }
.logo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; flex: 1; }
.brand-logo {
  border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden;
  aspect-ratio: 16 / 9; background: #0c0a14;
  display: grid; place-items: center;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-logo:hover { transform: translateY(-3px); border-color: var(--accent-3); }

/* striped placeholder */
.ph {
  border: 1px dashed var(--line-strong); border-radius: 12px;
  background-image: repeating-linear-gradient(45deg, rgba(132,84,255,.07) 0 9px, transparent 9px 18px);
  display: grid; place-items: center; min-height: 64px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .68rem; letter-spacing: .05em;
  color: var(--tx-mute); text-align: center; padding: 8px;
}

/* ===== CONTATO ===== */
.contato-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.contato-info { margin-top: 30px; display: grid; gap: 16px; }
.contato-info .row { display: flex; align-items: center; gap: 14px; color: var(--tx-dim); font-size: 1rem; }
.contato-info .ico { --s: 44px; }
.contato-info .ico svg { width: 44%; height: 44%; }
.form-card { padding: clamp(26px, 3vw, 40px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--cinza-claro); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .96rem; color: var(--branco);
  background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 15px; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field input::placeholder, .field textarea::placeholder { color: var(--tx-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-3); box-shadow: 0 0 0 3px rgba(132,84,255,.15); background: rgba(255,255,255,.04); }
.form-card .btn-primary { width: 100%; margin-top: 20px; }
.form-note { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: .82rem; color: var(--tx-mute); justify-content: center; }
.form-note svg { width: 15px; height: 15px; }
.form-ok { text-align: center; padding: 40px 20px; }
.form-ok .ico { margin: 0 auto 20px; }
.form-ok h3 { font-size: 1.4rem; margin-bottom: 10px; }
.form-ok p { color: var(--tx-dim); }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--line); padding-block: clamp(50px, 7vw, 80px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand img { height: 28px; margin-bottom: 18px; }
.footer-brand p { color: var(--tx-dim); max-width: 32ch; line-height: 1.6; }
.footer h4 { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--tx-mute); margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: var(--tx-dim); font-size: .95rem; transition: color .25s; }
.footer ul a:hover { color: var(--branco); }
.footer-info { color: var(--tx-dim); font-size: .92rem; display: grid; gap: 10px; }
.footer-bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--tx-mute); }
.footer-bottom a { color: var(--tx-mute); } .footer-bottom a:hover { color: var(--cinza-claro); }
.footer-legal { display: flex; gap: 8px; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 4px; padding: 18px var(--pad) 28px;
    background: rgba(4,2,10,.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .35s var(--ease); align-items: stretch; }
  .nav-links a[data-sec] { padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-links a[data-sec]::after { display: none; }
  /* dropdown becomes an inline accordion-style block on mobile */
  .nav-drop { flex-direction: column; align-items: stretch; }
  .nav-drop-trigger { justify-content: space-between; }
  .nav-drop-panel {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; width: 100%; background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    border: none; box-shadow: none; border-radius: 0; padding: 6px 0 10px 8px; gap: 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-drop-panel a[role="menuitem"] { padding: 11px 8px; font-size: .98rem; }
  body.menu-open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .burger { display: block; }
  .nav-cta .btn:not(.burger) { display: none; }
  .hero-grid, .sobre-grid, .contato-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; order: -1; }
  .hero-visual .float-badge { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 340px; }
  .serv-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .steps::before { display: none; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat, .stat.feature { grid-column: span 2; }
  .stat.feature { grid-template-columns: auto 1fr; }
  .cases-lower { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .serv-grid, .serv-row2, .impact-grid, .dif-grid, .stats-grid, .form-grid, .serv-row2 .incl { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat.feature { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .fb-1 { left: 2%; } .fb-2 { right: 2%; }
  .proof { gap: 8px 16px; }
}

/* ===== HERO FULL-WIDTH BACKGROUND ===== */
.hero { padding-inline: 0; }
.hero .glow-orb { z-index: 0; }

/* ===== PORTFÓLIO ===== */
.port-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.port-item {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line-strong);
  background: radial-gradient(120% 120% at 70% 20%, rgba(84,0,255,.12), #07050f 72%);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.port-item.tall { grid-row: span 2; }
.port-item.wide { grid-column: span 2; }
.port-grid.port-single {
  display: block;
  max-width: 1040px;
  margin-inline: auto;
}
.port-grid.port-single .port-item {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.port-grid.port-single .port-img { padding: 0; overflow: hidden; }
.port-grid.port-single .port-img img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 17px;
}
.port-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-3);
  box-shadow: 0 24px 60px rgba(84,0,255,.28);
}
@media (max-width: 860px) {
  .port-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .port-item.wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .port-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 12px; }
  .port-item.tall { grid-row: span 1; }
  .port-item.wide { grid-column: span 2; }
}
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget-wrap {
  max-width: 100% !important;
}

/* ===== BOTÕES DO HERO CENTRALIZADOS NO MOBILE ===== */
@media (max-width: 980px) {
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
    justify-content: center;
  }
}
