:root {
  --bg: #f5f1e8;
  --surface: #fffdf8;
  --ink: #27231f;
  --muted: #6d655d;
  --line: #d8d0c5;
  --accent: #b46a2b;
  --accent-2: #e9a45f;
  --dark: #27231f;
  --dark-2: #332d28;
  --light: #f8f4ed;
  --shadow: 0 24px 70px rgba(61, 45, 31, 0.12);
  --radius: 24px;
  --container: 1180px;
  --page-accent: var(--accent);
  --page-accent-soft: #f0d8c0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.narrow {
  max-width: 760px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(39, 35, 31, 0.09);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent);
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  gap: 10px;
  align-items: center;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -7px;
}

.menu-lines::after {
  position: absolute;
  top: 7px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 92px;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #302923 55%,
    #493728 100%
  );
  color: var(--light);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  right: -170px;
  top: -220px;
  background: radial-gradient(circle, var(--page-accent) 0%, transparent 68%);
  opacity: 0.24;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 70px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--page-accent);
  margin: 0 0 14px;
}

.page-hero .eyebrow,
.section-dark .eyebrow,
.final-cta .eyebrow {
  color: var(--accent-2);
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  max-width: 900px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: #ddd4c8;
  max-width: 720px;
  margin-bottom: 32px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f0b36f;
  outline-offset: 3px;
}

.button-primary {
  background: var(--page-accent);
  color: #fff;
}

.button-ghost {
  border-color: currentColor;
  background: transparent;
}

