:root {
  --color-primary: #057bdc;
  --color-primary-dark: #0466ba;
  --color-dark: #0b1220;
  --color-white: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.85);
  --font-heading: "Doppio One", serif;
  --font-body: "Rubik", system-ui, sans-serif;
  --container: 1280px;
  --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* offset para não ficar embaixo do menu fixo ao ancorar */
section[id] { scroll-margin-top: 80px; }

/* ==========================================================================
   Animações de entrada (reveal on scroll)
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity .8s cubic-bezier(.22,.6,.2,1),
    transform .8s cubic-bezier(.22,.6,.2,1);
  will-change: opacity, transform;
}
[data-reveal="up"]    { transform: translateY(30px); }
[data-reveal="down"]  { transform: translateY(-30px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.92); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-track {
  background-color: hsl(0, 3%, 94%);
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #047cdc, #01325b);
  border-radius: 12px;
  border: 1px solid #001737;
}

html, body { height: 100%; }

body {
  font-family: var(--font-body);
  color: var(--color-white);
  background: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 22px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

.logo img {
  height: 64px;
  width: auto;
  transition: height .3s ease;
}
.logo .logo-icon { display: none; height: 40px; }

/* Sticky compact header */
.site-header {
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 0;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: headerSlideDown .35s ease;
}
.site-header.is-sticky .logo-full { display: none; }
.site-header.is-sticky .logo-icon { display: inline-block; }
.site-header.is-sticky .logo img { height: 40px; }

/* Sticky: hide CTA, show WhatsApp icon, push nav to the left near the logo */
.site-header.is-sticky .header-cta { display: none; }
.site-header.is-sticky .header-wa { display: inline-flex; }
.site-header.is-sticky .main-nav {
  flex: none;
  margin-right: auto;
  margin-left: 24px;
}
.site-header.is-sticky .main-nav > ul {
  justify-content: flex-start;
}

/* Header WhatsApp icon (only visible in sticky mode) */
.header-wa {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
  margin-left: 22px;
  margin-right: -18px;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 2px 6px rgba(18, 140, 126, 0.25);
}
.header-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(18, 140, 126, 0.4);
}

.theme-clean .site-header.is-sticky {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.08);
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--color-primary); }

.main-nav .has-sub { position: relative; }

.main-nav .submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 180px;
  background: #fff;
  color: #111;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
}

.main-nav .has-sub:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .submenu a {
  color: #333;
  padding: 8px 18px;
  display: block;
  font-size: 14px;
}

.main-nav .submenu a:hover { color: var(--color-primary); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, background .2s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .35s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.35);
}

.btn-primary:hover i.fa-whatsapp { transform: scale(1.15); }
.btn-primary i.fa-whatsapp { transition: transform .25s ease; }

/* CTA da hero maior */
.hero-actions .btn {
  padding: 16px 28px;
  font-size: 17px;
  gap: 12px;
}
.hero-actions .btn i.fa-whatsapp { font-size: 20px; }

/* Theme toggle — minimalist pill switch */
.theme-toggle {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.theme-toggle:focus { outline: none; }
.theme-toggle:focus-visible .tt-track { box-shadow: 0 0 0 2px rgba(5,123,220,0.35); }

.tt-track {
  position: relative;
  width: 62px;
  height: 30px;
  border-radius: 999px;
  transition: background .3s ease, box-shadow .3s ease;
  overflow: visible;
}

.tt-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .32s cubic-bezier(.4,.2,.2,1), background .3s ease, color .3s ease;
}

.tt-thumb i {
  font-size: 12px;
  line-height: 1;
  transition: color .3s ease;
}

/* ===== DARK mode active (default) — dark track, white thumb on LEFT with sun ===== */
.tt-track { background: #1a1e26; }
.tt-thumb { transform: translateX(0); background: #ffffff; }
.tt-thumb-sun  { display: inline-block; color: #1a1e26; }
.tt-thumb-moon { display: none; }

/* ===== CLEAN/LIGHT mode active — white track, dark thumb on RIGHT with moon ===== */
.theme-clean .tt-track {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(11, 31, 58, 0.12);
}
.theme-clean .tt-thumb {
  transform: translateX(32px);
  background: #1a1e26;
}
.theme-clean .tt-thumb-sun  { display: none; }
.theme-clean .tt-thumb-moon { display: inline-block; color: #ffffff; }

/* press effect */
.theme-toggle:active .tt-thumb { transform: translateX(0) scale(0.94); }
.theme-clean .theme-toggle:active .tt-thumb { transform: translateX(32px) scale(0.94); }

/* Hide clean-only elements by default (dark mode) */
.hero-clean-bg,
.hero-clean-video,
.hero-clean-wash,
.hero-texture { display: none; }

/* When clean theme is active */
.theme-clean .hero-clean-bg,
.theme-clean .hero-clean-wash,
.theme-clean .hero-texture { display: block; }
.theme-clean .hero-clean-video { display: block; }
.theme-clean .hero-slide,
.theme-clean .hero-overlay { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 100px;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: kenBurns 14s ease-in-out infinite alternate;
}

.hero-slide.active { opacity: 1; }

@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,18,32,.96) 0%, rgba(11,18,32,.88) 55%, rgba(11,18,32,.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  max-width: 620px;
  justify-self: start;
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.badge-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.badge-dot::before,
.badge-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: .55;
  animation: badgePulse 2s ease-out infinite;
}

.badge-dot::after {
  animation-delay: 1s;
}

@keyframes badgePulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(3);   opacity: 0; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 620px;
}

.hero-title .highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--color-primary);
  opacity: .3;
  border-radius: 4px;
}

.hero-text {
  font-size: 17px;
  color: var(--color-muted);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 500;
}

.play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  transition: transform .2s ease;
}

