:root {
  --tp-cyan: #169fe6;
  --tp-sky: #55a7dc;
  --tp-blue: #3f68bd;
  --tp-navy: #24396e;
  --tp-ink: #050b16;
  --tp-bg: #07111f;
  --tp-panel: #0b1728;
  --tp-panel-2: #101f34;
  --tp-line: rgba(255, 255, 255, 0.10);
  --tp-muted: #a9b9cd;
  --tp-white: #f7fbff;
  --tp-radius: 24px;
  --tp-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body.tp-page {
  background: var(--tp-bg) !important;
  color: var(--tp-white);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

body.tp-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(800px circle at var(--mx, 70%) var(--my, 10%), rgba(22, 159, 230, 0.12), transparent 45%), linear-gradient(180deg, #06101e 0, #07111f 55%, #040a13 100%);
}

.tp-shell {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.tp-section {
  padding: 100px 0;
  position: relative;
}

.tp-section-sm {
  padding: 70px 0;
}

.tp-eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(85, 167, 220, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #cbefff;
  background: rgba(22, 159, 230, 0.08);
}

.tp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tp-cyan);
  box-shadow: 0 0 20px var(--tp-cyan);
}

.tp-display {
  font-size: clamp(2.4rem, 6vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.tp-h1 {
  font-size: clamp(2.2rem, 4.8vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.tp-h2 {
  font-size: clamp(1.85rem, 3.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.tp-lead {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.65;
  color: var(--tp-muted);
  max-width: 760px;
}

.tp-gradient-text {
  background: linear-gradient(90deg, #fff 0%, #8bd2ff 52%, #4098ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tp-btn-primary {
  background: linear-gradient(135deg, var(--tp-cyan), var(--tp-blue));
  color: #fff;
  box-shadow: 0 12px 38px rgba(22, 159, 230, 0.25);
}

.tp-btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(22, 159, 230, 0.38);
}

.tp-btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.tp-btn-outline:hover {
  color: #fff;
  border-color: rgba(85, 167, 220, 0.65);
  background: rgba(22, 159, 230, 0.09);
}

/* Header & Navegação */
.tp-header-wrap {
  position: sticky;
  top: 14px;
  z-index: 1000;
  padding: 14px 18px;
  width: 100%;
}

.tp-header {
  max-width: 1390px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background: rgba(5, 11, 22, 0.85);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.tp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
}

.tp-logo img {
  width: 210px;
  height: auto;
  display: block;
}

.tp-navlinks {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tp-navlinks a, .tp-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #dce9f8;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.93rem;
  white-space: nowrap;
}

.tp-navlinks a:hover, .tp-navlinks a.active, .tp-dropdown-trigger:hover, .tp-dropdown-trigger.active, .tp-dropdown-trigger[aria-expanded=true] {
  background: rgba(22, 159, 230, 0.11);
  color: white;
}

.tp-dropdown {
  position: relative;
}

.tp-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  width: 620px;
  max-width: calc(100vw - 32px);
  padding: 14px;
  border: 1px solid var(--tp-line);
  border-radius: 18px;
  background: #081423;
  box-shadow: var(--tp-shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.tp-dropdown:hover > .tp-dropdown-menu, .tp-dropdown:focus-within > .tp-dropdown-menu, .tp-dropdown.is-open > .tp-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.tp-dropdown-entry {
  min-width: 0;
}

.tp-dropdown-link {
  min-height: 60px;
  align-items: flex-start !important;
  flex-direction: column;
  justify-content: center;
}

.tp-dropdown-menu a {
  padding: 10px 14px;
}

.tp-dropdown-menu small {
  display: block;
  color: #7f98b4;
  margin-top: 2px;
  font-size: 0.8rem;
}

.tp-dropdown-children {
  margin: 0 10px 8px 20px;
  padding-left: 10px;
  border-left: 1px solid var(--tp-line);
}

.tp-dropdown-children .tp-dropdown-link {
  min-height: auto;
  padding: 6px 10px;
  font-size: 0.84rem;
}

.tp-mobile-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--tp-line);
  border-radius: 12px;
  width: 44px;
  height: 44px;
}

.tp-mobile-panel {
  display: none;
  padding: 10px 16px 16px;
}

.tp-mobile-menu-item > a {
  display: block;
  padding: 13px 4px 13px calc(4px + var(--menu-depth, 0) * 18px);
  border-top: 1px solid var(--tp-line);
  color: white;
  text-decoration: none;
}

.tp-mobile-menu-item > a.active {
  color: #85d4ff;
}

.tp-mobile-menu-children {
  margin: 0;
}

/* Home Hero */
.tp-hero-home {
  padding: 80px 0 30px;
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
}

.tp-hero-home::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tp-cyan), transparent);
  opacity: 0.35;
}

.tp-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: end;
  gap: 30px;
  width: 100%;
}

.tp-hero-copy-left, .tp-hero-copy-right {
  align-self: center;
  padding-bottom: 50px;
}

.tp-founder-stage {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.tp-founder-stage::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 159, 230, 0.30), rgba(63, 104, 189, 0.10) 48%, transparent 68%);
  filter: blur(5px);
  bottom: 35px;
}

