:root {
  --preto: #0A0A0F;
  --grafite: #11151D;
  --azul: #2D5BFF;
  --azul-glow: #5DA9FF;
  --azul-inst: #1F3B73;
  --branco: #EDEDED;
  --cinza: #9E9E9E;
  --header-bg: linear-gradient(90deg, #2D5BFF, #1a4497);
}

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

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--preto);
  color: var(--branco);
  overflow-x: hidden
}

h1,
h2,
h3 {
  letter-spacing: -.5px
}

a {
  text-decoration: none;
  color: inherit
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(93, 169, 255, .25);
  box-shadow: 0 4px 24px rgba(45, 91, 255, .25);
  transition: .3s
}

nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 800;
  color: var(--branco);
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
}

.logo-mark {
  height: 26px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  flex: 1;
  justify-content: center
}

.nav-links a {
  font-size: 17px;
  color: var(--branco);
  opacity: .85;
  transition: .25s;
  position: relative
}

.nav-links a:hover {
  opacity: 1;
  color: var(--azul-glow)
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--azul);
  transition: .3s
}

.nav-links a:hover::after {
  width: 100%
}

.nav-links a.active {
  opacity: 1;
  color: var(--azul-glow)
}

.nav-links a.active::after {
  width: 100%
}

.nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--azul);
  color: #fff;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: .3s;
  box-shadow: 0 4px 18px rgba(45, 91, 255, .35)
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(45, 91, 255, .5);
  color: #fff
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--branco)
}

/* NAV DAS ABAS */
.tab-btn {
  background: var(--grafite);
  border: 1px solid rgba(93, 169, 255, .2);
  color: var(--cinza);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  transition: .25s;
  user-select: none;
}

.tab-btn:hover {
  color: var(--branco);
  background: #1a2233;
  border-color: var(--azul);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(45, 91, 255, .25);
}

.tab-btn.active {
  background: var(--azul);
  color: #fff;
  font-weight: 600;
  border-color: var(--azul);
  box-shadow: 0 4px 14px rgba(45, 91, 255, .4);
}

/* bolinha indicadora só na ativa */
.tab-btn.active::before {
  content: "•";
  margin-right: 8px;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

/* abas de serviços */
@media(max-width:768px) {
  .tabs-nav {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    width: 100%;
    border-radius: 12px;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
    padding: 14px 18px;
  }

  .tab-btn.active::before {
    content: none
  }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 40%, rgba(45, 91, 255, .18), transparent 55%), var(--preto);
  padding: 120px 20px 60px;
  overflow: hidden
}

.hero .glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 169, 255, .25), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-40px)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px
}

.tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--azul-inst);
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--azul-glow);
  margin-bottom: 26px;
  text-transform: uppercase
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px
}

.hero h1 .grad {
  background: linear-gradient(120deg, var(--azul), var(--azul-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero p {
  font-size: 19px;
  color: var(--cinza);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6
}

.btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: .3s;
  border: none
}

.btn-primary {
  background: var(--azul);
  color: #fff;
  box-shadow: 0 8px 30px rgba(45, 91, 255, .4)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(45, 91, 255, .6)
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--azul-inst);
  color: var(--branco);
  margin-left: 14px
}

.btn-outline:hover {
  border-color: var(--azul);
  color: var(--azul-glow)
}

/* HERO 2 COLUNAS + GRÁFICO */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  max-width: 1150px;
  width: 100%;
}

.hero-grid .hero-content {
  text-align: left;
  max-width: none;
  margin: 0;
}