.play-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.play-btn:hover .play-icon { transform: scale(1.05); }

.hero-clients {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--color-dark);
  object-fit: cover;
  margin-left: -14px;
}
.avatars img:first-child { margin-left: 0; }

.clients-count { display: flex; flex-direction: column; line-height: 1; }
.clients-count .count { font-family: var(--font-heading); font-size: 28px; }
.clients-count .count-label { font-size: 14px; color: var(--color-muted); margin-top: 4px; }

.clients-text {
  max-width: 220px;
  font-size: 13px;
  color: var(--color-muted);
}

/* Lottie globe */
.hero-lottie {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  max-width: 55vw;
  max-height: 90vh;
  z-index: 1;
  pointer-events: none;
}

.hero-lottie svg { width: 100% !important; height: 100% !important; display: block; }

@media (max-width: 1200px) {
  .hero-lottie { width: 480px; height: 480px; right: -60px; opacity: .6; }
}
@media (max-width: 1024px) {
  .hero-lottie { width: 380px; height: 380px; right: -100px; top: auto; bottom: -60px; transform: none; opacity: .4; }
}
@media (max-width: 640px) {
  .hero-lottie { display: none; }
}

/* ---------- Hero floating cards over the globe (dark) ---------- */
.hero-orbit {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  max-width: 55vw;
  max-height: 90vh;
  z-index: 3;
  pointer-events: none;
}

.hi-card {
  position: absolute;
  top: var(--anchor-y);
  left: var(--anchor-x);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* leader line connecting label to the anchor position */
.hi-card::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.05));
  transform: translateY(-50%);
}
.hi-float-1::before,
.hi-float-3::before {
  right: 100%;
  width: 46px;
  background: linear-gradient(-90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.05));
}
.hi-float-2::before {
  left: 100%;
  width: 46px;
}

/* placement offsets */
.hi-float-1,
.hi-float-3 { transform: translate(calc(-100% - 46px), -50%); }
.hi-float-2 {
  transform: translate(46px, -50%);
  flex-direction: row-reverse;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 6px 4px 6px 10px;
}

.hi-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(5, 123, 220, 0.28);
  color: #fff;
  font-size: 16px;
}

.hi-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.hi-body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hi-body strong {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hi-body span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  margin-top: 3px;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hi-float {
  animation: cardFloat 6s ease-in-out infinite;
}
.hi-float-1 { animation-delay: 0s;   animation-duration: 6s; }
.hi-float-2 { animation-delay: 1.2s; animation-duration: 7.5s; }
.hi-float-3 { animation-delay: 0.6s; animation-duration: 6.8s; }

@keyframes cardFloat {
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -8px; }
}

.hi-card:hover .hi-body strong { color: var(--color-primary); }

@media (max-width: 1200px) {
  .hero-orbit { width: 480px; height: 480px; right: -60px; }
}
@media (max-width: 1024px) {
  .hero-orbit {
    width: 380px; height: 380px;
    right: -100px; top: auto; bottom: -60px; transform: none;
    opacity: .85;
  }
}
@media (max-width: 640px) {
  .hero-orbit { display: none; }
}

/* ==========================================================================
   WHY CHOOSE US (modelo Techor)
   ========================================================================== */
.tv-why-choose-area {
  background: #F5F6F7 url('assets/images/why-choose-bg-1-1.png') no-repeat center center;
  background-size: cover;
  color: #0F313A;
  padding: 130px 0 90px;
  position: relative;
  z-index: 1;
}

.tv-why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tv-why-choose-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tv-why-choose-left img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

.tv-why-choose-right { position: relative; }
.tv-why-choose-right .tv-section-title-box .tv-section-title {
  font-size: 36px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .tv-why-choose-right .tv-section-title-box .tv-section-title { font-size: 30px; }
}
@media (max-width: 640px) {
  .tv-why-choose-right .tv-section-title-box .tv-section-title { font-size: 26px; }
}
.tv-why-choose-right .tv-section-title-box p {
  margin-top: 14px;
  color: #4a5568;
  font-size: 15.5px;
  line-height: 1.65;
}
.tv-why-choose-right .tv-section-title-box p:first-of-type { margin-top: 18px; }
.tv-why-cta { margin-top: 28px; }
.tv-why-choose-right .tv-section-title-box p strong {
  color: var(--color-primary);
  font-weight: 600;
}
.tv-why-choose-images {
  position: relative;
  margin-top: 32px;
}
.tv-why-choose-images .img-main {
  width: 100%;
  border-radius: 24px;
  display: block;
}
.tv-why-choose-images .img-abs {
  position: absolute;
  top: -60px;
  right: -30px;
  width: 40%;
  border-radius: 20px;
  border: 6px solid #ffffff;
  box-shadow: 0 20px 40px rgba(11, 31, 58, 0.12);
}

/* 3 icon boxes below */
.tv-why-choose-icon-area { margin-top: 60px; }
.tv-why-choose-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.single-icon-box2 {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: #F5F6F7;
  border-radius: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.single-icon-box2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.08);
}
.single-icon-box2 .icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.single-icon-box2 .icon i {
  font-size: 26px;
  color: var(--color-primary);
}
.single-icon-box2 .content h5 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #0A165E;
  margin: 0 0 8px;
}
.single-icon-box2 .content p {
  color: #4a5568;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .tv-why-choose-area { padding: 90px 0 60px; }
  .tv-why-choose-grid { grid-template-columns: 1fr; gap: 40px; }
  .tv-why-choose-icons-grid { grid-template-columns: 1fr; }
  .tv-why-choose-images .img-abs { right: 0; top: -40px; width: 35%; }
}

/* ==========================================================================
   MARQUEE (faixa animada com destaques)
   ========================================================================== */