.tp-founder-stage::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 1px;
  bottom: 19px;
  background: var(--tp-cyan);
  box-shadow: 0 0 40px rgba(22, 159, 230, 0.65);
}

.tp-founder-stage img {
  position: relative;
  z-index: 3;
  max-height: 680px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.42));
}

.tp-hero-word {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-size: clamp(3.5rem, 9vw, 10.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  user-select: none;
}

.tp-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a8c7df;
  font-size: 0.9rem;
}

.tp-logo-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

/* Cards */
.tp-card {
  height: 100%;
  padding: 30px;
  border-radius: var(--tp-radius);
  background: linear-gradient(160deg, rgba(16, 31, 52, 0.92), rgba(7, 17, 31, 0.92));
  border: 1px solid var(--tp-line);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.16);
  transition: all 0.35s ease;
}

.tp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(85, 167, 220, 0.36);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.28);
}

.tp-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(22, 159, 230, 0.2), rgba(63, 104, 189, 0.2));
  border: 1px solid rgba(85, 167, 220, 0.25);
  font-size: 1.2rem;
  color: #88d5ff;
}

.tp-card h3 {
  font-size: 1.35rem;
  margin: 18px 0 10px;
}

.tp-card p {
  color: var(--tp-muted);
  line-height: 1.65;
}

.tp-card-link {
  color: #85d4ff;
  text-decoration: none;
  font-weight: 700;
}

.tp-card-link:hover {
  color: white;
}

.tp-card-number {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #6e8daa;
}

/* Pilares / Diferenciais Desktop */
.tp-pillar {
  padding: 34px 0;
  border-top: 1px solid var(--tp-line);
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.tp-pillar:last-child {
  border-bottom: 1px solid var(--tp-line);
}

.tp-pillar .num {
  font-size: 0.86rem;
  color: #6f8ba6;
  font-weight: 600;
}

.tp-pillar h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  margin: 0;
  line-height: 1.2;
}

.tp-pillar p {
  color: var(--tp-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.tp-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tp-badge {
  font-size: 0.8rem;
  border: 1px solid var(--tp-line);
  padding: 7px 12px;
  border-radius: 999px;
  color: #bdd0e0;
  background: rgba(255, 255, 255, 0.025);
}

/* Portfolio Projects */
.tp-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--tp-line);
  background: #07101d;
}

.tp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tp-media:hover img {
  transform: scale(1.04);
}

.tp-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 7, 15, 0.92) 100%);
}

.tp-media-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.tp-media-caption p {
  color: #a8b9cb;
  margin: 0;
}

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

.tp-project {
  grid-column: span 6;
  min-height: 430px;
}

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

.tp-project.narrow {
  grid-column: span 4;
}

/* Process Steps Desktop */
.tp-process {
  counter-reset: step;
}

.tp-step {
  counter-increment: step;
  padding: 30px 0;
  border-top: 1px solid var(--tp-line);
  display: grid;
  grid-template-columns: 80px 1.1fr 1.3fr;
  gap: 24px;
  align-items: start;
}

.tp-step::before {
  content: "0" counter(step);
  font-size: 0.84rem;
  color: #6f8ba6;
  font-weight: 600;
}

.tp-step h3 {
  font-size: 1.55rem;
  margin: 0;
}

.tp-step p {
  color: var(--tp-muted);
  line-height: 1.65;
  margin: 0;
}