.page-hero .button-ghost {
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-small {
  min-height: 38px;
  padding: 7px 14px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.hero-visual {
  height: 420px;
  position: relative;
  z-index: 1;
}

.frame {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.frame span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.frame strong {
  font-size: 1.4rem;
}

.frame-main {
  inset: 10px 70px 110px 0;
  transform: rotate(-4deg);
}

.frame-side {
  right: 0;
  top: 70px;
  width: 170px;
  height: 230px;
  transform: rotate(5deg);
  background: color-mix(in srgb, var(--page-accent) 24%, transparent);
}

.frame-bottom {
  left: 100px;
  right: 35px;
  bottom: 15px;
  height: 125px;
  transform: rotate(2deg);
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid span {
  padding: 20px 16px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 750;
  border-right: 1px solid var(--line);
}

.trust-grid span:last-child {
  border-right: 0;
}

.section {
  padding: 92px 0;
}

.section-tinted {
  background: #ece5db;
}

.section-dark {
  background: var(--dark);
  color: var(--light);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark p {
  color: #d5ccc0;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.service-card,
.detail-card,
.mini-card,
.package-card,
.niche-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.service-card .card-index {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 850;
}

.service-card h3 {
  font-size: 1.65rem;
  margin: 38px 0 12px;
}

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

.service-card a,
.niche-card a,
.package-card a,
.text-link {
  font-weight: 800;
  margin-top: auto;
  color: var(--ink);
}

.detail-card p,
.package-card p,
.mini-card p {
  color: var(--muted);
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 9px 0 9px 26px;
  border-top: 1px solid var(--line);
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--page-accent);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.project-stack {
  display: grid;
  gap: 14px;
}

.project-stack article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px;
  border-radius: 18px;
}

.project-stack span,
.tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent-2);
  font-weight: 850;
}

.project-stack h3 {
  margin: 8px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  list-style: none;
}

.process-grid li {
  padding: 25px 22px;
  border-top: 3px solid var(--page-accent);
  background: var(--surface);
}

.process-grid span,
.benefit span {
  font-size: 0.75rem;
  font-weight: 850;
  color: var(--page-accent);
}

.process-grid p {
  color: var(--muted);
}

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

.equipment-grid,
.factor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.equipment-grid span,
.factor-grid span {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  padding: 15px 18px;
  font-weight: 750;
}

.final-cta {
  padding: 85px 0;
  background: var(--page-accent);
  color: #fff;
  text-align: center;
}

.final-cta .container {
  max-width: 820px;
}

.final-cta p:not(.eyebrow) {
  font-size: 1.12rem;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.niche-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.niche-marker {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--niche-color, var(--accent));
}

.niche-card h2 {
  font-size: 2rem;
  margin-top: 40px;
}

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

.niche-wedding {
  --niche-color: #b85c79;
}

.niche-realestate {
  --niche-color: #398872;
}

.niche-shows {
  --niche-color: #b44f9a;
}

.niche-corporate {
  --niche-color: #6f64a8;
}

.niche-local {
  --niche-color: #b37a21;
}

.niche-school {
  --niche-color: #2c8193;
}

.niche-food {
  --niche-color: #bc5c36;
}

.niche-drone {
  --niche-color: #247c78;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit {
  border-top: 3px solid var(--page-accent);
  padding: 20px;
  background: var(--surface);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.package-card > span {
  font-size: 0.75rem;
  color: var(--page-accent);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.package-card h3,
.package-card h2 {
  margin-top: 35px;
}

.package-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.package-card.featured {
  background: var(--dark);
  color: #fff;
  transform: translateY(-12px);
}

.package-card.featured p,
.package-card.featured ul {
  color: #ddd3c7;
}

.question-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: q;
}

.question-list li {
  counter-increment: q;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.question-list li::before {
  content: counter(q, decimal-leading-zero);
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 850;
  margin-right: 18px;
}

.portfolio-grid {
  display: grid;
  gap: 28px;
}

.portfolio-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) 1.3fr;
  gap: 35px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.portfolio-art {
  min-height: 300px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #42352c, #bb7440);
  color: #fff;
}

.portfolio-house .portfolio-art {
  background: linear-gradient(135deg, #214f45, #70ab91);
}

.portfolio-event .portfolio-art {
  background: linear-gradient(135deg, #4e2947, #bb619a);
}

.portfolio-art span {
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.55;
}

.portfolio-card > div:last-child {
  padding: 25px 25px 25px 0;
}

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

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.timeline li > span {
  font-size: 1.3rem;
  color: var(--page-accent);
  font-weight: 900;
}

.timeline h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.timeline p {
  color: var(--muted);
  margin: 0;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 120px;
}

.contact-note {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.inquiry-form,
.auth-form {
  display: grid;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.inquiry-form label,
.auth-form label,
.inquiry-form legend {
  display: block;
  font-weight: 750;
  margin-bottom: 7px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.auth-form input {
  width: 100%;
  border: 1px solid #bfb5aa;
  border-radius: 12px;
  background: #fff;
  padding: 13px;
  color: var(--ink);
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form small {
  display: block;
  text-align: right;
  color: var(--muted);
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.checkbox-grid label,
.consent {
  font-weight: 500 !important;
  margin: 0 !important;
}

.checkbox-grid input,
.consent input {
  width: auto;
}

.consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-help {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status {
  padding: 12px 14px;
  border-radius: 10px;
  background: #efe8dc;
}

.form-status.error {
  background: #f4dede;
  color: #752f2f;
}

.form-status.success {
  background: #dcefe6;
  color: #245d48;
}

.legal h2 {
  font-size: 1.5rem;
  margin-top: 38px;
}

.legal-note {
  padding: 18px;
  background: #ece5db;
  border-radius: 14px;
}

.mobile-contact {
  display: none;
}

.admin-shell {
  min-height: 100vh;
  background: #eee8de;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.admin-top > div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.admin-main {
  width: min(calc(100% - 36px), 1250px);
  margin: 0 auto;
  padding: 50px 0;
}

.admin-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.table-wrap {
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 850px;
}

th,
td {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tbody tr {
  cursor: pointer;
}

tbody tr:hover {
  background: #f3eee6;
}

.lead-detail {
  margin-top: 20px;
  background: var(--surface);
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  white-space: pre-wrap;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.page-wedding {
  --page-accent: #b85c79;
  --page-accent-soft: #eed2dd;
}

.page-realestate {
  --page-accent: #398872;
  --page-accent-soft: #d2e7df;
}

.page-shows {
  --page-accent: #b44f9a;
  --page-accent-soft: #edd2e8;
}

.page-corporate {
  --page-accent: #6f64a8;
  --page-accent-soft: #dedaf0;
}

.page-local {
  --page-accent: #b37a21;
  --page-accent-soft: #eee0bd;
}

.page-school {
  --page-accent: #2c8193;
  --page-accent-soft: #cfe5e9;
}

.page-food {
  --page-accent: #bc5c36;
  --page-accent-soft: #efd6ca;
}

.page-drone {
  --page-accent: #247c78;
  --page-accent-soft: #cce5e3;
}

.niche-accent-section {
  background: var(--page-accent-soft);
}

@media (max-width: 1000px) {
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    padding: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .menu-button {
    display: flex;
  }

  .hero-grid,
  .split-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 320px;
  }

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

  .trust-grid span:nth-child(2) {
    border-right: 0;
  }

  .card-grid-3,
  .package-grid,
  .benefit-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-intro {
    position: static;
  }

  .package-card.featured {
    transform: none;
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .portfolio-card > div:last-child {
    padding: 15px;
  }

  .page-hero {
    padding-top: 65px;
  }
}

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

  .header-inner {
    height: 70px;
  }

  .main-nav {
    top: 70px;
  }

  .brand img {
    width: 145px;
  }

  .page-hero {
    padding: 54px 0 62px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual {
    height: 260px;
  }

  .frame-main {
    inset: 10px 55px 80px 0;
  }

  .frame-side {
    width: 130px;
    height: 175px;
  }

  .frame-bottom {
    left: 55px;
    height: 100px;
  }

  .section {
    padding: 65px 0;
  }

  .trust-grid,
  .card-grid-3,
  .card-grid-2,
  .niche-grid,
  .package-grid,
  .benefit-grid,
  .process-grid,
  .equipment-grid,
  .factor-grid,
  .form-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split-layout {
    gap: 35px;
  }

  .portfolio-art {
    min-height: 220px;
  }

  .timeline li {
    grid-template-columns: 55px 1fr;
  }

  .inquiry-form,
  .auth-form {
    padding: 20px;
  }

  .mobile-contact {
    display: block;
    position: fixed;
    z-index: 70;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .mobile-contact a {
    display: block;
    background: var(--ink);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  }

  .site-footer {
    padding-bottom: 85px !important;
  }

  .admin-top {
    padding: 14px;
  }

  .admin-top [data-admin-email] {
    display: none;
  }

  .admin-main {
    padding: 30px 0;
  }
}

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

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

  .button {
    transition: none;
  }
}

.admin-heading {
  gap: 18px;
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  background: #1f1b18;
  color: #ece4da;
  padding: 58px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-grid h2 {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid p {
  color: #c9bfb3;
  max-width: 420px;
}

.footer-grid a {
  color: #e8dfd3;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 35px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #bdb2a5;
}

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

  .footer-bottom {
    flex-direction: column;
  }
}

/* =========================================================
   Tech Take v4 — identidade visual baseada no logo oficial
   ========================================================= */
:root {
  --bg: #1b1f23;
  --surface: #232a30;
  --ink: #f4f5f5;
  --muted: #b6c0c6;
  --line: #3a4852;
  --accent: #0ea0e5;
  --accent-2: #12d4d8;
  --dark: #11171b;
  --dark-2: #1c252b;
  --light: #f4f5f5;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --page-accent: var(--accent);
  --page-accent-soft: #173746;
}

body {
  background: var(--bg);
  color: var(--ink);
}

.site-header {
  background: rgba(27, 31, 35, 0.93);
  border-bottom-color: rgba(18, 212, 216, 0.18);
}

.brand {
  gap: 11px;
  min-width: max-content;
}

.brand picture {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  box-shadow: 0 0 22px rgba(14, 160, 229, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
}

.brand-copy strong {
  font-size: 1.1rem;
  letter-spacing: 0.045em;
  color: #fff;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: #aebbc2;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent-2);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #071216 !important;
  box-shadow: 0 10px 25px rgba(14, 160, 229, 0.22);
}

.menu-button {
  color: #fff;
}

.page-hero {
  background:
    radial-gradient(
      circle at 78% 25%,
      rgba(18, 212, 216, 0.13),
      transparent 28%
    ),
    linear-gradient(135deg, #11171b 0%, #18242b 52%, #102d3a 100%);
}

.page-hero::after {
  background: radial-gradient(circle, var(--page-accent) 0%, transparent 68%);
  opacity: 0.2;
}

.page-hero .eyebrow,
.section-dark .eyebrow,
.final-cta .eyebrow {
  color: var(--accent-2);
}

.hero-lead {
  color: #c5d0d5;
}

.button-primary {
  background: linear-gradient(135deg, var(--page-accent), var(--accent-2));
  color: #071216;
  box-shadow: 0 12px 28px rgba(14, 160, 229, 0.24);
}

.button-ghost {
  border-color: #6b8390;
}

.button-light {
  background: #f4f5f5;
  color: #11171b;
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-color: var(--accent-2);
}

.hero-brand-visual {
  display: grid;
  place-items: center;
  min-height: 430px;
}

.hero-logo-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  padding: 18px;
  border: 1px solid rgba(18, 212, 216, 0.22);
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(35, 42, 48, 0.96),
    rgba(17, 23, 27, 0.92)
  );
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(14, 160, 229, 0.12);
}

.hero-logo-panel::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(14, 160, 229, 0.12);
  border-radius: 23px;
  pointer-events: none;
}

.hero-logo-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.hero-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.34;
  pointer-events: none;
}

.hero-glow-one {
  width: 180px;
  height: 180px;
  right: 2%;
  top: 6%;
  background: var(--accent-2);
}

.hero-glow-two {
  width: 220px;
  height: 220px;
  left: 0;
  bottom: 0;
  background: var(--accent);
}

.trust-strip {
  background: #20272c;
  border-bottom-color: var(--line);
}

.trust-grid span {
  border-right-color: var(--line);
  color: #dce5e9;
}

.section-tinted,
.legal-note {
  background: #20272c;
}

.section-dark {
  background: #11171b;
}

.section-heading > p:last-child,
.service-card p,
.detail-card p,
.package-card p,
.mini-card p,
.niche-card p,
.process-grid p,
.timeline p,
.portfolio-card p,
.form-help {
  color: var(--muted);
}

.service-card,
.detail-card,
.mini-card,
.package-card,
.niche-card,
.process-grid li,
.equipment-grid span,
.factor-grid span,
.benefit,
.inquiry-form,
.auth-form,
.contact-note,
.table-wrap,
.lead-detail {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: none;
}

.service-card,
.niche-card,
.package-card,
.detail-card,
.mini-card {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.service-card a,
.niche-card a,
.package-card a,
.text-link {
  color: #eef9fc;
}

.service-card .card-index,
.process-grid span,
.benefit span,
.timeline li > span,
.package-card > span {
  color: var(--accent-2);
}

.check-list li,
.question-list li,
.timeline li {
  border-color: var(--line);
}

.section-dark p,
.package-card.featured p,
.package-card.featured ul {
  color: #c2ccd1;
}

.project-stack article {
  background: rgba(35, 42, 48, 0.55);
  border-color: rgba(18, 212, 216, 0.17);
}

.project-stack span,
.tag {
  color: var(--accent-2);
}

.equipment-section {
  border-top-color: var(--line);
}

.final-cta {
  background: linear-gradient(135deg, #087fbd 0%, #0ea0e5 48%, #12d4d8 100%);
  color: #071216;
}

.final-cta .eyebrow {
  color: #063547;
}

.final-cta .button-light {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.niche-marker {
  box-shadow: 0 0 24px var(--niche-color, var(--accent));
}

.niche-wedding {
  --niche-color: #0e8fd4;
}

.niche-realestate {
  --niche-color: #12c8cf;
}

.niche-shows {
  --niche-color: #167ad6;
}

.niche-corporate {
  --niche-color: #1da9c4;
}

.niche-local {
  --niche-color: #0ea0e5;
}

.niche-school {
  --niche-color: #44d9dc;
}

.niche-food {
  --niche-color: #188cc0;
}

.niche-drone {
  --niche-color: #22c8be;
}

.package-card.featured {
  background: linear-gradient(145deg, #102631, #10202a);
  border-color: rgba(18, 212, 216, 0.4);
}

.portfolio-art {
  background: linear-gradient(135deg, #0b4f75, #12bfc8);
}

.portfolio-house .portfolio-art {
  background: linear-gradient(135deg, #0d5669, #20c7bd);
}

.portfolio-event .portfolio-art {
  background: linear-gradient(135deg, #124c86, #17a9d4);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.auth-form input {
  background: #182026;
  border-color: #52636e;
  color: #f4f5f5;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder,
.auth-form input::placeholder {
  color: #8fa0aa;
}

fieldset {
  border-color: var(--line);
}

.form-status {
  background: #213746;
}

.form-status.error {
  background: #542b32;
  color: #ffd7dc;
}

.form-status.success {
  background: #173f3c;
  color: #c5fff7;
}

.mobile-contact a {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #071216;
}

.admin-shell {
  background: var(--bg);
}

.admin-top {
  background: var(--surface);
  border-color: var(--line);
}

tbody tr:hover {
  background: #2b353c;
}

.site-footer {
  background: #101519;
  color: #e9f2f5;
}

.footer-grid p {
  color: #aebbc2;
}

.footer-grid a {
  color: #d8e9ee;
}

.footer-bottom {
  color: #98a8b1;
  border-top-color: rgba(18, 212, 216, 0.16);
}

.footer-logo {
  display: block;
  width: 190px;
  height: auto;
  border-radius: 18px;
}

.footer-grid picture {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.breadcrumb {
  background: #151b1f;
  border-bottom: 1px solid rgba(18, 212, 216, 0.12);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.breadcrumb li + li::before {
  content: "/";
  color: #66757e;
}

.breadcrumb a {
  color: #c9d5da;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--accent-2);
}

.breadcrumb [aria-current="page"] {
  overflow: hidden;
  max-width: 48ch;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #eef6f8;
}

.page-wedding {
  --page-accent: #0e8fd4;
  --page-accent-soft: #173447;
}

.page-realestate {
  --page-accent: #12c8cf;
  --page-accent-soft: #173d42;
}

.page-shows {
  --page-accent: #167ad6;
  --page-accent-soft: #182f48;
}

.page-corporate {
  --page-accent: #1da9c4;
  --page-accent-soft: #193740;
}

.page-local {
  --page-accent: #0ea0e5;
  --page-accent-soft: #173746;
}

.page-school {
  --page-accent: #44d9dc;
  --page-accent-soft: #1a4044;
}

.page-food {
  --page-accent: #188cc0;
  --page-accent-soft: #183744;
}

.page-drone {
  --page-accent: #22c8be;
  --page-accent-soft: #193d3c;
}

.niche-accent-section {
  background: var(--page-accent-soft);
}

@media (max-width: 1000px) {
  .main-nav {
    background: #1d252b;
    border-bottom-color: var(--line);
  }

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

  .hero-logo-panel {
    width: min(100%, 390px);
  }
}

@media (max-width: 680px) {
  .brand picture {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.47rem;
  }

  .hero-brand-visual {
    height: auto;
    min-height: 290px;
  }

  .hero-logo-panel {
    width: min(100%, 310px);
    padding: 12px;
  }

  .footer-logo {
    width: 165px;
  }

  .breadcrumb [aria-current="page"] {
    max-width: 23ch;
  }
}

/* =========================================================

/* v4.2 — imagens de marca derivadas das artes novas, sempre sem distorção. */
.brand-mark {
  width: 52px;
  height: 52px;
  aspect-ratio: 1 / 1;
  flex: 0 0 52px;
  object-fit: cover;
  object-position: center;
}

.footer-logo {
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: 800 / 330;
  object-fit: contain;
  object-position: left center;
  border-radius: 12px;
}

@media (max-width: 680px) {
  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .footer-logo {
    width: min(100%, 310px);
  }
}

.property-fields[hidden] {
  display: none;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 0 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  padding: 18px 30px 18px 0;
}

.faq-list details p {
  color: var(--muted);
  margin: 0;
  padding: 0 0 20px;
}

.site-footer p {
  color: var(--muted);
}

/* Login administrativo — acesso visível e formulário acima da dobra. */
.nav-login {
  padding: 8px 13px;
  border: 1px solid rgba(18, 212, 216, 0.48);
  border-radius: 999px;
  color: #dffcff !important;
}

.nav-login:hover,
.nav-login:focus-visible {
  border-color: var(--accent-2);
  background: rgba(18, 212, 216, 0.1);
  color: #fff !important;
}

.login-section {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 72px 0;
  background:
    radial-gradient(
      circle at 16% 20%,
      rgba(18, 212, 216, 0.14),
      transparent 28%
    ),
    linear-gradient(135deg, #11171b 0%, #17242b 55%, #102d3a 100%);
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.login-intro {
  max-width: 610px;
}

.login-intro h1 {
  font-size: clamp(2.7rem, 5.6vw, 5.4rem);
  color: #f4f8fa;
  margin-bottom: 22px;
}

.login-intro > p:not(.eyebrow):not(.login-address) {
  font-size: 1.15rem;
  color: #b9c7cd;
  max-width: 540px;
}

.login-address {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin: 22px 0 0;
  padding: 13px 17px;
  border: 1px solid rgba(18, 212, 216, 0.28);
  border-radius: 14px;
  background: rgba(18, 32, 40, 0.72);
  color: #eafcff;
}

.login-address span {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent-2);
}

.login-address strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.page-login .login-card {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  padding: clamp(25px, 4vw, 42px);
  border-color: rgba(18, 212, 216, 0.32);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.auth-form-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.auth-form-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.page-login .auth-form label {
  margin-bottom: 8px;
}

.page-login .auth-form input {
  min-height: 52px;
}

.page-login .button-full {
  margin-top: 4px;
}

.login-help {
  margin: 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
}

.page-login .mobile-contact {
  display: none;
}

@media (max-width: 1000px) {
  .login-section {
    min-height: auto;
    padding: 64px 0;
  }

  .login-layout {
    grid-template-columns: 1fr;
  }

  .page-login .login-card {
    max-width: 680px;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .nav-login {
    border-radius: 12px;
  }

  .login-section {
    padding: 46px 0 60px;
  }

  .login-layout {
    gap: 30px;
  }

  .login-intro h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .page-login .login-card {
    padding: 24px;
  }

  .login-address {
    width: 100%;
  }
}

/* =========================================================
   HOME — imagem principal responsiva
   Desktop usa arte 16:9; celular usa arte 9:16.
   Nenhuma dimensão força a imagem a mudar de proporção.
   ========================================================= */
.page-home .hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5vw, 76px);
}

.page-home .hero-brand-visual {
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  min-height: 0;
}

.page-home .hero-showcase {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 680px);
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(18, 212, 216, 0.24);
  border-radius: 28px;
  background: #02070d;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.52),
    0 0 72px rgba(14, 160, 229, 0.14);
}

.page-home .hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.page-home .hero-showcase img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1000px) {
  .page-home .hero-grid {
    grid-template-columns: 1fr;
  }
  .page-home .hero-showcase {
    width: min(100%, 760px);
  }
}

@media (max-width: 760px) {
  .page-home .page-hero {
    padding: 38px 0 46px;
  }
  .page-home .hero-grid {
    gap: 26px;
  }
  .page-home .hero-copy {
    text-align: left;
  }
  .page-home .hero-copy h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.55rem);
  }

  .page-home .hero-showcase {
    /* A largura também respeita a altura da tela para a arte vertical
       não dominar o celular. A proporção permanece 9:16. */
    width: min(100%, 390px, calc(76svh * 9 / 16));
    aspect-ratio: 9 / 16;
    border-radius: 22px;
  }
}

@media (max-width: 420px) {
  .page-home .hero-showcase {
    width: min(100%, calc(74svh * 9 / 16));
    border-radius: 18px;
  }
}

/* =========================================================
   PORTFÓLIO — conteúdo gerado por content/portfolio.json
   ========================================================= */
.portfolio-video-list {
  display: grid;
  gap: 28px;
}

.portfolio-video-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.portfolio-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(18, 212, 216, 0.2);
  border-radius: 18px;
  background: #060d14;
}

.portfolio-media video,
.portfolio-media iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.portfolio-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(
      circle at 28% 25%,
      rgba(18, 212, 216, 0.22),
      transparent 28%
    ),
    linear-gradient(135deg, #0a1b2c, #063952 58%, #087f92);
}

.portfolio-placeholder strong {
  display: block;
  font-size: clamp(1.45rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.portfolio-placeholder span {
  display: block;
  margin-top: 10px;
  color: #bfeff3;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-content {
  padding: 12px 18px 12px 0;
}
.portfolio-content .tag {
  margin-bottom: 9px;
}
.portfolio-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}
.portfolio-content p {
  color: var(--muted);
}
.portfolio-content ul {
  padding-left: 20px;
}
.portfolio-content li {
  margin: 7px 0;
}
.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.portfolio-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

.portfolio-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #060d14;
}

.portfolio-photo-content {
  padding: 20px;
}
.portfolio-photo-content .tag {
  margin: 0 0 9px;
}
.portfolio-photo-content h3 {
  margin-bottom: 10px;
}
.portfolio-photo-content p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.portfolio-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px dashed color-mix(in srgb, var(--page-accent) 45%, var(--line));
  border-radius: 20px;
  background: var(--surface);
}

.portfolio-empty h3 {
  margin-bottom: 8px;
}
.portfolio-empty p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.portfolio-drive-action {
  display: flex;
  justify-content: center;
}

.portfolio-drive-action .button {
  width: min(100%, 430px);
}
.portfolio-drive-disabled {
  cursor: default;
  opacity: 0.72;
}

.portfolio-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.portfolio-guide article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}
.portfolio-guide span {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 850;
}
.portfolio-guide h3 {
  margin: 14px 0 8px;
}
.portfolio-guide p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .portfolio-video-card {
    grid-template-columns: 1fr;
  }
  .portfolio-content {
    padding: 4px 4px 12px;
  }
  .portfolio-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portfolio-guide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .portfolio-video-card {
    gap: 20px;
    padding: 14px;
    border-radius: 20px;
  }
  .portfolio-media {
    border-radius: 14px;
  }
  .portfolio-photo-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-empty {
    padding: 24px;
  }
}

/* Tech Take 9.0 — renovação visual cinematográfica */
:root {
  --bg: #05090f;
  --surface: #0b121c;
  --surface-2: #101a27;
  --ink: #eef6fb;
  --text: #eef6fb;
  --muted: #9badba;
  --line: rgba(153, 190, 210, 0.17);
  --accent: #18d7df;
  --accent-2: #54a8ff;
  --dark: #05090f;
  --dark-2: #0b1521;
  --light: #f5fbff;
  --page-accent: #18d7df;
  --page-accent-soft: rgba(24, 215, 223, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --container: 1240px;
}

body {
  background:
    radial-gradient(circle at 18% -10%, rgba(20, 132, 181, 0.16), transparent 32rem),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
}

h1, h2, h3, .brand-copy strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

h1, h2 { letter-spacing: -0.052em; }

.site-header {
  background: rgba(5, 9, 15, 0.78);
  border-bottom-color: rgba(126, 205, 230, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
}

.header-inner { height: 82px; }

.brand { gap: 11px; }
.brand-mark { width: 44px; height: 44px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1.05rem; letter-spacing: -0.02em; }
.brand-copy small { color: var(--muted); font-size: .61rem; letter-spacing: .2em; text-transform: uppercase; margin-top: 5px; }

.main-nav { gap: clamp(14px, 2vw, 25px); font-size: .87rem; }
.main-nav > a:not(.nav-cta) { color: #c6d3dc; }
.nav-login { color: #7f98a9 !important; }
.nav-cta {
  color: #031014 !important;
  background: linear-gradient(135deg, #22e3de, #55a7ff);
  box-shadow: 0 9px 30px rgba(24, 215, 223, 0.2);
}

.page-hero {
  padding: clamp(74px, 10vw, 128px) 0 clamp(76px, 9vw, 116px);
  background:
    linear-gradient(105deg, rgba(5, 9, 15, .97) 0%, rgba(5, 14, 23, .94) 50%, rgba(6, 22, 34, .88) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(98, 183, 220, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 183, 220, .12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.page-hero::after {
  width: 620px;
  height: 620px;
  right: -190px;
  top: -310px;
  background: radial-gradient(circle, rgba(24, 215, 223, .46), transparent 68%);
  filter: blur(15px);
}

.hero-grid { gap: clamp(42px, 6vw, 86px); }
.eyebrow { color: var(--accent); letter-spacing: .18em; font-size: .7rem; }
.page-hero .eyebrow, .section-dark .eyebrow, .final-cta .eyebrow { color: var(--accent); }
.hero-copy h1 { text-wrap: balance; }
.hero-lead { color: #aebfca; line-height: 1.72; max-width: 680px; }

.button { border-radius: 12px; min-height: 52px; padding: 13px 22px; letter-spacing: -.01em; }
.button-primary { color: #031014; background: linear-gradient(135deg, #20e1dc, #52a9ff); box-shadow: 0 16px 38px rgba(24, 215, 223, .2); }
.button-ghost { border-color: rgba(180, 216, 231, .3); }
.button:hover { transform: translateY(-3px); }

.page-home .hero-showcase {
  border-color: rgba(24, 215, 223, .34);
  border-radius: 22px;
  box-shadow: 0 34px 100px rgba(0,0,0,.62), 0 0 90px rgba(24,215,223,.13);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
}

.trust-strip { background: #07101a; border-block: 1px solid var(--line); }
.trust-grid { gap: 0; }
.trust-grid span {
  position: relative;
  color: #bcd0dc;
  font-size: .76rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.trust-grid span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 10px; border-radius: 99px; background: var(--accent); box-shadow: 0 0 14px var(--accent); }

.section { padding-block: clamp(76px, 9vw, 122px); }
.section-heading { max-width: 760px; margin-bottom: clamp(36px, 5vw, 58px); }
.section-heading > p:last-child, .split-layout p, .service-card p, .niche-card p, .detail-card p { color: var(--muted); }

.service-card, .niche-card, .detail-card, .mini-card, .package-card, .benefit, .login-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(15, 27, 40, .94), rgba(7, 14, 22, .96));
  box-shadow: 0 18px 55px rgba(0,0,0,.19);
}

.service-card { position: relative; overflow: hidden; min-height: 300px; }
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--page-accent);
  opacity: .07;
  filter: blur(9px);
}
.service-card:hover, .niche-card:hover { border-color: rgba(24, 215, 223, .42); transform: translateY(-5px); }
.service-card, .niche-card { transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.card-index { color: var(--accent); }
.service-card a, .text-link { color: var(--accent); font-weight: 800; }

.section-dark { background: linear-gradient(120deg, #08111b, #0b1824); border-block: 1px solid var(--line); }
.section-tinted { background: #08111a; border-block: 1px solid rgba(133, 194, 218, .11); }
.project-stack article { background: rgba(13, 27, 40, .75); border-color: var(--line); }
.project-stack article span { color: var(--accent); }

.process-grid li { border-top-color: rgba(24, 215, 223, .35); }
.process-grid li > span { color: var(--accent); }

.equipment-grid span { color: #cfe0e9; background: rgba(15, 28, 42, .8); border-color: var(--line); }

.final-cta {
  background:
    radial-gradient(circle at 85% 20%, rgba(85, 168, 255, .27), transparent 28rem),
    linear-gradient(130deg, #0a5368, #06263a 55%, #07111b);
  border-top: 1px solid rgba(24, 215, 223, .22);
}
.final-cta h2 { max-width: 880px; }
.button-light { color: #06131a; }

.site-footer { background: #03070b; border-top: 1px solid var(--line); }
.site-footer p, .site-footer a, .footer-bottom { color: #8fa3b0; }
.site-footer h2 { color: #dceaf1; }
.footer-logo { filter: drop-shadow(0 0 22px rgba(24, 215, 223, .12)); }

.breadcrumb { background: #07101a; border-bottom-color: var(--line); }
.breadcrumb a, .breadcrumb span { color: var(--muted); }

input, select, textarea {
  color: var(--ink);
  background: #07111b;
  border-color: var(--line);
}

.mobile-contact a { color: #021014; background: linear-gradient(135deg, #22e3de, #55a7ff); }

@media (max-width: 960px) {
  .main-nav { background: rgba(5, 11, 18, .98); border-color: var(--line); box-shadow: var(--shadow); }
  .menu-button { color: var(--ink); }
  .page-home .hero-showcase { transform: none; }
}

@media (max-width: 760px) {
  .header-inner { height: 70px; }
  .brand-mark { width: 39px; height: 39px; }
  .page-home .page-hero { padding-top: 55px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .trust-grid span { text-align: left; }
  .service-card { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card, .niche-card, .button { transition: none; }
}

/* Shared public motion layer. Keep login and admin visually static. */
:root {
  --motion-ease: cubic-bezier(0.22, 0.8, 0.24, 1);
  --motion-fast: 180ms;
  --motion-medium: 520ms;
}

.js:not(.animations-ready) .reveal,
.js:not(.animations-ready) [data-animate] {
  opacity: 1;
  transform: none;
}

.js.animations-ready .reveal,
.js.animations-ready [data-animate] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity var(--motion-medium) var(--motion-ease),
    transform var(--motion-medium) var(--motion-ease);
  transition-delay: var(--animate-delay, 0ms);
}

.js.animations-ready [data-animate="fade-left"] {
  transform: translate3d(18px, 0, 0);
}

.js.animations-ready [data-animate="fade-right"] {
  transform: translate3d(-18px, 0, 0);
}

.js.animations-ready [data-animate="scale-in"] {
  transform: scale(0.98);
}

.js.animations-ready .reveal.is-visible,
.js.animations-ready [data-animate].is-visible,
.page-login .reveal,
.page-admin .reveal,
.page-login [data-animate],
.page-admin [data-animate] {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .main-nav a {
    position: relative;
  }

  .main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--motion-fast) var(--motion-ease);
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .brand:hover .brand-mark,
  .brand:focus-visible .brand-mark {
    transform: scale(1.03);
  }

  .brand-mark {
    transition: transform var(--motion-fast) var(--motion-ease);
  }

  .service-card:hover,
  .niche-card:hover,
  .detail-card:hover,
  .package-card:hover {
    transform: translateY(-4px);
  }

  .portfolio-media video,
  .portfolio-media iframe,
  .portfolio-photo-card img {
    transition: transform 650ms var(--motion-ease);
  }

  .portfolio-video-card:hover .portfolio-media video,
  .portfolio-video-card:hover .portfolio-media iframe,
  .portfolio-photo-card:hover img {
    transform: scale(1.02);
  }
}

.button {
  transition:
    transform var(--motion-fast) var(--motion-ease),
    background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    color var(--motion-fast) ease;
}

.button:active {
  transform: scale(0.98);
}

.final-cta .button-primary {
  position: relative;
  overflow: hidden;
}

.final-cta .button-primary::after {
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 35%;
  background: rgba(255, 255, 255, 0.22);
  content: "";
  transform: skewX(-18deg);
  transition: transform 650ms var(--motion-ease);
}

@media (hover: hover) and (pointer: fine) {
  .final-cta .button-primary:hover::after,
  .final-cta .button-primary:focus-visible::after {
    transform: translateX(420%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js.animations-ready .reveal,
  .js.animations-ready [data-animate] {
    opacity: 1;
  }
  .js.animations-ready .reveal,
  .js.animations-ready [data-animate],
  .button,
  .brand-mark,
  .portfolio-media video,
  .portfolio-media iframe,
  .portfolio-photo-card img {
    transition: opacity 1ms linear;
    transform: none;
  }

  .final-cta .button-primary::after {
    display: none;
  }
}

/* Acessibilidade, leitura e formulário: complemento à identidade existente. */
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--accent, #18d7df); outline-offset: 4px; }
.form-fields { border: 0; padding: 0; margin: 0; display: grid; gap: 1.2rem; min-width: 0; }
.form-fields:disabled { opacity: .55; }
.form-unavailable { padding: 1rem; border: 1px solid var(--line); border-radius: 12px; }
.form-optional { padding: 1rem; border: 1px solid var(--line); border-radius: 12px; min-width: 0; }
.form-optional summary { cursor: pointer; font-weight: 700; }
.form-optional[open] { display: grid; gap: 1rem; }
.form-optional[open] > * + * { margin-top: 1rem; }
.hero-slogan { color: var(--accent); font-weight: 600; }
.contact-note a, .site-footer a { overflow-wrap: anywhere; }
.project-watch h1 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.1; }
.project-watch .portfolio-media { margin: 1.5rem 0; aspect-ratio: 848 / 478; }
.project-watch .portfolio-media video { width: 100%; height: 100%; object-fit: contain; }
.project-watch ul { padding-left: 1.4rem; margin-bottom: 1.5rem; }
.button:disabled { cursor: not-allowed; opacity: .6; transform: none; }
.mobile-contact a { min-height: 44px; }
.page-budget .inquiry-form { scroll-margin-top: 100px; }
.page-budget .form-status:empty { display: none; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }

/* O foco não fica sob o cabeçalho ou o atalho fixos. */
html { scroll-padding-top: 100px; scroll-padding-bottom: 90px; }
.breadcrumb ol { margin-inline: auto; flex-wrap: wrap; padding-block: .6rem; }
.breadcrumb li { min-width: 0; }
.breadcrumb [aria-current="page"] { white-space: normal; overflow-wrap: anywhere; }
.page-budget .mobile-contact, .page-admin .mobile-contact { display: none; }
.consent { display: block !important; }
.consent input { display: inline-block; vertical-align: middle; margin-right: .5rem; }
@media (max-width: 1000px) {
  html:not(.js) .header-inner { height: auto; flex-wrap: wrap; padding-block: 16px; }
  html:not(.js) .menu-button { display: none; }
  html:not(.js) .main-nav { display: flex; position: static; width: 100%; box-shadow: none; }
  .main-nav { max-height: calc(100dvh - 90px); overflow-y: auto; }
}
@media (max-width: 760px) {
  .main-nav { top: 70px; }
}