.tv-marquee {
  background: #EDEEF1;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}
.tv-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.tv-marquee:hover .tv-marquee-track { animation-play-state: paused; }

.tv-marquee-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
}
.tv-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #4a5568;
  white-space: nowrap;
}
.tv-marquee-item i {
  color: var(--color-primary);
  font-size: 20px;
}
.tv-marquee-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: .5;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .tv-marquee-item { font-size: 15px; }
  .tv-marquee-row { gap: 28px; padding-right: 28px; }
}

/* ==========================================================================
   ABOUT YOUR COMPANY (modelo Techor)
   ========================================================================== */
.tv-about-area {
  background: #ffffff;
  color: #0F313A;
  padding: 130px 0;
  position: relative;
  z-index: 1;
}
.tv-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.tv-about-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.tv-about-head-left { max-width: 620px; }

.tv-section-subtitle {
  display: inline-block;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .02em;
}
.tv-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  color: #0A165E;
  margin: 0;
  padding-bottom: 20px;
}
.tv-section-title span { color: var(--color-primary); }

.tv-btn-secondary {
  padding: 12px 28px;
  background: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: 18px 0 18px 0;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: var(--color-primary);
  transition: background .3s ease, color .3s ease;
}
.tv-btn-secondary .btn-wrap {
  display: inline-block;
  overflow: hidden;
  position: relative;
  height: 22px;
  line-height: 22px;
}
.tv-btn-secondary .btn-wrap .btn-text1,
.tv-btn-secondary .btn-wrap .btn-text2 {
  display: block;
  color: var(--color-primary);
  transition: transform .35s ease, top .35s ease;
}
.tv-btn-secondary .btn-wrap .btn-text2 {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.tv-btn-secondary:hover .btn-wrap .btn-text1 { transform: translateY(-150%); }
.tv-btn-secondary:hover .btn-wrap .btn-text2 { top: 0; }

/* Trust badge (substitui o botão Know More) */
.tv-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(5,123,220,0.08), rgba(5,123,220,0.02));
  border: 1px solid rgba(5,123,220,0.2);
  border-radius: 18px 0 18px 0;
}
.tv-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  padding: 0;
  border-radius: 0;
}
.tv-trust-icon i {
  font-size: 32px;
  background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.tv-trust-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #0A165E;
  line-height: 1.2;
}
.tv-trust-badge span {
  display: block;
  font-size: 13px;
  color: #4a5568;
  margin-top: 2px;
}

.tv-about-section { margin-top: 60px; }
.tv-about-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

/* Left: icon boxes */
.tv-about-left { display: flex; flex-direction: column; gap: 38px; }
.single-icon-box {
  position: relative;
  z-index: 1;
  padding-left: 0;
  min-height: 90px;
}
.single-icon-box span {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -45px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #F5F6F7;
  display: grid;
  place-items: center;
}
.single-icon-box span img {
  max-width: 48px;
  height: auto;
}
.icon-box-content { padding-left: 114px; }
.icon-box-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #0A165E;
  text-transform: capitalize;
  margin: 0 0 6px;
}
.icon-box-content p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Middle: image + text */
.tv-about-middle { display: flex; flex-direction: column; gap: 24px; }
.tv-about-middle img {
  width: 100%;
  border-radius: 24px;
  display: block;
  filter:
    drop-shadow(0 8px 24px rgba(5, 123, 220, 0.18))
    drop-shadow(0 2px 6px rgba(11, 31, 58, 0.12));
  animation: produtosFloat 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes produtosFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.tv-about-middle p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Right: image */
.tv-about-right img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

/* Responsive */
@media (max-width: 1199px) {
  .tv-section-title { font-size: 38px; }
}
@media (max-width: 991px) {
  .tv-about-area { padding: 90px 0; }
  .tv-about-row { grid-template-columns: repeat(2, 1fr); }
  .tv-about-right { display: none; }
  .tv-section-title { font-size: 34px; }
}
@media (max-width: 640px) {
  .tv-about-row { grid-template-columns: 1fr; }
  .tv-section-title { font-size: 28px; }
  .single-icon-box span { width: 70px; height: 70px; margin-top: -35px; }
  .single-icon-box span img { max-width: 36px; }
  .icon-box-content { padding-left: 90px; }
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.55);
}
.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .55;
  z-index: -1;
  animation: whatsappPulse 2s ease-out infinite;
}
.whatsapp-float::after { animation-delay: 1s; }

@keyframes whatsappPulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.9); opacity: 0;   }
}

.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: #0F313A;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.whatsapp-float-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0F313A;
}
.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

@media (max-width: 640px) {
  .whatsapp-float { width: 54px; height: 54px; font-size: 26px; bottom: 20px; right: 20px; }
  .whatsapp-float-tooltip { display: none; }
}

/* ==========================================================================
   SEGMENTOS style-2 (Techor tv-service-area2 / index-2)
   ========================================================================== */
.tv-service-area2 {
  background: #F5F6F7;
  padding: 130px 0;
  color: #0F313A;
}
.tv-service-area2 .tv-service-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.tv-service-grid-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.single-service-item.style-2 {
  padding: 0;
  margin-bottom: 0;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.single-service-item.style-2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 31, 58, 0.10);
}

.single-service-item.style-2 .thumb {
  position: relative;
}
.single-service-item.style-2 .thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.single-service-item.style-2 .thumb .icon {
  position: absolute;
  left: 50%;
  bottom: -35px;
  height: 70px;
  width: 70px;
  background: #F5F6F7;
  border-radius: 10px 0 10px 0;
  text-align: center;
  line-height: 70px;
  margin-left: -35px;
  transition: background .3s ease, color .3s ease;
  z-index: 2;
}
.single-service-item.style-2 .thumb .icon i {
  color: var(--color-primary);
  font-size: 26px;
  transition: color .3s ease;
}
.single-service-item.style-2:hover .thumb .icon {
  background: var(--color-primary);
}
.single-service-item.style-2:hover .thumb .icon i {
  color: #ffffff;
}

