:root {
  /* Paleta extraída do site de referência (Elementor global colors) */
  --bg-dark: #050505;
  --bg-blu: #0A2540;
  --bg-dark-alt: #091827;
  --bg-light: #F1F7ED;
  --white: #FFFFFF;
  --text-muted: #D3D3D3;
  --gray: #7F7F7F;
  --accent: #5BC0EB;
  --accent-ink: #0d1a00;
  --azul-eletric: #00A2ff;

  --font-heading: "Bricolage Grotesque", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;

  --radius: 16px;
  --container: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--white);
  line-height: 1.6;
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p { color: var(--text-muted); }

a { color: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn_se {
  margin-left: 18px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 162, 255, 1);
}
.btn_se:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(91, 192, 235, .28);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
}
.btn-outline:hover { border-color: var(--accent); color: var(--azul-eletric); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(5, 5, 5, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  z-index: 50;
}

.botao-superior {
  text-align: left;
  margin-bottom: 32px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0, 24px;
}
.botao-superior p {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .25);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  transition: color .15s ease;
}
.nav a:not(.btn):hover { color: var(--white); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 40px;
  background:
    radial-gradient(circle at 85% 0%, rgba(91, 192, 235, 1), transparent 45%),
    var(--bg-blu);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  filter: blur(90px);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero::before {
  width: 620px;
  height: 420px;
  top: -160px;
  right: 5%;
  border-radius: 48% 52% 60% 40% / 55% 45% 60% 40%;
  background: radial-gradient(ellipse, rgba(91, 192, 235, .85), transparent 70%);
  opacity: .4;
  animation: hero-smoke-drift 20s ease-in-out infinite;
}
.hero::after {
  width: 460px;
  height: 340px;
  bottom: -180px;
  right: 22%;
  border-radius: 60% 40% 45% 55% / 40% 60% 45% 55%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .45), transparent 70%);
  opacity: .3;
  animation: hero-smoke-drift-2 26s ease-in-out infinite;
}
@keyframes hero-smoke-drift {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%  { transform: translate(-40px, 30px) rotate(8deg) scale(1.08); }
  66%  { transform: translate(20px, -20px) rotate(-6deg) scale(.96); }
  100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}
@keyframes hero-smoke-drift-2 {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate(50px, -30px) rotate(-10deg) scale(1.1); }
  100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}
.hero-sheen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-sheen::before,
.hero-sheen::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .18) 50%, transparent 70%);
  animation: hero-sheen-sweep 18s ease-in-out infinite;
}
.hero-sheen::after {
  animation-delay: 9s;
}
@keyframes hero-sheen-sweep {
  0%   { transform: translateX(0); }
  100% { transform: translateX(260%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .hero-sheen::before, .hero-sheen::after { animation: none; }
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-text h1 {
  font-size: 3rem;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--white);
}
.hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}

.big_name {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  color: #00a2ff;
  

}
.hero-text p { font-size: 1.1rem; margin-bottom: 32px; max-width: 1080px;}
.hero-image img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 9 / 7;
  object-fit: cover;
}

/* Clientes — faixa clara de contraste, como no site original */
.clientes {  padding: 0px 0; background: var(--white); }
.clientes-label {
  text-align: center;
  color: rgb(255, 255, 255);
  margin-bottom: 10px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 33px;
  letter-spacing: .02em;
  margin-top: 100px;
  
}

.texto_card {
  font-family: 'Times New Roman', Times, serif;
  color: #00a2ff;
  font-style: italic;
  font-size: 38px;
}

.clientes-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.clientes-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: clientes-scroll 34s linear infinite;
  margin-bottom: 32px;
  margin: 10px;
}
.clientes-track-reverse {
  margin-bottom: 10;
  animation: clientes-scroll-reverse 34s linear infinite;
}
.clientes-carousel.is-paused .clientes-track { animation-play-state: paused; }
.clientes-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .08);
}
.clientes-track img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: .9;
  transition: opacity .3s ease, transform .3s ease;
  
}
.clientes-slide:hover img {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes clientes-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes clientes-scroll-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .clientes-track { animation: none; }
  .clientes-carousel { overflow-x: auto; }
}