.hero-grid .hero-content p {
  margin: 0 0 34px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btns .btn-outline {
  margin-left: 0;
}

/* Gráfico */
.hero-chart {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.hero-chart svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  align-self: flex-end;
  margin-top: -30px;
}

.chart-line {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: none;
  filter: drop-shadow(0 0 6px rgba(93, 169, 255, .5));
}

.chart-area {
  opacity: 0;
  animation: none;
}

.chart-dot {
  fill: #fff;
  stroke: var(--azul-glow);
  stroke-width: 3;
  opacity: 0;
  animation: none
}

/* ativa quando entra na tela */
.hero-chart.in-view .chart-line {
  animation: drawLine 4.5s cubic-bezier(.4, 0, .2, 1) forwards;
}

.hero-chart.in-view .chart-area {
  animation: fadeArea 2s ease 2.5s forwards;
}

.hero-chart.in-view .chart-dot {
  animation: dotShow .5s ease 4.3s forwards, dotPulse 2s ease-in-out 4.8s infinite;
}

.hero-chart.in-view .chart-bars rect {
  animation-name: barGrow;
  animation-duration: 1.1s;
  animation-timing-function: cubic-bezier(.5, 0, .75, .4);
  animation-fill-mode: forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeArea {
  to {
    opacity: 1;
  }
}

@keyframes dotShow {
  to {
    opacity: 1;
  }
}

@keyframes dotPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(93, 169, 255, .6));
  }

  50% {
    filter: drop-shadow(0 0 14px rgba(93, 169, 255, 1));
  }
}

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-grid .hero-content {
    text-align: center;
  }

  .hero-grid .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-chart {
    max-width: 460px;
    margin: 0 auto;
    opacity: .9;
  }
}

@media(max-width:600px) {
  .hero-chart {
    max-width: 320px;
  }

  .chart-highlight {
    padding-right: 0;
    text-align: center;
  }

  .highlight-value {
    justify-content: center;
  }
}


@media(max-width:520px) {
  .hero-btns {
    width: 100%;
  }

  .hero-btns .btn {
    flex: 1 1 100%;
    text-align: center;
    padding: 15px 20px;
  }
}


@media(max-width:768px) {
  .hero {
    padding: 100px 18px 50px;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .hero p {
    font-size: 16px;
  }
}


@media(prefers-reduced-motion:reduce) {
  .chart-line {
    animation: none;
    stroke-dashoffset: 0;
  }

  .chart-area {
    animation: none;
    opacity: 1;
  }

  .chart-dot {
    animation: none;
    opacity: 1;
  }
}

/* COLUNAS DO GRÁFICO */
.chart-bars rect {
  fill: url(#barGrad);
  rx: 4;
  transform: scaleY(0);
  transform-origin: bottom;
  transform-box: fill-box;
  animation: none;
}

@keyframes barGrow {
  to {
    transform: scaleY(1);
  }
}

/* ===== DESTAQUE DE CONVERSÕES NO GRÁFICO ===== */
.chart-highlight {
  position: static;
  text-align: right;
  padding-right: 8%;
  padding-top: 0;
}

.highlight-value {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 2px;
  line-height: .9;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  letter-spacing: -2px;
  background: linear-gradient(135deg, #eaf3ff 0%, #4d9bff 45%, #1e6bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(45, 120, 255, .55));
}

.highlight-number,
.highlight-number+.highlight-suffix {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(120deg, #2D5BFF 0%, #5DA9FF 55%, #9BD2FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(45, 91, 255, .75));
}

.highlight-label {
  margin: 4px auto 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(.85rem, 1.4vw, 1.05rem);
  letter-spacing: .3px;
  text-transform: none;
  color: #aebfd6;
  max-width: 260px;
}

@media(max-width:900px) {
  .highlight-label {
    font-size: .72rem;
    max-width: 130px;
  }
}

/* atraso escalonado (barras sobem conforme a linha avança) */
.chart-bars rect:nth-child(1) {
  animation-delay: .2s;
}

.chart-bars rect:nth-child(2) {
  animation-delay: .7s;
}

.chart-bars rect:nth-child(3) {
  animation-delay: 1.4s;
}

.chart-bars rect:nth-child(4) {
  animation-delay: 2.1s;
}

.chart-bars rect:nth-child(5) {
  animation-delay: 2.8s;
}

.chart-bars rect:nth-child(6) {
  animation-delay: 3.5s;
}

@media(prefers-reduced-motion:reduce) {
  .chart-bars rect {
    animation: none;
    transform: none;
  }
}

/* SECTIONS */
section {
  padding: 100px 20px
}

.container {
  max-width: 1200px;
  margin: auto
}

.section-title {
  text-align: center;
  margin-bottom: 60px
}

.section-title .tag {
  margin-bottom: 16px
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800
}

.section-title p {
  color: var(--cinza);
  margin-top: 16px;
  font-size: 17px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

/* STATS */
#numeros {
  text-align: center;
  background: var(--preto);
  padding-bottom: 50px
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 20px
}

.stat h3 {
  font-size: 48px;
  color: var(--azul);
  font-weight: 800
}

.stat p {
  color: var(--cinza);
  margin-top: 8px
}

@media (max-width: 635px) and (min-width: 421px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid .stat:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

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


/* DIVISOR LUMINOSO (ponte números → depoimentos) */
.proof-divider {
  max-width: 1100px;
  margin: 60px auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93, 169, 255, .4), transparent)
}

/* DEPOIMENTOS */
#depoimentos {
  background: var(--preto);
  text-align: center;
  padding-top: 55px
}

/* BADGE GOOGLE */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--grafite);
  border: 1px solid rgba(93, 169, 255, .18);
  border-radius: 16px;
  padding: 12px 22px;
  margin-bottom: 45px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3)
}