.single-service-item.style-2 .service-content {
  padding: 59px 30px 30px;
  text-align: center;
}
.single-service-item.style-2 .service-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 12px;
}
.single-service-item.style-2 .service-content h2 a {
  color: #0A165E;
  transition: color .3s ease;
}
.single-service-item.style-2:hover .service-content h2 a { color: var(--color-primary); }
.single-service-item.style-2 .service-content p {
  color: #4a5568;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}


@media (max-width: 1199px) { .tv-service-grid-2 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .tv-service-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .tv-service-grid-2 { grid-template-columns: 1fr; } .tv-service-area2 { padding: 90px 0; } }

/* ==========================================================================
   SEGMENTOS (Techor tv-service-area)
   ========================================================================== */
.tv-service-area {
  background: #F5F6F7;
  padding: 130px 0;
  color: #0F313A;
}
.tv-service-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.tv-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.single-service-item {
  background: #ffffff;
  border-radius: 50px 0 50px 0;
  padding: 32px 28px;
  transition: all .35s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.single-service-item::before {
  content: attr(data-num);
  position: absolute;
  right: 22px;
  top: 18px;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: rgba(5, 123, 220, 0.05);
  line-height: 1;
  transition: color .35s ease;
  pointer-events: none;
}
.single-service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(5, 123, 220, 0.15);
  border-color: var(--color-primary);
}
.single-service-item:hover::before { color: rgba(5, 123, 220, 0.12); }

.single-service-item .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px 0 20px 0;
  background: #F5F6F7;
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all .35s ease;
}
.single-service-item:hover .service-icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: rotate(-8deg);
}
.single-service-item .service-section-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #0A165E;
  margin: 0 0 10px;
}
.single-service-item p {
  color: #4a5568;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.tv-normal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  transition: gap .2s ease;
}
.tv-normal-btn:hover { gap: 12px; }

.single-service-cta {
  background: #F5F6F7;
  color: #0A165E;
  border: 1px dashed rgba(5, 123, 220, 0.4);
  box-shadow: none;
}
.single-service-cta:hover {
  border-style: solid;
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(5, 123, 220, 0.08);
}
.single-service-cta .service-icon {
  background: rgba(5, 123, 220, 0.10);
  color: var(--color-primary);
}
.single-service-cta .service-section-title { color: #0A165E; }
.single-service-cta p { color: #4a5568; }
.single-service-cta .tv-normal-btn { color: var(--color-primary); }
.single-service-cta::before {
  content: "";
  background: url("assets/images/ic-f.png") no-repeat center / contain;
  width: 56px;
  height: 56px;
  opacity: 0.15;
}

.tv-service-bottom {
  text-align: center;
  margin-top: 40px;
}
.tv-service-bottom p { color: #4a5568; font-size: 15px; }
.tv-service-bottom a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 1199px) { .tv-service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .tv-service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .tv-service-grid { grid-template-columns: 1fr; } .tv-service-area { padding: 90px 0; } }

/* ==========================================================================
   PROCESSO (Techor tv-process-area)
   ========================================================================== */
.tv-process-area {
  background: #ffffff;
  padding: 130px 0;
  color: #0F313A;
}
.tv-process-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.tv-process-box-area { position: relative; }
.tv-process-box-area .shap {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  z-index: 0;
  text-align: center;
  pointer-events: none;
}
.tv-process-box-area .shap img { max-width: 100%; opacity: 0.25; }

.tv-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.single-process-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.06);
  border: 1px solid rgba(11, 31, 58, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.single-process-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(5, 123, 220, 0.12);
}
.single-process-box img {
  width: 100%;
  max-width: 240px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}
.process-box-content span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(5, 123, 220, 0.10);
  color: var(--color-primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.process-box-content h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #0A165E;
  margin: 0 0 10px;
}
.process-box-content p {
  color: #4a5568;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) { .tv-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tv-process-grid { grid-template-columns: 1fr; } .tv-process-area { padding: 90px 0; } }

/* ==========================================================================
   FAQ (Techor tv-faq-area)
   ========================================================================== */
.tv-faq-area {
  background: #F5F6F7;
  padding: 130px 0;
  color: #0F313A;
}
.tv-faq-area .accordion-items:not([open]) {
  background: #ffffff;
}
.tv-faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.tv-faq-head .tv-section-title { font-size: 38px; }

.tv-faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.tv-faq-col { min-width: 0; }

/* Accordion */
.tv-accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion-items {
  background: #ffffff;
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: 14px;
  padding: 20px 26px;
  transition: all .3s ease;
}
.accordion-items[open] {
  background: #0A165E;
  border-color: #0A165E;
  box-shadow: 0 12px 28px rgba(10, 22, 94, 0.15);
}
.accordion-buttons {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: #0A165E;
  padding: 4px 0;
  transition: color .3s ease;
}
.accordion-buttons::-webkit-details-marker { display: none; }
.accordion-buttons::after {
  content: "+";
  color: var(--color-primary);
  font-size: 26px;
  font-weight: 400;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(5, 123, 220, 0.12);
  display: grid;
  place-items: center;
  line-height: 1;
  transition: all .3s ease;
  flex-shrink: 0;
}
.accordion-items[open] .accordion-buttons { color: #ffffff; }
.accordion-items[open] .accordion-buttons::after {
  content: "−";
  background: var(--color-primary);
  color: #ffffff;
}
.accordion-body {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.accordion-body p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.accordion-body p strong { color: #ffb703; }

@media (max-width: 991px) {
  .tv-faq-columns { grid-template-columns: 1fr; }
  .tv-faq-area { padding: 90px 0; }
  .tv-faq-head .tv-section-title { font-size: 30px; }
}

/* ==========================================================================
   CTA / CONTATO (Techor tv-cta-area)
   ========================================================================== */
.tv-cta-area {
  padding: 80px 0;
  background: #0b1220;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.tv-cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}
.tv-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,18,32,0.92) 0%, rgba(11,18,32,0.78) 40%, rgba(11,18,32,0.40) 100%);
  z-index: 0;
}
.tv-cta-area .tv-container { position: relative; z-index: 1; }

.tv-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tv-section-subtitle-light { color: #ffb703; }
.tv-section-title-light { color: #fff; }
.tv-section-title-light span { color: #ffb703; }

.tv-cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 18px 0 24px;
  max-width: 520px;
}
.tv-cta-text strong { color: #ffb703; }

.tv-cta-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}
.tv-cta-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.tv-cta-perks li i {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

.tv-cta-whatsapp .btn { padding: 16px 28px; font-size: 16px; }

/* Contact form (Techor tv-contact-right-wrap) — white card */
.tv-contact-right-wrap {
  background: #ffffff;
  border: 1px solid rgba(11, 31, 58, 0.06);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  color: #0F313A;
}
.tv-form-head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}
.tv-form-head h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #0A165E;
  margin: 0 0 8px;
  line-height: 1.25;
}
.tv-form-head p {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.tv-cta-area .tv-contact-input-box,
.tv-cta-area .it-contact-textarea-box {
  margin-bottom: 14px;
}
.tv-cta-area .tv-contact-input-box input,
.tv-cta-area .tv-contact-input-box select,
.tv-cta-area .it-contact-textarea-box textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(11, 31, 58, 0.10);
  border-radius: 12px;
  background: #F5F6F7;
  color: #0F313A;
  font-size: 14.5px;
  font-family: inherit;
  transition: border-color .2s ease, background .2s ease;
}
.tv-cta-area .tv-contact-input-box input::placeholder,
.tv-cta-area .it-contact-textarea-box textarea::placeholder {
  color: #6b7280;
}
.tv-cta-area .tv-contact-input-box select { color: #0F313A; }
.tv-cta-area .tv-contact-input-box input:focus,
.tv-cta-area .tv-contact-input-box select:focus,
.tv-cta-area .it-contact-textarea-box textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #ffffff;
}
.tv-cta-area .it-contact-textarea-box textarea { min-height: 100px; resize: vertical; }
.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 10px rgba(18, 140, 126, 0.18);
}
.btn-block:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  box-shadow: 0 6px 14px rgba(7, 94, 84, 0.25);
}

@media (max-width: 991px) { .tv-cta-grid { grid-template-columns: 1fr; } .cta-form { padding: 30px; } .tv-cta-area { padding: 90px 0; } }

/* ==========================================================================
   FOOTER (light)
   ========================================================================== */
.tv-footer-wrap {
  background: #F7F9FC;
  color: #4a5568;
  padding-top: 0;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
}

.tv-footer-top-area {
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  padding: 40px 0;
}
.tv-footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.tv-footer-top-heading h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  max-width: 480px;
}
.tv-footer-top-form form {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 6px 6px 6px 20px;
  align-items: center;
  min-width: 420px;
}
.tv-footer-top-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  padding: 12px 0;
}
.tv-footer-top-form input::placeholder { color: rgba(255,255,255,0.5); }
.tv-footer-top-form input:focus { outline: none; }
.tv-footer-top-form .btn { padding: 12px 22px; font-size: 14px; }