.tp-stat {
  padding: 26px;
  border-left: 1px solid var(--tp-line);
}

.tp-stat strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(90deg, #fff, #72c9ff);
  -webkit-background-clip: text;
  color: transparent;
}

.tp-stat span {
  color: var(--tp-muted);
}

.tp-cta {
  padding: clamp(38px, 6vw, 85px);
  border-radius: 32px;
  border: 1px solid rgba(85, 167, 220, 0.22);
  background: radial-gradient(900px circle at 80% 0%, rgba(22, 159, 230, 0.22), transparent 48%), linear-gradient(135deg, #0b1b30, #07111f);
  position: relative;
  overflow: hidden;
}

.tp-cta::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  right: -70px;
  bottom: -110px;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.015), 0 0 0 90px rgba(255, 255, 255, 0.012);
}

/* Service Page Hero */
.tp-service-hero {
  padding: 100px 0 70px;
  position: relative;
}

.tp-service-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.tp-service-visual {
  height: 520px;
  position: relative;
}

.tp-service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.tp-service-visual::before {
  content: "";
  position: absolute;
  inset: -10px 16px 16px -10px;
  border: 1px solid rgba(85, 167, 220, 0.24);
  border-radius: 34px;
  z-index: -1;
}

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

.tp-feature-list li {
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--tp-line);
  position: relative;
  color: #d5e3f1;
}

.tp-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #70cbff;
  font-weight: 800;
}

.tp-outcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.tp-outcome > div {
  padding: 26px;
  border: 1px solid var(--tp-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.tp-outcome .from h4 {
  color: #8fa2b8;
}

.tp-outcome .to {
  border-color: rgba(22, 159, 230, 0.3);
  background: rgba(22, 159, 230, 0.05);
}

/* Accordion FAQs */
.tp-faq .accordion-item {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--tp-line);
  color: white;
}

.tp-faq .accordion-item:last-child {
  border-bottom: 1px solid var(--tp-line);
}

.tp-faq .accordion-button {
  background: transparent;
  color: white;
  padding: 22px 0;
  font-size: 1.12rem;
  box-shadow: none;
}

.tp-faq .accordion-button::after {
  filter: invert(1);
}

.tp-faq .accordion-body {
  padding: 0 0 22px;
  color: var(--tp-muted);
  line-height: 1.65;
}

/* Footer & WhatsApp */
.tp-footer {
  margin-top: 80px;
  border-top: 1px solid var(--tp-line);
  padding: 65px 0 25px;
  background: #040a13;
}

.tp-footer-logo {
  width: 230px;
}

.tp-footer a {
  color: #b9cce0;
  text-decoration: none;
}

.tp-footer a:hover {
  color: #7ed2ff;
}

.tp-footer-small {
  color: #70879f;
  font-size: 0.88rem;
}

.tp-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tp-socials a {
  border: 1px solid var(--tp-line);
  border-radius: 999px;
  padding: 8px 12px;
}

.tp-wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #19b864;
  color: white !important;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  font-size: 1.45rem;
  transition: all 0.25s ease;
}

.tp-wa-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.tp-form .form-control, .tp-form .form-select {
  background: #091626;
  border: 1px solid var(--tp-line);
  color: #fff;
  min-height: 52px;
  border-radius: 14px;
}

.tp-form textarea.form-control {
  min-height: 140px;
}

.tp-form .form-control::placeholder {
  color: #6e859d;
}

.tp-form .form-control:focus, .tp-form .form-select:focus {
  border-color: rgba(22, 159, 230, 0.65);
  box-shadow: 0 0 0 4px rgba(22, 159, 230, 0.08);
}

.tp-brand-ribbon {
  overflow: hidden;
  border-top: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
  padding: 16px 0;
}