.google-badge .g-logo {
  font-size: 24px;
  font-weight: 700;
  line-height: 1
}

.google-badge .g-logo b:nth-child(1) {
  color: #4285F4
}

.google-badge .g-logo b:nth-child(2) {
  color: #EA4335
}

.google-badge .g-logo b:nth-child(3) {
  color: #FBBC05
}

.google-badge .g-logo b:nth-child(4) {
  color: #4285F4
}

.google-badge .g-logo b:nth-child(5) {
  color: #34A853
}

.google-badge .divider-v {
  width: 1px;
  height: 38px;
  background: rgba(93, 169, 255, .2)
}

.google-badge .score-wrap {
  text-align: left
}

.google-badge .score {
  font-size: 22px;
  font-weight: 800;
  color: var(--branco);
  line-height: 1
}

.google-badge .stars-lg {
  color: #FBBC05;
  font-size: 18px;
  letter-spacing: 3px;
  display: block;
  margin-top: 3px
}

.reviews-subtitle {
  color: var(--branco);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  margin-bottom: 18px
}

.reviews-subtitle strong {
  color: var(--azul-glow);
  font-weight: 700
}

.review-card {
  background: var(--grafite);
  border: 1px solid rgba(93, 169, 255, .12);
  border-radius: 16px;
  padding: 26px;
  text-align: left;
  transition: .3s;
  position: relative
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
  border-color: rgba(93, 169, 255, .3)
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0
}

.review-info h4 {
  font-size: 16px;
  color: var(--branco);
  font-weight: 600;
  line-height: 1.2
}

.review-stars {
  color: #FBBC05;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 10px
}

.review-text {
  color: var(--cinza);
  font-size: 15px;
  line-height: 1.6
}

.btn-ver-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grafite);
  border: 1px solid rgba(93, 169, 255, .25);
  color: var(--branco);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  transition: .3s;
}

.btn-ver-google:hover {
  border-color: var(--azul);
  color: var(--azul-glow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 91, 255, .25);
}

/* CARROSSEL DESLIZANTE */
.reviews-marquee {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 35s linear infinite
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused
}

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

.reviews-track .review-card {
  width: 340px;
  flex-shrink: 0
}

@media(max-width:768px) {
  .reviews-track .review-card {
    width: 280px
  }

  .reviews-track {
    animation-duration: 24s
  }
}

@media(prefers-reduced-motion:reduce) {
  .reviews-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center
  }
}

/* Logo G oficial do Google no canto do card */
.review-g {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 22px;
  height: 22px
}

@media(max-width:768px) {
  .review-g {
    width: 20px;
    height: 20px
  }
}

/* SOBRE — HISTÓRIA, EQUIPE E VALORES */
#sobre {
  background: var(--grafite)
}

/* SOBRE — HERO MODERNO */
.about-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: end;
  max-width: 1100px;
  margin: 0 auto 70px;
}

.about-hero-text h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}