/* Footer CTA (substitui newsletter) */
.tv-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.tv-footer-cta-text { max-width: 640px; }
.tv-footer-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tv-footer-cta-eyebrow i { color: #fb8500; }
.tv-footer-cta h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.25;
  color: #0A165E;
  font-weight: 700;
  margin: 0;
}
.tv-footer-cta-actions .btn {
  padding: 16px 28px;
  font-size: 16px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 10px rgba(18, 140, 126, 0.18);
}
.tv-footer-cta-actions .btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  box-shadow: 0 6px 14px rgba(7, 94, 84, 0.25);
}

@media (max-width: 640px) {
  .tv-footer-cta h2 { font-size: 22px; }
}

.tv-footer-area { padding: 70px 0 40px; }
.tv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.tv-footer-widget-logo img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(14%) sepia(85%) saturate(1600%) hue-rotate(200deg) brightness(90%);
}
.tv-footer-widget-text p { font-size: 14.5px; line-height: 1.7; margin: 0 0 22px; max-width: 360px; color: #4a5568; }
.tv-footer-widget-contact-info ul { list-style: none; padding: 0; margin: 0; }
.tv-footer-widget-contact-info li { margin-bottom: 10px; }
.tv-footer-widget-contact-info a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4a5568;
  font-size: 14.5px;
  transition: color .2s ease;
}
.tv-footer-widget-contact-info a:hover { color: var(--color-primary); }
.tv-footer-widget-contact-info i { color: var(--color-primary); width: 18px; }

.tv-footer-widget-title {
  font-family: var(--font-heading);
  color: #0A165E;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 22px;
}
.tv-footer-widget-menu ul { list-style: none; padding: 0; margin: 0; }
.tv-footer-widget-menu li { margin-bottom: 10px; }
.tv-footer-widget-menu a {
  color: #4a5568;
  font-size: 14.5px;
  transition: color .2s ease, padding-left .2s ease;
}
.tv-footer-widget-menu a:hover { color: var(--color-primary); padding-left: 4px; }

