:root {
  --bapptech-preto: #0F1115;
  --bapptech-cinza-escuro: #1E1F23;
  --bapptech-laranja: #FF6A00;
  --bapptech-laranja-claro: #FFA000;
  --bapptech-bege: #FFF3E0;
  --bapptech-branco: #FFFFFF;
  --bapptech-cinza-texto: #60646B;
  --black: var(--bapptech-preto);
  --graphite: var(--bapptech-cinza-escuro);
  --orange: var(--bapptech-laranja);
  --orange-light: var(--bapptech-laranja-claro);
  --beige: var(--bapptech-bege);
  --white: var(--bapptech-branco);
  --text-dark: #14161b;
  --text-muted: var(--bapptech-cinza-texto);
  --border-dark: rgba(255, 255, 255, .12);
  --border-light: rgba(15, 17, 21, .12);
  --shadow: 0 24px 70px rgba(0, 0, 0, .24);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text-dark);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--black);
  background: var(--beige);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
main section[id] { scroll-margin-top: 96px; }
.section-dark { color: var(--white); background: var(--black); }
.section-light { background: var(--white); }
.section-beige { background: var(--beige); }

.eyebrow,
.mini-label {
  display: block;
  margin: 0 0 12px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: 0; }
h1 { margin-bottom: 24px; font-size: 4.8rem; }
h2 { margin-bottom: 22px; font-size: 3.55rem; }
h3 { margin-bottom: 12px; font-size: 1.24rem; }
p { color: inherit; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(255, 106, 0, .22);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255, 106, 0, .3); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible {
  outline: 3px solid rgba(255, 160, 0, .55);
  outline-offset: 3px;
}
.button-small { min-height: 44px; padding: 10px 17px; }
.button-ghost { color: var(--white); background: transparent; border-color: rgba(255,255,255,.36); box-shadow: none; }
.button-ghost:hover { border-color: var(--orange); box-shadow: none; }
.button-full { width: 100%; }
.text-link { color: var(--orange); font-weight: 800; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(15, 17, 21, .78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(15, 17, 21, .94); border-color: var(--border-dark); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 auto; }
.brand img { width: 235px; }
.main-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.82); font-size: .94rem; font-weight: 700; }
.main-nav > a:not(.button) { position: relative; padding: 10px 0; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; background: var(--orange); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after, .main-nav > a.active::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; background: transparent; border: 1px solid var(--border-dark); border-radius: var(--radius); }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: 720px; padding: 146px 0 76px; overflow: hidden; isolation: isolate; background: var(--black); }
.hero-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center right; opacity: .95; transform: scale(1.02); animation: hero-bg-drift 18s ease-in-out infinite; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(15,17,21,.97) 0%, rgba(15,17,21,.9) 35%, rgba(15,17,21,.5) 57%, rgba(15,17,21,.18) 100%), radial-gradient(circle at 70% 72%, rgba(255,106,0,.18), transparent 30%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; z-index: 1; height: 34%; pointer-events: none; background: linear-gradient(0deg, var(--black), transparent); }
.hero-pattern { position: absolute; inset: -10% -20%; z-index: 1; pointer-events: none; background: linear-gradient(112deg, transparent 0 43%, rgba(255,160,0,.18) 49%, transparent 56%); opacity: .4; mix-blend-mode: screen; animation: hero-light-sweep 9s ease-in-out infinite; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 760px); align-items: center; min-height: 500px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 span { color: var(--orange); }
.hero-lead { max-width: 730px; margin-bottom: 32px; color: rgba(255,255,255,.73); font-size: 1.22rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.68); font-size: .92rem; }
.trust-list li { position: relative; padding-left: 20px; }
.trust-list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; background: var(--orange); transform: rotate(45deg); }