/* Proposta */
.proposta { padding: 100px 0; background: var(--bg-dark); }
.proposta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.proposta-text h2 { font-size: 3.1rem; margin-bottom: 18px; color: var(--white); }
.proposta-text p { font-size: 1.05rem; }
.proposta-image img {
 
  border-radius: var(--radius);
  aspect-ratio: 7 / 5;
  object-fit: cover;
  
}

/* Diferenciais + Serviços */
.diferenciais, .servicos { padding: 100px 0; background: var(--bg-dark-alt); }
.diferenciais h2, .servicos h2, .metodologia h2, .problema h2, .casos h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 52px;
  color: var(--white);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  
}
.servicos-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: left;
  transition: border-color .15s ease, transform .15s ease;
  
}
.card:hover { border-color: rgba(0, 162, 255, 1); transform: translateY(-3px); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(174, 254, 1, .12);
  color: var(--accent);
  margin-bottom: 18px;
    /* Garante que o padding não quebre o tamanho total */
}
.card h3 { margin-bottom: 10px; font-size: 1.1rem; color: var(--white);  padding-top: 25px; }
.card p { font-size: .95rem; }

.card img {
  background: #ffffff30;
  height: 55px;
  width: 55px;
  font-size: 24px;
  padding: 12px;
  border-radius: 12px;
  filter: invert(1) brightness(2);

  
  
}

/* Problema */
.problema { padding: 100px 0; background: var(--bg-dark); }
.problema-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.problema-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  font-style: italic;
  color: var(--white);
}
.problema-cta { text-align: center; font-size: 1.05rem; color: var(--text-muted); }
.problema-cta a { color: var(--accent); font-weight: 600; text-decoration: none; }
.problema-cta a:hover { text-decoration: underline; }

/* Metodologia */
.metodologia { padding: 100px 0; background: var(--bg-dark-alt); }
.etapas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.etapa { text-align: left; }
.etapa-numero {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.etapa h3 { margin-bottom: 8px; font-size: 1.05rem; color: var(--white); }
.etapa p { color: var(--text-muted); font-size: .92rem; }

/* Atendimento */
.atendimento { padding: 100px 0; background: var(--bg-dark); }
.atendimento-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.atendimento-image img {
  width: 1080px;
  height: 500px;
  border-radius: var(--radius);
  aspect-ratio: 7 / 5;
  object-fit: cover;
   background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, .08);
}
.atendimento-text h2 { font-size: 2.1rem; margin-bottom: 22px; color: var(--white); }
.atendimento-text ul { list-style: none; }
.atendimento-text li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 16px;
  color: var(--text-muted);
}
.atendimento-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 60% no-repeat;
}

.edit-text {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
}
/* Casos */
.casos { padding: 100px 0; background: var(--bg-dark-alt); }
.casos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.caso-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease;
}
.caso-card:hover { border-color: rgba(174, 254, 1, .4); transform: translateY(-3px); }
.caso-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #1a1a1a;
}
.caso-card h3 { padding: 16px 16px 4px; font-size: 1rem; color: var(--white); }
.caso-card p { padding: 0 16px 16px; font-size: .88rem; }

/* CTA final */
.cta-final {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 192, 235, 1), transparent 55%),
    var(--bg-blu);
}
.cta-final h2 { font-size: 2.3rem; margin-bottom: 16px; color: var(--white); max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-final p { margin-bottom: 36px; font-size: 1.05rem; }

/* Footer */
.footer {
  padding: 32px 0;
  text-align: center;
  color: var(--gray);
  font-size: .88rem;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Responsivo */
@media (max-width: 900px) {
  .hero-inner, .proposta-inner, .atendimento-inner { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .problema-grid { grid-template-columns: 1fr; }
  .etapas { grid-template-columns: repeat(2, 1fr); }
  .casos-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 12px; }
  .nav a:not(.btn) { display: none; }
  .hero-text h1 { font-size: 2.4rem; }
}
@media (max-width: 560px) {
  .cards-grid, .servicos-grid, .etapas, .casos-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2rem; }
  .diferenciais, .servicos, .proposta, .problema, .metodologia, .atendimento, .casos, .cta-final { padding: 64px 0; }
}