.tv-copyright-area { padding: 22px 0; }
.tv-copyright-border { border-top: 1px solid rgba(11, 31, 58, 0.1); padding-top: 22px; }
.tv-copyright-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tv-copyright-left p { margin: 0; font-size: 13.5px; color: #6b7280; }
.tv-copyright-left a { color: #0A165E; font-weight: 500; transition: color .2s ease; }
.tv-copyright-left a:hover { color: var(--color-primary); }
.tv-footer-widget-social { display: flex; gap: 10px; }
.tv-footer-widget-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(11, 31, 58, 0.06);
  color: #0A165E;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.tv-footer-widget-social a:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }

@media (max-width: 991px) {
  .tv-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .tv-footer-top-form form { min-width: 100%; }
}
@media (max-width: 560px) {
  .tv-footer-grid { grid-template-columns: 1fr; }
  .tv-copyright-inner { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Seções (sandbox → index)
   ========================================================================== */

/* shared helpers */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-eyebrow.center { justify-content: center; }
.eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.section-title .highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}
.section-title .highlight::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 5px;
  background: var(--color-primary);
  opacity: .28;
  border-radius: 4px;
}
.section-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 24px;
}
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { text-align: center; margin: 0 auto 56px; }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* 2. Sobre */
.section-sobre { padding: 120px 0; background: #0e1526; }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sobre-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: rgba(5,123,220,0.1);
  border: 1px solid rgba(5,123,220,0.3);
  border-radius: 16px;
  margin-bottom: 24px;
}
.sobre-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 56px;
  color: var(--color-primary);
  line-height: 1;
}
.sobre-stat .stat-number span { font-size: 32px; }
.sobre-stat strong { display: block; font-size: 16px; color: #fff; }
.sobre-stat span:not(.stat-number) { font-size: 13px; color: var(--color-muted); }

.sobre-slider { position: relative; }
.ss-slide { display: none; padding: 24px 0; }
.ss-slide.active { display: block; }
.ss-slide p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.ss-slide strong { font-family: var(--font-heading); color: var(--color-primary); font-size: 18px; }
.ss-nav { display: flex; gap: 10px; margin-top: 16px; }
.ss-nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; cursor: pointer;
  transition: all .2s ease;
}
.ss-nav button:hover { background: var(--color-primary); border-color: var(--color-primary); }