.problem-strip { color: var(--black); background: var(--beige); border-bottom: 1px solid var(--border-light); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.problem-grid > div { padding: 32px 34px; border-right: 1px solid var(--border-light); }
.problem-grid > div:first-child { padding-left: 0; }
.problem-grid > div:last-child { padding-right: 0; border-right: 0; }
.problem-grid strong { display: block; font-size: 1.05rem; line-height: 1.45; }
.problem-grid .mini-label { margin-bottom: 7px; font-size: .7rem; }

.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); align-items: end; gap: 60px; margin-bottom: 52px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > p { margin: 0 0 6px; color: var(--text-muted); font-size: 1.05rem; }
.section-dark .section-heading > p { color: rgba(255,255,255,.65); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 330px; padding: 30px; background: #f7f7f8; border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.service-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -50px; bottom: -60px; border: 24px solid rgba(255,106,0,.07); transform: rotate(30deg); }
.service-card:hover { transform: translateY(-8px); border-color: rgba(255,106,0,.45); box-shadow: 0 24px 55px rgba(15,17,21,.12); }
.service-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 34px; color: var(--orange); border: 1px solid rgba(255,106,0,.35); border-radius: var(--radius); background: rgba(255,106,0,.05); }
.service-card p { color: var(--text-muted); }

.process-section { position: relative; overflow: hidden; }
.process-section::after { content: ""; position: absolute; inset: 0; background: url('./assets/padrao-colmeia.png') center/cover no-repeat; opacity: .08; pointer-events: none; }
.process-section .container { position: relative; z-index: 1; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 35px; left: 9%; right: 9%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,106,0,.65), transparent); }
.timeline-item { position: relative; padding-top: 78px; }
.timeline-number { position: absolute; top: 0; left: 0; z-index: 2; display: grid; place-items: center; width: 70px; aspect-ratio: 1; color: var(--white); background: var(--graphite); border: 1px solid rgba(255,106,0,.5); clip-path: polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0 50%); font-weight: 900; }
.timeline-item p { color: rgba(255,255,255,.62); }