.about-hero-text h2 .grad {
  background: linear-gradient(120deg, var(--azul), var(--azul-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero-text>p {
  color: var(--cinza);
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
}

.about-hero-text>p strong {
  color: var(--branco);
  font-weight: 600;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-tags span {
  font-size: 13px;
  color: var(--azul-glow);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--grafite);
  border: 1px solid rgba(93, 169, 255, .18);
}

/* card destaque lateral */
.about-hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-highlight {
  position: relative;
  background: radial-gradient(circle at 20% 10%, rgba(45, 91, 255, .28), var(--preto));
  border: 1px solid rgba(93, 169, 255, .2);
  border-radius: 20px;
  padding: 34px 30px;
  overflow: hidden;
}

.about-highlight::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(93, 169, 255, .4), transparent 70%);
  filter: blur(20px);
}

.hl-num {
  display: block;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--azul-glow);
  margin-bottom: 14px;
}

.hl-num span {
  font-size: 20px;
  color: var(--branco);
  font-weight: 600;
  margin-left: 6px;
}

.about-highlight p {
  color: var(--cinza);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.about-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-mini div {
  background: var(--grafite);
  border: 1px solid rgba(93, 169, 255, .12);
  border-radius: 14px;
  padding: 18px 16px;
  transition: .3s;
}

.about-mini div:hover {
  border-color: rgba(93, 169, 255, .35);
  transform: translateY(-3px);
}

.about-mini b {
  display: block;
  color: var(--branco);
  font-size: 15px;
}

.about-mini span {
  font-size: 12px;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media(max-width:820px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .about-hero-text>p {
    margin: 0 auto;
  }

  .about-tags {
    justify-content: center;
  }
}

.about-subtitle {
  display: block;
  width: fit-content;
  margin: 70px auto 40px;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: 1px solid rgba(96, 165, 250, 0.4);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45);
}

/* FUNDADORES — foto grande com dados sobrepostos */
.section-badge {
  display: block;
  width: fit-content;
  margin: 60px auto 30px;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: 1px solid rgba(96, 165, 250, 0.4);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.founder-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid rgba(93, 169, 255, .12);
  background: var(--preto);
  transition: .3s;
}

.founder-card:hover {
  border-color: rgba(93, 169, 255, .35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}

.founder-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}

.founder-card:hover img {
  transform: scale(1.06);
}

@media(prefers-reduced-motion:reduce) {
  .founder-card:hover img {
    transform: none
  }
}

/* fallback se a foto faltar */
.founder-card.no-img {
  background: radial-gradient(circle at 30% 20%, rgba(45, 91, 255, .35), var(--preto));
}

/* dados sobrepostos embaixo */
.founder-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 60px 26px 26px;
  background: linear-gradient(0deg, rgba(10, 10, 15, .96) 15%, rgba(10, 10, 15, .75) 55%, transparent);
  z-index: 2;
}

.founder-info h3 {
  font-size: 23px;
  color: var(--branco);
  margin-bottom: 4px
}

.founder-role {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--azul-glow);
  margin-bottom: 12px;
  font-weight: 600;
}

.founder-info p {
  color: var(--cinza);
  font-size: 14px;
  line-height: 1.6
}

@media(max-width:768px) {
  .founders-grid {
    grid-template-columns: 1fr
  }

  .founder-card {
    min-height: 400px
  }
}

@media(max-width:480px) {
  .founder-card {
    min-height: 340px;
  }

  .founder-info {
    padding: 50px 20px 22px;
  }
}


/* Valores */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 70px auto 0
}

.value-item {
  position: relative;
  background: linear-gradient(160deg, rgba(30, 58, 138, 0.15), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(96, 165, 250, 0.12);
  border-radius: 18px;
  padding: 40px 28px 34px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.value-item h4 {
  color: #60a5fa;
  margin-bottom: 12px;
  font-size: 19px;
}

.value-item p {
  color: var(--cinza);
  font-size: 14px;
  line-height: 1.6
}

.value-num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: rgba(96, 165, 250, 0.30);
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}

@media(max-width:768px) {
  .values-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {

  .value-item,
  .review-text,
  .footer-col p {
    font-size: 15px;
  }
}

/* CTA */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--azul-inst), var(--preto));
  border-radius: 24px;
  padding: 70px 30px;
  border: 1px solid rgba(93, 169, 255, .2)
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 18px
}