/* 3. O que fazemos + stats */
.section-oque { padding: 120px 0; background: #0b1220; }
.oque-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.oque-head .section-title { text-align: center; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-align: center;
}
.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.stat-card p { color: var(--color-muted); font-size: 14px; }

/* 4. Soluções */
.section-solucoes { padding: 120px 0; background: #0e1526; }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sol-card {
  display: block;
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  color: #fff;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.sol-card:hover {
  transform: translateY(-4px);
  background: rgba(5,123,220,0.08);
  border-color: rgba(5,123,220,0.4);
}
.sol-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(5,123,220,0.15);
  color: var(--color-primary);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.sol-card h3 { font-family: var(--font-heading); font-weight: 400; font-size: 18px; margin-bottom: 8px; }
.sol-card p { font-size: 13.5px; color: var(--color-muted); margin-bottom: 18px; line-height: 1.5; }
.sol-more { color: var(--color-primary); font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }

/* 5. Processo */
.section-processo { padding: 120px 0; background: #0b1220; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(5,123,220,0.06), transparent);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  position: relative;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--color-primary);
  display: block;
  margin-bottom: 14px;
  opacity: .8;
}
.step h3 { font-family: var(--font-heading); font-weight: 400; font-size: 20px; color: #fff; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--color-muted); line-height: 1.6; }

/* 6. CTA banner */
.section-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #01325b 100%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 400; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.cta-inner h2 .highlight { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.5); }
.cta-inner h2 .highlight::after { display: none; }
.cta-inner p { color: rgba(255,255,255,0.9); font-size: 16px; }
.cta-inner .btn { background: #fff; color: var(--color-primary); }
.cta-inner .btn:hover { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: #fff; }

/* 7. Segmentos */
.section-segmentos { padding: 120px 0; background: #0e1526; }
.seg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.seg-item {
  padding: 32px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  text-align: center;
  transition: all .25s ease;
}
.seg-item:hover { border-color: var(--color-primary); transform: translateY(-3px); }
.seg-item i { color: var(--color-primary); font-size: 28px; margin-bottom: 14px; display: block; }
.seg-item h4 { font-size: 14px; color: #fff; font-weight: 500; }

/* 8. Time */
.section-time { padding: 120px 0; background: #0b1220; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.05);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-family: var(--font-heading); font-weight: 400; font-size: 18px; color: #fff; margin-bottom: 4px; }
.team-card span { color: var(--color-primary); font-size: 13px; }

/* 9. Depoimentos */
.section-depoimentos { padding: 120px 0; background: #0e1526; }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dep-card {
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}
.dep-stars { color: #ffb400; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.dep-card p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.dep-card footer strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.dep-card footer span { color: var(--color-muted); font-size: 13px; }

/* 10. Diferenciais */
.section-diferenciais { padding: 120px 0; background: #0b1220; }
.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dif-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-align: center;
  transition: all .25s ease;
}
.dif-card.featured {
  background: linear-gradient(180deg, rgba(5,123,220,0.15), rgba(5,123,220,0.02));
  border-color: rgba(5,123,220,0.4);
  transform: translateY(-8px);
}
.dif-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(5,123,220,0.15);
  color: var(--color-primary);
  display: grid; place-items: center;
  font-size: 26px;
  margin: 0 auto 20px;
}
.dif-card h3 { font-family: var(--font-heading); font-weight: 400; font-size: 20px; color: #fff; margin-bottom: 10px; }
.dif-card p { font-size: 14px; color: var(--color-muted); line-height: 1.6; }

/* 11. FAQ */
.section-faq { padding: 120px 0; background: #0e1526; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--color-primary);
  font-size: 20px;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 12px; color: var(--color-muted); font-size: 14.5px; line-height: 1.6; }

/* 12. Blog */
.section-blog { padding: 120px 0; background: #0b1220; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-primary), #01325b);
}
.blog-body { padding: 24px; }
.blog-meta { color: var(--color-primary); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.blog-body h3 { font-family: var(--font-heading); font-weight: 400; font-size: 18px; color: #fff; margin: 10px 0 16px; line-height: 1.3; }
.blog-more { color: var(--color-primary); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

/* Footer */
.site-footer { background: #05080f; padding: 80px 0 0; color: rgba(255,255,255,0.7); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 60px;
}
.foot-brand img { height: 48px; margin-bottom: 20px; }
.foot-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 20px; max-width: 340px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.foot-social a:hover { background: var(--color-primary); }
.foot-col h4 { font-family: var(--font-heading); color: #fff; font-weight: 400; font-size: 16px; margin-bottom: 18px; }
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; transition: color .2s ease; }
.foot-col a:hover { color: var(--color-primary); }
.foot-contact li { font-size: 14px; display: flex; align-items: center; gap: 10px; }
.foot-contact i { color: var(--color-primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 13px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .sobre-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid, .sol-grid, .seg-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .dep-grid, .dif-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section-sobre, .section-oque, .section-solucoes, .section-processo,
  .section-segmentos, .section-time, .section-depoimentos, .section-diferenciais,
  .section-faq, .section-blog { padding: 80px 0; }
  .stats-grid, .sol-grid, .seg-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* Elementos criados pelo JS (drawer mobile) — escondidos por padrão */
.nav-backdrop,
.nav-close { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }

  .nav-backdrop { display: block; }

  /* Header layout mobile: logo left, WA + toggle + hamburger right */
  .header-inner {
    justify-content: flex-start;
    gap: 12px;
  }
  .logo { margin-right: auto; }

  .main-nav,
  .header-cta { display: none; }

  .header-wa { display: inline-flex; margin-left: 0; margin-right: 0; }
  .theme-toggle { flex-shrink: 0; }
  .hamburger { display: flex; margin-left: 4px; }

  /* Mobile drawer menu */
  .main-nav.open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 86vw;
    background: linear-gradient(180deg, #0b1f3a 0%, #061024 100%);
    padding: 90px 28px 32px;
    z-index: 1000;
    box-shadow: -14px 0 40px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    transform: translateX(0);
    animation: navSlideIn .32s cubic-bezier(.4,.2,.2,1);
  }
  .main-nav.open > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .main-nav.open > ul > li > a {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    padding: 14px 4px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color .2s ease, padding-left .2s ease;
  }
  .main-nav.open > ul > li > a:hover,
  .main-nav.open > ul > li > a:focus {
    color: var(--color-primary);
    padding-left: 10px;
  }
  .main-nav.open .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 6px 0 10px 12px;
    min-width: 0;
  }
  .main-nav.open .submenu a {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 4px;
  }

  /* Backdrop */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 20, 0.55);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  /* Close button inside drawer */
  .nav-close {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001;
    transition: background .2s ease, transform .2s ease;
  }
  .nav-close.open { display: flex; }
  .nav-close:hover { background: rgba(255, 255, 255, 0.2); transform: rotate(90deg); }

  /* Hamburger animation to X when open */
  .hamburger { transition: all .3s ease; }
  .hamburger span { transition: transform .3s ease, opacity .3s ease; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Lock body scroll while nav open */
  body.nav-locked { overflow: hidden; }

  @keyframes navSlideIn {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
  }
}

@media (max-width: 640px) {
  .hero { padding: 140px 0 60px; min-height: auto; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { gap: 18px; }
  .btn { padding: 12px 20px; font-size: 14px; }
}
/* ============ Clean / Light theme overrides ============ */
.theme-clean {
  --color-dark: #0b1f3a;
  --color-muted-light: #55627a;
  --color-bg-1: #f5f9ff;
  --color-bg-2: #ffffff;
  background: var(--color-bg-2);
  color: var(--color-dark);
}

/* Header on light bg */
.theme-clean .site-header { padding: 22px 0; }

.theme-clean .logo img {
  filter: none;
  /* logo é branca; usamos invert + saturate para transformar em azul escuro */
  filter: brightness(0) saturate(100%) invert(14%) sepia(85%) saturate(1600%) hue-rotate(200deg) brightness(90%);
}

.theme-clean .theme-toggle { background: transparent; border: none; }
.theme-clean .theme-toggle:hover { background: transparent; }

.theme-clean .main-nav a { color: var(--color-dark); }
.theme-clean .main-nav a:hover { color: var(--color-primary); }
.theme-clean .main-nav .submenu a { color: #333; }
.theme-clean .hamburger span { background: var(--color-dark); }

/* ============ Hero background ============ */
.theme-clean .hero {
  padding: 160px 0 100px;
  min-height: 100vh;
  color: var(--color-dark);
}

.theme-clean .hero-bg { z-index: 0; }

.theme-clean .hero-clean-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 85% 20%, rgba(5,123,220,0.10) 0%, rgba(5,123,220,0) 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(5,123,220,0.08) 0%, rgba(5,123,220,0) 60%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

/* Texture on the left half of the hero */
.theme-clean .hero-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(5,123,220,0.28) 1px, transparent 1.5px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0) 100%);
  opacity: .55;
}

/* subtle grid pattern */
.theme-clean .hero-clean-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5,123,220,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,123,220,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.55), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.55), transparent 75%);
  opacity: .55;
}

/* soft blue orbs floating */
.theme-clean .hero-clean-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 380px at 78% 30%, rgba(5,123,220,0.18), transparent 60%),
    radial-gradient(circle 260px at 15% 75%, rgba(5,123,220,0.12), transparent 60%);
  filter: blur(10px);
}

.theme-clean .hero-overlay { display: none; }

/* Video decorative background — left half only, subtle */
.theme-clean .hero-clean-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.18;
  transform: translateZ(0);
  will-change: opacity;
  pointer-events: none;
}

/* wash: covers the whole video area and dissolves smoothly on the right — masks video edges */
.theme-clean .hero-clean-wash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.55) 0%,
      rgba(255,255,255,0.55) 45%,
      rgba(255,255,255,0.9) 68%,
      #ffffff 82%,
      #ffffff 100%),
    linear-gradient(180deg, rgba(247,251,255,0.4) 0%, rgba(255,255,255,0.6) 100%);
}

/* ============ Hero content ============ */
.theme-clean .badge { color: var(--color-dark); }
.theme-clean .hero-title { color: var(--color-dark); }
.theme-clean .hero-title .highlight { color: var(--color-primary); }
.theme-clean .hero-title .highlight::after { background: var(--color-primary); opacity: .25; }
.theme-clean .hero-text { color: var(--color-muted-light); }

.theme-clean .hero-clients { border-top-color: rgba(11,31,58,.12); }
.theme-clean .avatars img { border-color: #fff; box-shadow: 0 0 0 1px rgba(11,31,58,.08); }
.theme-clean .clients-count .count { color: var(--color-dark); }
.theme-clean .clients-count .count-label { color: var(--color-muted-light); }
.theme-clean .clients-text { color: var(--color-muted-light); }

/* Lottie globe: reduzir opacidade e cor mais leve */
.theme-clean .hero-lottie { opacity: .85; }

/* ============ Hero floating cards over the globe ============ */
.theme-clean .hero-orbit {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  max-width: 55vw;
  max-height: 90vh;
  z-index: 3;
  pointer-events: none;
}

.theme-clean .hi-card {
  position: absolute;
  top: var(--anchor-y);
  left: var(--anchor-x);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(5, 123, 220, 0.12);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(5, 123, 220, 0.05);
  pointer-events: auto;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* leader line connecting label to the anchor dot */
.theme-clean .hi-card::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(5,123,220,0.7), rgba(5,123,220,0.15));
  transform: translateY(-50%);
}

.theme-clean .hi-float-1::before,
.theme-clean .hi-float-3::before {
  right: 100%;
  width: 46px;
  background: linear-gradient(-90deg, rgba(5,123,220,0.7), rgba(5,123,220,0.15));
}
.theme-clean .hi-float-2::before {
  left: 100%;
  width: 46px;
}

/* place cards on the correct side of the anchor */
.theme-clean .hi-float-1,
.theme-clean .hi-float-3 { transform: translate(calc(-100% - 46px), -50%); }
.theme-clean .hi-float-2 {
  transform: translate(46px, -50%);
  flex-direction: row-reverse;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 6px 4px 6px 10px;
}

.theme-clean .hi-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(5,123,220,0.10);
  color: var(--color-primary);
  font-size: 16px;
}