.deliverables-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.deliverables-copy { position: sticky; top: 130px; }
.deliverables-copy p:not(.eyebrow) { color: #615e58; font-size: 1.08rem; }
.deliverable-list { border-top: 1px solid rgba(15,17,21,.18); }
.deliverable { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid rgba(15,17,21,.18); }
.deliverable > span { color: var(--orange); font-weight: 900; letter-spacing: 0; }
.deliverable h3 { margin-bottom: 8px; }
.deliverable p { margin-bottom: 0; color: #615e58; }

.search-intent .section-heading { margin-bottom: 42px; }
.criteria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: criteria; }
.criteria-card { position: relative; padding: 30px; border: 1px solid var(--border-light); border-radius: var(--radius); }
.criteria-card::before { counter-increment: criteria; content: "0" counter(criteria); display: block; margin-bottom: 55px; color: var(--orange); font-weight: 900; }
.criteria-card p { margin-bottom: 0; color: var(--text-muted); }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq-grid > div:first-child { position: sticky; top: 130px; }
.faq-grid > div:first-child p:last-child { color: rgba(255,255,255,.62); }
.faq-list details { border-bottom: 1px solid var(--border-dark); }
.faq-list summary { position: relative; padding: 25px 45px 25px 0; list-style: none; font-size: 1.08rem; font-weight: 800; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 19px; color: var(--orange); font-size: 1.6rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 40px 22px 0; color: rgba(255,255,255,.62); }

.contact-section { position: relative; padding: 110px 0; color: var(--white); background: linear-gradient(135deg, #e95800 0%, var(--orange) 48%, #ff8900 100%); overflow: hidden; }
.contact-section::before { content: ""; position: absolute; inset: 0; background: url('./assets/padrao-colmeia.png') right center/auto 140% no-repeat; opacity: .12; mix-blend-mode: multiply; }
.contact-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.contact-copy .eyebrow { color: var(--black); }
.contact-copy h2 { font-size: 4.2rem; }
.contact-copy > p { color: rgba(255,255,255,.82); font-size: 1.08rem; }
.contact-links { display: flex; flex-direction: column; gap: 8px; margin-top: 30px; font-weight: 800; }
.contact-links a:hover { text-decoration: underline; }
.contact-form { padding: 34px; color: var(--black); background: rgba(255,255,255,.98); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 16px; font-size: .89rem; font-weight: 800; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 7px; padding: 13px 14px; color: var(--black); background: #f6f6f7; border: 1px solid rgba(15,17,21,.16); border-radius: var(--radius); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input.invalid, .contact-form textarea.invalid, .contact-form select.invalid { border-color: #b3261e; background: #fff6f5; }
.form-status { min-height: 24px; margin: -4px 0 10px; color: #b3261e; font-size: .88rem; font-weight: 700; }
.form-note { margin: 12px 0 0; color: #6f7178; font-size: .78rem; text-align: center; }

.site-footer { padding: 65px 0 24px; color: rgba(255,255,255,.7); background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 75px; }
.footer-grid img { width: 235px; margin-bottom: 20px; }
.footer-grid > div:first-child p { max-width: 430px; }
.footer-grid h2 { margin-bottom: 18px; color: var(--orange); font-size: .78rem; letter-spacing: 0; text-transform: uppercase; }
.footer-grid a, .footer-grid span { display: block; margin-bottom: 9px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--border-dark); font-size: .84rem; }
.noscript { position: fixed; inset: auto 0 0; z-index: 2000; padding: 12px; color: var(--black); background: var(--beige); text-align: center; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes hero-bg-drift { 0%,100% { transform: scale(1.02) translate3d(0,0,0); } 50% { transform: scale(1.055) translate3d(-10px,-6px,0); } }
@keyframes hero-light-sweep { 0%,100% { transform: translateX(-16%); opacity: .28; } 50% { transform: translateX(16%); opacity: .55; } }

@media (max-width: 1040px) {
  h1 { font-size: 4.05rem; }
  h2 { font-size: 3rem; }
  .contact-copy h2 { font-size: 3.4rem; }
  .main-nav { gap: 18px; font-size: .88rem; }
  .hero-grid { grid-template-columns: minmax(0, 700px); }
  .service-grid, .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 38px; }
  .timeline::before { display: none; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 82px 0; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 82px 15px auto; display: grid; gap: 4px; padding: 18px; background: rgba(15,17,21,.98); border: 1px solid var(--border-dark); border-radius: var(--radius); box-shadow: var(--shadow); transform: translateY(-20px); opacity: 0; visibility: hidden; transition: transform .2s ease, opacity .2s ease, visibility .2s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 11px 8px !important; }
  .main-nav .button { margin-top: 8px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .brand img { width: 205px; }

  h1 { font-size: 3.15rem; }
  h2 { font-size: 2.5rem; }
  .hero { min-height: 680px; padding: 112px 0 58px; }
  .hero-bg { object-position: 62% center; opacity: .72; }
  .hero::before { background: linear-gradient(180deg, rgba(15,17,21,.95) 0%, rgba(15,17,21,.84) 48%, rgba(15,17,21,.72) 100%); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }

  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid > div { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--border-light); }
  .problem-grid > div:last-child { border-bottom: 0; }

  .section-heading, .deliverables-grid, .faq-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .section-heading { align-items: start; }
  .section-heading > p { max-width: 700px; }
  .deliverables-copy, .faq-grid > div:first-child { position: static; }
  .contact-copy h2 { font-size: 2.8rem; }
  .contact-grid { gap: 45px; }
  .footer-grid { gap: 38px; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.95rem; }
  h3 { font-size: 1.1rem; }
  .header-inner { min-height: 74px; }
  .main-nav { top: 74px; }
  .brand img { width: 178px; }
  .hero { min-height: 640px; padding-top: 115px; }
  .hero-bg { object-position: 58% center; opacity: .52; }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-list { display: grid; text-align: left; }
  .service-grid, .criteria-grid, .timeline, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .timeline-item { padding-top: 68px; }
  .timeline-number { width: 58px; }
  .deliverable { grid-template-columns: 42px 1fr; }
  .contact-copy h2 { font-size: 2.2rem; }
  .contact-form { padding: 24px 18px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