.cta-banner p {
  color: var(--branco);
  opacity: .8;
  margin-bottom: 32px;
  font-size: 17px
}

/* CONTACT / MAP */
#contato {
  background: var(--grafite)
}

/* Slideshow full-width */
.office-slideshow {
  position: relative;
  width: 100%;
  height: clamp(320px, 55vh, 560px);
  overflow: hidden;
  margin: 0 0 40px;
  background: var(--preto);
}

.office-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.6);
  opacity: 0;
  transition: opacity 1.2s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.office-slideshow .slide.active {
  opacity: 1;
  /* transform:scale(1); */
}

@media(max-width:900px) {
  .office-slideshow .slide {
    object-fit: cover;
    object-position: center;
    transform: scale(1.10);
    transition: opacity 1.2s ease, transform 6s ease;
  }

  .office-slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
  }
}


/* Overlay de texto */
.slideshow-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 60px 30px 40px;
  background: linear-gradient(0deg, rgba(10, 10, 15, .9), transparent);
  text-align: center;
  z-index: 2;
}

.slideshow-overlay h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 8px;
  color: var(--branco)
}

.slideshow-overlay p {
  margin: 0 auto;
  max-width: 640px;
  opacity: .85;
  line-height: 1.6;
  color: var(--branco)
}

/* Indicadores (dots) */
.slideshow-dots {
  position: absolute;
  top: 20px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slideshow-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: .3s;
}

.slideshow-dots span.active {
  background: var(--azul-glow);
  width: 24px;
  border-radius: 5px
}

/* Mapa */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  max-width: 1200px;
  margin: 0 auto;
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block
}

@media(max-width:820px) {
  .map-wrap iframe {
    height: 240px
  }

  .slideshow-overlay {
    padding: 40px 20px 28px
  }
}

@media(prefers-reduced-motion:reduce) {
  .office-slideshow .slide {
    transition: opacity .4s ease;
    transform: none
  }

  .office-slideshow .slide.active {
    transform: none
  }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  height: 62px;
  background: #25D366;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px 0 16px;
  z-index: 2000;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
  animation: pulse 2s infinite;
  transition: .3s
}

.whatsapp-float:hover {
  transform: scale(1.05)
}

.whatsapp-float svg {
  width: 21px;
  height: 21px;
  fill: #fff;
  flex-shrink: 0
}

.whatsapp-label {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap
}

@media(max-width:768px) {
  .whatsapp-float {
    padding: 0;
    width: 62px;
    border-radius: 50%;
    bottom: 18px;
    right: 18px;
    justify-content: center;
  }

  .whatsapp-label {
    display: none
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6)
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: .8s
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* RESPONSIVE */
@media(max-width:768px) {
  .nav-links {
    position: fixed;
    top: 68px;
    right: -100%;
    flex-direction: column;
    background: var(--grafite);
    width: 70%;
    height: 100vh;
    padding: 40px 30px;
    gap: 24px;
    transition: .4s;
    justify-content: flex-start
  }

  .nav-links.open {
    right: 0
  }

  .menu-toggle {
    display: block
  }

  .nav-cta {
    display: none
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 12px
  }

  section {
    padding: 70px 18px
  }
}

/* SCROLLBAR AZUL */
::-webkit-scrollbar {
  width: 12px
}

::-webkit-scrollbar-track {
  background: var(--preto)
}

::-webkit-scrollbar-thumb {
  background: var(--azul);
  border-radius: 10px;
  border: 2px solid var(--preto)
}

::-webkit-scrollbar-thumb:hover {
  background: var(--azul-glow)
}

/* Firefox */
html {
  scroll-behavior: smooth;
  scrollbar-color: var(--azul) var(--preto);
  scrollbar-width: thin
}

/* SEÇÃO DE SERVIÇOS - BOX COM ABAS */
.servicos {
  padding: 80px 20px;
  background: var(--grafite)
}

.tabs-box {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--grafite);
  border-radius: 24px;
  padding: 30px 40px 40px;
  border: 1px solid rgba(93, 169, 255, .1)
}

/* PAINEL */
.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  min-height: 340px
}

.tab-panel.active {
  display: grid;
  animation: fade .4s ease
}