.tp-marquee {
  display: flex;
  width: max-content;
  gap: 45px;
  animation: tpMarquee 26s linear infinite;
  color: #7f99b4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

@keyframes tpMarquee {
  to {
    transform: translateX(-50%);
  }
}

.tp-float {
  animation: tpFloat 5s ease-in-out infinite;
}

@keyframes tpFloat {
  50% {
    transform: translateY(-10px);
  }
}

/* ==========================================================================
   RESPONSIVIDADE: LAPTOPS / DESKTOPS PEQUENOS (1024px - 1199px)
   ========================================================================== */
@media (max-width: 1199px) {
  .tp-navlinks, .tp-nav .tp-btn {
    display: none !important;
  }
  .tp-mobile-toggle {
    display: block !important;
  }
  .tp-mobile-panel.open {
    display: block !important;
  }
  .tp-home-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .tp-hero-copy-left {
    grid-column: 1 / -1;
    padding-bottom: 15px;
  }
  .tp-founder-stage {
    min-height: 560px;
  }
  .tp-service-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .tp-project.wide, .tp-project.narrow {
    grid-column: span 6;
  }
  .tp-dropdown-menu {
    display: none !important;
  }
}

/* ==========================================================================
   RESPONSIVIDADE: TABLETS (768px - 991px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 991px) {
  .tp-section {
    padding: 75px 0;
  }
  .tp-section-sm {
    padding: 50px 0;
  }
  .tp-home-grid {
    grid-template-columns: 1fr;
  }
  .tp-founder-stage {
    min-height: 480px;
    order: 2;
  }
  .tp-founder-stage img {
    max-height: 500px;
  }
  .tp-hero-copy-right {
    order: 3;
    padding-bottom: 0;
  }
  .tp-pillar {
    grid-template-columns: 60px 1fr !important;
    gap: 16px !important;
  }
  .tp-pillar > div {
    grid-column: 2 !important;
    width: 100% !important;
  }
  .tp-step {
    grid-template-columns: 60px 1fr !important;
    gap: 16px !important;
  }
  .tp-step p {
    grid-column: 2 !important;
    width: 100% !important;
  }
  .tp-service-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .tp-service-visual {
    height: 420px;
  }
  .tp-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-project, .tp-project.wide, .tp-project.narrow {
    grid-column: span 1 !important;
    min-height: 360px;
  }
  .tp-outcome {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RESPONSIVIDADE: SMARTPHONES / MODO MOBILE (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
  .tp-shell {
    padding: 0 18px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .tp-section {
    padding: 55px 0 !important;
  }
  
  .tp-section-sm {
    padding: 40px 0 !important;
  }
  
  .tp-header-wrap {
    top: 6px !important;
    padding: 6px 12px !important;
  }
  
  .tp-header {
    border-radius: 16px !important;
  }
  
  .tp-logo img {
    width: 160px !important;
  }
  
  /* Hero Home no Smartphone */
  .tp-hero-home {
    padding: 35px 0 20px !important;
    min-height: auto !important;
  }
  
  .tp-home-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    width: 100% !important;
  }
  
  .tp-hero-copy-left {
    order: 1 !important;
    padding-bottom: 0 !important;
    width: 100% !important;
  }
  
  .tp-founder-stage {
    order: 2 !important;
    min-height: 360px !important;
    max-height: 460px !important;
    margin: 10px 0 !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  
  .tp-founder-stage::before {
    width: 300px !important;
    height: 300px !important;
  }
  
  .tp-founder-stage img {
    max-height: 430px !important;
    width: auto !important;
    max-width: 88% !important;
  }
  
  .tp-hero-word {
    font-size: 16vw !important;
    top: 40% !important;
  }
  
  .tp-hero-copy-right {
    order: 3 !important;
    padding-bottom: 0 !important;
    width: 100% !important;
  }
  
  .tp-hero-copy-right .d-flex {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }
  
  .tp-btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 48px !important;
  }

  /* CORREÇÃO DOS PILARES (Texto vertical espremido corrigido) */
  .tp-pillar {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 22px 0 !important;
    width: 100% !important;
  }
  
  .tp-pillar .num {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: var(--tp-cyan) !important;
    display: inline-block !important;
  }
  
  .tp-pillar h3 {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    width: 100% !important;
    word-break: break-word !important;
  }
  
  .tp-pillar > div {
    width: 100% !important;
    margin-top: 4px !important;
  }
  
  .tp-pillar p {
    font-size: 0.94rem !important;
    line-height: 1.6 !important;
    width: 100% !important;
    color: var(--tp-muted) !important;
    margin-bottom: 12px !important;
  }
  
  .tp-badge-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    width: 100% !important;
  }
  
  .tp-badge {
    font-size: 0.76rem !important;
    padding: 6px 10px !important;
  }

  /* CORREÇÃO DO MÉTODO / PROCESS STEPS */
  .tp-step {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 18px 0 !important;
    width: 100% !important;
  }
  
  .tp-step::before {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: var(--tp-cyan) !important;
    display: block !important;
    margin-bottom: 2px !important;
  }
  
  .tp-step h3 {
    font-size: 1.25rem !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  .tp-step p {
    font-size: 0.94rem !important;
    line-height: 1.6 !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* Páginas de Serviços no Mobile */
  .tp-service-hero {
    padding: 50px 0 30px !important;
  }
  
  .tp-service-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    width: 100% !important;
  }
  
  .tp-service-visual {
    height: auto !important;
    min-height: 240px !important;
    max-height: 320px !important;
    width: 100% !important;
    border-radius: 20px !important;
  }
  
  .tp-service-visual img {
    height: 100% !important;
    max-height: 320px !important;
    border-radius: 20px !important;
    object-fit: cover !important;
  }
  
  .tp-service-visual::before {
    display: none !important;
  }

  /* Cards e Grade */
  .tp-card {
    padding: 22px 18px !important;
    border-radius: 18px !important;
  }
  
  .tp-card h3 {
    font-size: 1.22rem !important;
    margin: 14px 0 6px !important;
  }
  
  .tp-card p {
    font-size: 0.9rem !important;
  }

  /* Antes vs Depois */
  .tp-outcome {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }
  
  .tp-outcome > div {
    padding: 18px 16px !important;
    border-radius: 16px !important;
    width: 100% !important;
  }
  
  .tp-outcome h4 {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
  }

  /* Portfólio no Mobile */
  .tp-portfolio-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }
  
  .tp-project, .tp-project.wide, .tp-project.narrow {
    min-height: 260px !important;
    width: 100% !important;
    border-radius: 18px !important;
    margin-bottom: 0 !important;
  }
  
  .tp-media-caption {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
  }
  
  .tp-media-caption h3 {
    font-size: 1.15rem !important;
  }

  /* CTA Final */
  .tp-cta {
    padding: 32px 18px !important;
    border-radius: 20px !important;
    text-align: left !important;
  }
  
  .tp-cta h2 {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
  }
  
  .tp-cta .tp-btn {
    width: 100% !important;
    margin-top: 15px !important;
  }

  .tp-stat {
    border-left: 0 !important;
    border-top: 1px solid var(--tp-line) !important;
    padding: 16px 0 !important;
  }

  .tp-footer {
    margin-top: 45px !important;
    padding: 45px 0 20px !important;
  }
  
  .tp-footer-logo {
    width: 175px !important;
  }

  .tp-wa-float {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.3rem !important;
    right: 16px !important;
    bottom: 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  [data-tp-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Legal Pages (Privacy Policy, Terms of Use) */
.legal-page {
    padding: 100px 0;
    color: var(--tp-body-color, #cbefff);
    background-color: var(--tp-bg-color, #010c14); /* assuming dark theme from earlier colors */
}
.legal-page .container {
    max-width: 800px;
    margin: 0 auto;
}
.legal-header {
    text-align: center;
    margin-bottom: 50px;
}
.legal-header .legal-kicker {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(85, 167, 220, 0.1);
    color: #85d4ff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.legal-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.legal-header .legal-updated {
    font-size: 16px;
    color: #7f98b4;
}
.legal-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #dce9f8;
}
.legal-section {
    margin-bottom: 40px;
}
.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #dce9f8;
    margin-bottom: 15px;
    margin-top: 30px;
}
.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #a8c7df;
}
.legal-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #a8c7df;
    margin-bottom: 8px;
    position: relative;
    list-style-type: disc;
}
.legal-section strong {
    color: #fff;
    font-weight: 600;
}
.legal-contact {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-style: normal;
}
.legal-contact p {
    margin-bottom: 10px;
}
.legal-contact p:last-child {
    margin-bottom: 0;
}
.legal-contact a {
    color: #88d5ff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.legal-contact a:hover {
    color: #fff;
    text-decoration: underline;
}
.legal-section a {
    color: #88d5ff;
    text-decoration: none;
}
.legal-section a:hover {
    color: #fff;
    text-decoration: underline;
}
.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.legal-footer p {
    font-size: 14px;
    color: #7f98b4;
    margin-bottom: 5px;
}