.theme-clean .hi-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.theme-clean .hi-body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.theme-clean .hi-body strong {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-dark);
  font-weight: 400;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(255,255,255,0.9);
}

.theme-clean .hi-body span {
  font-size: 13.5px;
  color: var(--color-muted-light);
  margin-top: 3px;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(255,255,255,0.9);
}


/* floating animation — different rhythms so they feel independent */
.theme-clean .hi-float {
  animation: cardFloat 6s ease-in-out infinite;
}
.theme-clean .hi-float-1 { animation-delay: 0s;   animation-duration: 6s; }
.theme-clean .hi-float-2 { animation-delay: 1.2s; animation-duration: 7.5s; }
.theme-clean .hi-float-3 { animation-delay: 0.6s; animation-duration: 6.8s; }

@keyframes cardFloat {
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -8px; }
}

.theme-clean .hi-card:hover .hi-body strong { color: var(--color-primary); }

@media (max-width: 1200px) {
  .theme-clean .hero-orbit { width: 480px; height: 480px; right: -60px; }
  .theme-clean .hi-body strong { font-size: 15px; }
}
@media (max-width: 1024px) {
  .theme-clean .hero-orbit {
    width: 380px; height: 380px;
    right: -100px; top: auto; bottom: -60px; transform: none;
    opacity: .9;
  }
  .theme-clean .hi-card { min-width: 160px; padding: 10px 12px; }
}
@media (max-width: 640px) {
  .theme-clean .hero-orbit { display: none; }
}

/* ============ Seção Diferencial ============ */
.theme-clean .diferencial {
  padding: 120px 0;
  background: #fff;
  color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.theme-clean .diferencial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(5,123,220,0.10) 1px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 40%, transparent 100%);
  opacity: .55;
  pointer-events: none;
}

.theme-clean .diferencial-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.theme-clean .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.theme-clean .eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.theme-clean .diferencial-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--color-dark);
}

.theme-clean .diferencial-title .highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.theme-clean .diferencial-title .highlight::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 6px;
  background: var(--color-primary);
  opacity: .22;
  border-radius: 4px;
}

.theme-clean .diferencial-lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
  color: var(--color-muted-light);
  max-width: 760px;
  margin: 0 auto;
}

.theme-clean .diferencial-lead strong {
  color: var(--color-dark);
  font-weight: 600;
}

@media (max-width: 640px) {
  .theme-clean .diferencial { padding: 80px 0; }
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .theme-clean .main-nav.open { background: #fff; box-shadow: 0 12px 24px rgba(11,31,58,.08); }
  .theme-clean .main-nav.open .submenu a { color: var(--color-muted-light); }
}