.tab-icon {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 0
}

.tab-icon svg {
  display: block
}

.tab-content h3 {
  font-size: 32px;
  color: var(--branco);
  margin-bottom: 20px
}

.tab-content h3 span {
  font-size: 15px;
  color: var(--cinza);
  font-weight: 400;
  margin-left: 8px
}

.tab-sub {
  font-size: 20px;
  color: var(--branco);
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(93, 169, 255, .15);
  margin-bottom: 24px
}

.tab-content ul {
  list-style: none;
  padding: 0
}

.tab-content li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 18px;
  color: var(--cinza);
  font-size: 16px;
  line-height: 1.4
}

.tab-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--azul)
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width:768px) {
  .tabs-box {
    padding: 24px 18px 30px;
  }

  .tab-content h3 {
    font-size: 26px;
  }

  .tab-sub {
    font-size: 17px;
  }
}

/* IMAGEM À DIREITA */
.tab-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%
}

.tab-image img {
  width: 100%;
  max-width: 420px;
  height: 320px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

@media(max-width:768px) {
  .tab-panel.active {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .tab-image {
    order: -1;
    align-items: center
  }

  .tab-image img {
    max-width: 100%;
    height: auto;
    max-height: 240px
  }
}

/* BOTÃO */
.btn-impulsionar {
  display: inline-block;
  background: var(--azul);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(45, 91, 255, .4);
  transition: .3s
}

.btn-impulsionar:hover {
  background: var(--azul-glow);
  transform: translateY(-2px)
}

/* FOOTER */
footer {
  background: var(--preto);
  padding: 60px 20px 40px;
  border-top: 1px solid rgba(93, 169, 255, .1)
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  text-align: left;
  padding-bottom: 40px
}

.footer-col p {
  color: var(--cinza);
  font-size: 14px;
  line-height: 1.7
}

.footer-col h4 {
  color: var(--branco);
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 700
}

.footer-col ul {
  list-style: none
}

.footer-col ul li {
  margin-bottom: 12px
}

.footer-col ul li a {
  color: var(--cinza);
  font-size: 14px;
  transition: .25s;
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-col ul li a:hover {
  color: var(--azul-glow)
}

.footer-bottom {
  text-align: center
}

.footer-bottom p {
  color: var(--cinza);
  font-size: 14px
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center
  }

  .footer-social {
    justify-content: center
  }

  .footer-col ul li a {
    justify-content: center
  }
}

.footer-col ul li a[href*="maps"] {
  align-items: flex-start;
}

.footer-col .slogan-theron {
  color: #5DA9FF;
  font-weight: 600;
  font-size: 15px;
  margin-top: 14px;
  line-height: 1.4;
}

.footer-col ul li a .arrow {
  color: var(--azul-glow);
  font-weight: 700;
  transition: transform .25s ease;
  display: inline-block;
}

.footer-col ul li a:hover .arrow {
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 6px
}

.footer-social a {
  width: auto;
  height: auto;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, opacity .25s ease;
}

.footer-social svg {
  width: 30px;
  height: 30px;
  transition: .25s
}

.footer-social a[aria-label="WhatsApp"] svg {
  fill: #25D366;
  width: 28px;
  height: 28px;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.08);
  opacity: .85
}

.cta-footer {
  text-align: center;
  padding: 80px 20px 90px;
  background: var(--preto);
}

.cta-footer h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--branco);
  margin: 0 0 48px;
  letter-spacing: -0.03em;
  font-family: 'Space Grotesk', sans-serif;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border: 1px solid rgba(237, 237, 237, 0.35);
  border-radius: 50px;
  color: var(--branco);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--branco);
  color: var(--preto);
  border-color: var(--branco);
}

.footer-divider {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 50px;
  height: 2px;
  border: none;
  background: linear-gradient(90deg, transparent, rgba(93, 169, 255, .4), transparent);
}

.footer-divider::after {
  content: none;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-mark {
  height: 26px;
  width: auto;
  display: block;
}

.footer-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: .5px;
}

@media(max-width:480px) {
  .cta-footer {
    padding: 60px 18px 70px;
  }

  .cta-footer h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
    margin-bottom: 36px;
  }
}