/* =========================
   VARIÁVEIS GLOBAIS
========================= */
:root {
  --bg-dark: black;
  --bg-header: rgba(2,6,23,0.6);
  --bg-header-mobile: rgba(2,6,23,0.9);
  --primary: #00d4ff;
  --primary-light: #0ea5e9;
  --text: #ffffff;
  --transition: 0.3s ease;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--bg-header);
  backdrop-filter: blur(12px);

  z-index: 1000;
}

/* =========================
   MENU
========================= */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  position: relative;

  opacity: 0;
  transform: translateY(-20px);

  transition: color var(--transition);
}

/* linha animada */
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0%;
  height: 2px;
  background: var(--primary);

  transition: width var(--transition);
}

/* hover */
.menu a:hover {
  color: var(--primary);
}

.menu a:hover::after {
  width: 100%;
}

/* =========================
   MENU MOBILE
========================= */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    gap: 15px;

    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;

    padding: 20px;
    background: var(--bg-header-mobile);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);

    transition: var(--transition);
  }

  .menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .menu a {
    font-size: 15px;
    text-align: center;
  }

  /* botão hamburguer */
  .menu-toggle {
    width: 30px;
    height: 22px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    cursor: pointer;
    z-index: 2000; /* garante clique em mobile */
  }

  .menu-toggle span {
    height: 4px;
    background: var(--text);
    border-radius: 2px;

    transition: var(--transition);
  }

  /* animação X */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
  }
}

/* =========================
   ANIMAÇÃO MENU
========================= */
.header.active .menu a {
  animation: fadeDown 0.8s ease forwards;
}

/* delay progressivo */
.header.active .menu a:nth-child(1) { animation-delay: 0.1s; }
.header.active .menu a:nth-child(2) { animation-delay: 0.2s; }
.header.active .menu a:nth-child(3) { animation-delay: 0.3s; }
.header.active .menu a:nth-child(4) { animation-delay: 0.4s; }
.header.active .menu a:nth-child(5) { animation-delay: 0.5s; }
.header.active .menu a:nth-child(6) { animation-delay: 0.6s; }
.header.active .menu a:nth-child(7) { animation-delay: 0.7s; }

/* =========================
   BASE PADRÃO DE BOTÕES
========================= */
.btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  cursor: pointer;

  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  will-change: transform;
}

/* =========================
   HOVER PADRÃO (IGUAL HERO)
========================= */
.btn:hover {
  transform: scale(1.05);
}

/* =========================
   BOTÃO WHATSAPP
========================= */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 20px #25D366;
  padding: 15px 60px;
}

.btn-whatsapp:hover {
  background: #20b858;
  box-shadow: 0 0 30px #25D366;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 20px;
  color: #fff;
}

/* Imagem de fundo */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* garante melhor enquadramento */
  opacity: 0.5;
  z-index: 0;
}

/* Container */
.hero-container {
  margin: 0;
  align-items: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  text-align: left;
}

/* BOTÃO */
.btn-whatsapp-hero {
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 20px #25D366;
  padding: 15px 80px; /* maior só no hero */
  margin-top: 40px;
  margin-left: 180px;
}

.btn-whatsapp-hero:hover {
  transform: scale(1.05);
  background: #20b858;
  box-shadow: 0 0 30px #25D366;
}

/* LOGO */
.hero-logo {
  margin-left: 95px;
  width: 450px;
  max-width: 100%;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  filter: contrast(1.2)
          drop-shadow(0 0 5px rgba(255,255,255,0.4));
}

.hero.active .hero-logo {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

/* TEXTO */
.hero h1,
.hero .hero-list,
.hero .btn-whatsapp-hero {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.hero h1 {
  margin-left: 95px;
  position: relative;
  font-size: 3rem;
  line-height: 1.3;
  margin-top: 10px; /* suavizado */

  background: linear-gradient(
    120deg,
    #fff 0%,
    #fff 40%,
    rgba(255,255,255,0.6) 50%,
    #fff 60%,
    #fff 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;

  overflow: hidden;
}

/* REFLEXO */
.hero h1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.25) 50%,
    transparent 100%
  );

  transform: skewX(-20deg);
  pointer-events: none;

  animation: shine 5s ease forwards;
}

/* ANIMAÇÕES */
.hero.active h1 {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

.hero.active .hero-list {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

.hero.active .btn-whatsapp-hero {
  animation: fadeUp 1s ease forwards, pulseScale 2.5s ease-in-out infinite;
  animation-delay: 0.8s, 1.2s;
}

/* LISTA */
.hero-list {
  margin-left: 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  list-style: none;
  padding: 0;
}

/* PADRÃO (mobile-first) */
.hero-logo,
.hero h1,
.hero-list,
.btn-whatsapp-hero {
  margin-left: 0; /* padrão sem empurrão */
}

/* MOBILE */
@media (max-width: 600px) {
  .hero {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    height: auto; /* deixa altura flexível */
    min-height: 90vh;
  }

  .hero-container {
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-top: 0;
  }

  .hero-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-whatsapp-hero {
    margin: 40px auto 0; /* centralizado */
    padding: 12px 40px;
    max-width: 250px;
    text-align: center;
  }

  .hero-logo {
    max-width: 300px;
    width: 100%;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .hero {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    height: auto;
    min-height: 85vh;
  }

  .hero-container {
    align-items: center;
    text-align: center;
    max-width: 80%;
  }

  .hero h1 {
    font-size: 2.6rem;
    margin-top: -10px;
  }

  .hero-list {
    flex-direction: column;
    align-items: center;
  }

  .btn-whatsapp-hero {
    margin: 30px auto 0;
    padding: 15px 60px;
  }
  

  .hero-logo {
    width: 80%;
  }
}

/* Ajuste para telas médias (ex: 1024px) */
@media (max-width: 1200px) and (min-width: 901px) {
  .hero {
    height: auto;
    min-height: 85vh;
    padding: 40px 20px;
  }

  .btn-whatsapp-hero {
    margin: 30px auto 0;
    padding: 15px 60px;
    display: block;
    max-width: 280px;
    text-align: center;
  }

  

  .hero-logo {
    margin: 0 80px 20px;
    width: 70%;
    
  }

  .hero h1 {
    margin: 0 auto 20px;
    text-align: center;
    font-size: 2.8rem;
  }

  .hero-list {
    margin: 20px auto 0;
    text-align: center;
    gap: 20px;
  }
}

/* Desktop: aplica recuo lateral */
@media (min-width: 1201px) {
  .hero-logo { margin-left: 95px; }
  .hero h1 { margin-left: 95px; }
  .hero-list { margin-left: 100px; }
  .btn-whatsapp-hero { margin-left: 180px; }
}

/* ABOUT */
.about { 
  background: #020617; 
  color: #e5e7eb; 
  padding: 60px 20px;
}

/* CONTAINER */
.about-container {
  display: flex; 
  align-items: flex-start; 
  justify-content: space-between;
  gap: 300px; 
  max-width: 1300px; 
  margin: 0 auto;

  opacity: 0; 
  transform: translateY(50px); 
  transition: all 0.8s ease;
}

.about-container.animate { 
  opacity: 1; 
  transform: translateY(0); 
}

/* COLUNAS */
.about-left,
.about-right {
  flex: 1;
}

/* LEFT */
.about-left h2 { 
  font-size: 2.5rem; 
  color: #fff; 
  display: flex; 
  align-items: center; 
  margin-bottom: 20px; 
}

/* BARRA */
.about-left .barra {
  width: 4px; 
  height: 0;
  background: linear-gradient(#00d4ff, #0ea5e9);
  margin-right: 12px; 
  border-radius: 2px;
  transition: height 0.8s ease;
}

.about-container.animate .barra { 
  height: 80px; 
}

/* RIGHT */
.about-right p {
  font-size: 1.5rem; 
  line-height: 1.6; 
  margin-bottom: 20px;
  max-width: 500px;

  opacity: 0; 
  transform: translateX(40px); 
  transition: all 0.8s ease;
}

.about-container.animate .about-right p { 
  opacity: 1; 
  transform: translateX(0); 
}

.about-right strong { 
  color: #00d4ff; 
}

/* TABLET */
@media (max-width: 768px) {
  .about-container { 
    flex-direction: column; 
    align-items: center;
    text-align: center; 
  }

  .about-left h2 { 
    justify-content: center; 
  }

  .about-right p { 
    text-align: center; 
    max-width: 600px; 
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .about {
    padding: 40px 15px;
  }

  .about-left h2 { 
    font-size: 1.6rem; 
  }

  .about-right p { 
    font-size: 0.95rem; 
    line-height: 1.5; 
  }

  .about-right .btn-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

/* SOBRE */
#sobre {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 60px;
  align-items: center;
  padding: 80px 20px; /* reduzido para mobile */
  max-width: 1350px;
  margin: 60px auto;
}

/* TEXTO */
#sobre .sobre-texto {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#sobre h2 {
  font-size: 2.5rem;
  color: #00c2ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

#sobre h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c2ff, #0077ff);
  margin-top: 10px;
  border-radius: 2px;
}

#sobre p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
}

/* LADO DIREITO */
.sobre-list-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* IMAGEM */
.sobre-img {
  width: 100%;
  max-width: 450px;
  height: auto; /* garante responsividade */
}

/* ICON */
.icon img {
  width: 100px;
}

/* LISTA */
.sobre-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 60px; /* reduzido */
  align-items: center;
}

.sobre-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #fff;
}

.sobre-list li::before {
  content: "✔";
  color: #00c2ff;
  font-weight: bold;
}

/* BOTÃO */
.btn-cta {
  display: inline-block;
  margin-top: 80px; /* reduzido para mobile */
  width: 300px;
  padding: 12px 18px;

  border: 2px solid #00c2ff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.btn-cta:hover {
  background: #00c2ff;
  color: #000;
  transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  #sobre {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 20px;
  }

  #sobre .sobre-texto {
    align-items: center;
  }

  .sobre-list li {
    justify-content: center;
  }
}

/* MOBILE EXTRA AJUSTADO */
@media (max-width: 480px) {
  #sobre {
    padding: 30px 10px; /* reduz ainda mais o padding */
    margin: 40px auto;  /* menos espaço externo */
    gap: 40px;          /* reduz o espaçamento entre colunas */
  }

  #sobre h2 {
    font-size: 1.4rem;  /* menor título */
    letter-spacing: 1px;
  }

  #sobre p {
    font-size: 0.9rem;  /* texto mais compacto */
    line-height: 1.4;
  }

  .sobre-img {
    max-width: 250px;   /* imagem menor */
  }

  .icon img {
    width: 50px;        /* ícones menores */
  }

  .sobre-list {
    gap: 8px;           /* menos espaço entre itens */
    margin-bottom: 30px;
  }

  .sobre-list li {
    font-size: 0.9rem;  /* texto da lista menor */
  }

  .btn-cta {
    width: 100%;        /* botão ocupa largura total */
    max-width: 240px;
    margin-top: 40px;   /* menos espaço acima */
    font-size: 0.85rem;
    padding: 10px 16px;
  }
}


/* SERVIÇOS */

#servicos h2,
#servicos p,
#servicos .grid,
#servicos .btn-hero-servicos {
  position: relative;
  z-index: 3;
}

#servicos {
  position: relative;
  overflow: hidden;
  padding: 80px 20px; /* reduzido para mobile */
  color: #e5e7eb;
}

/* IMAGEM DE FUNDO */
.servicos-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 1;
}

/* OVERLAY */
#servicos::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* CONTEÚDO */
#servicos .container {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
}

/* TÍTULO */
#servicos h2 {
  margin-left: 150px;
  margin-top: 60px;
  font-size: 2.5rem;
  color: #00c2ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: left;
}

#servicos h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c2ff, #0077ff);
  margin-top: 10px;
  border-radius: 2px;
}

/* TEXTO */
#servicos > p {
  margin-left: 150px;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  max-width: 700px;
  margin-bottom: 150px; /* reduzido */
  text-align: left;
}

/* GRID */
#servicos .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* BOTÃO SERVIÇOS */
.btn-hero-servicos {
  display: block;
  width: fit-content;
  margin: 100px auto 0;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 80px;
  border-radius: 30px;
  box-shadow: 0 0 20px #25D366;
  cursor: pointer;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-hero-servicos:hover {
  transform: scale(1.05);
  background: #20b858;
  box-shadow: 0 0 30px #25D366;
}

.servicos.reveal.animate .btn-hero-servicos {
  animation: fadeUp 1s ease forwards, pulseScale 2.5s ease-in-out infinite;
  animation-delay: 0s, 1.2s;
}

/* CARD */
.servico {
  margin-bottom: 40px; /* reduzido */
  position: relative;
  z-index: 3;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center; /* melhor em mobile */
  border: 1px solid transparent;
}

.servico:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0, 194, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* garante que nada bloqueia hover */
.servico * {
  pointer-events: none;
}

/* ICON */
.servico img {
  width: 50px;
  margin-bottom: 10px;
}

/* TÍTULO CARD */
.servico span {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

/* TEXTO CARD */
.servico p {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.4;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  #servicos {
    text-align: center;
    padding: 60px 20px;
  }

  #servicos h2,
  #servicos > p {
    text-align: center;
    margin-left: 0;
  }
}
/* NÚMEROS */
#numeros {
  position: relative;
  overflow: hidden;
  padding: 100px 40px; /* reduzido para telas menores */
}

/* topo */
.numeros-topo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 60px; /* reduzido */
  align-items: start;
  max-width: 1350px;
  margin: 0 auto;
}

#numeros .sobre-img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  height: auto; /* garante responsividade */
}

.numeros-texto {
  text-align: right;
  margin-right: 60px;
  margin-top: 40px; /* reduzido */
}

.numeros-texto h2 {
  font-size: 2.5rem; /* menor em telas médias */
  margin-bottom: 30px;
  color: #00c2ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  text-align: right;
}

.numeros-texto h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c2ff, #0077ff);
  margin-top: 10px;
  border-radius: 2px;
  margin-left: auto;
}

.numeros-texto p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  text-align: right;
  margin-top: 20px;
}

/* Timeline */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
 width: 70%;
  margin: 0 auto;   /* centraliza horizontalmente */
  padding: 0 40px;  /* reduzido */
  margin-top: 60px;
}

/* Linha da timeline padrão (desktop) */
.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00c2ff, #00ffbf);
  opacity: 0.3;
  z-index: 0;
}

/* Responsivo: remove linha em telas menores */
@media (max-width: 768px) {
  .timeline::before {
    display: none; /* oculta completamente */
  }

  .timeline {
    flex-direction: column;
    padding: 0 20px;
  }

  .marco {
    margin: 30px 0;
  }
}

.marco {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Ícones isolados */
#numeros .icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.marco h3 {
  font-size: 2rem;
  background: linear-gradient(90deg, #00c2ff, #00ffbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 30px;
  opacity: 1;
  transition: all 0.3s ease;
}

.prefix, .suffix {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #00c2ff;
}

.marco h3.finished {
  animation: pulse 0.6s ease;
  opacity: 1;
}

@keyframes pulse {
  0% { transform: scale(1); text-shadow: 0 0 0px transparent; }
  50% { transform: scale(1.15); text-shadow: 0 0 15px #00ffbf; }
  100% { transform: scale(1); text-shadow: 0 0 0px transparent; }
}

.marco p {
  margin-top: 20px;
  font-size: 1rem;
  color: #e5e7eb;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.marco p.show {
  opacity: 1;
}

/* Responsivo */
@media (max-width: 768px) {
  .numeros-topo {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 20px;
  }

  #numeros {
    min-height: 300px; /* garante altura mínima */
    display: block;
  }

  #numeros .sobre-img {
    margin: 0 auto 20px auto;
  }

  .numeros-texto {
    margin: 0;
    text-align: center;
  }

  .numeros-texto h2,
  .numeros-texto p {
    text-align: center;
  }

  .timeline {
    flex-direction: column;
    padding: 0 20px;
  }

  .marco {
    margin: 30px 0;
  }

  /* Força visibilidade dos ícones e textos em mobile */
  #numeros .icon,
  .marco p {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  #numeros {
    padding: 60px 20px;
  }

  .numeros-texto h2 {
    font-size: 1.6rem;
  }

  .numeros-texto p {
    font-size: 1rem;
  }

  .marco h3 {
    font-size: 1.8rem;
  }
}

 /* =========================
   SEÇÃO EMPRESAS
========================= */

.empresas {
  text-align: center;
  padding: 100px 20px;
  background: black; /* PADRÃO DO SITE */
  color: #e5e7eb;
  margin-top: 100px;
}

/* TÍTULO */
.empresas h2 {
  margin-top: 80px;
  color: #00c2ff;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
}

.empresas h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c2ff, #0077ff);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* TEXTO */
.empresas p {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.5rem;
  line-height: 1.6;
}

/* GRID (mantido como "carrossel" visual) */
.carrossel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* LOGOS */
.carrossel img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 10px;

  opacity: 0;
  transform: translateY(30px) scale(0.9);

  transition: all 0.4s ease;
  will-change: transform, opacity; /* PERFORMANCE */

  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* HOVER */
.carrossel img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ANIMAÇÃO */
.empresas.animate .carrossel img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* delay em cascata */
.empresas.animate .carrossel img:nth-child(1) { transition-delay: 0.1s; }
.empresas.animate .carrossel img:nth-child(2) { transition-delay: 0.2s; }
.empresas.animate .carrossel img:nth-child(3) { transition-delay: 0.3s; }
.empresas.animate .carrossel img:nth-child(4) { transition-delay: 0.4s; }
.empresas.animate .carrossel img:nth-child(5) { transition-delay: 0.5s; }

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  .empresas {
    padding: 80px 20px;
  }

  .empresas h2 {
    font-size: 2rem;
  }

  .empresas p {
    font-size: 1.05rem;
  }

  .carrossel img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {

  .carrossel {
    gap: 20px;
  }

  .carrossel img {
    width: 100px;
    height: 100px;
    padding: 6px;
  }
}
/* =========================
   SEÇÃO DEPOIMENTOS
========================= */

.depoimentos {
  margin-top: 10px;
  text-align: center;
  padding: 100px 20px;
  color: #e5e7eb;
}

/* TÍTULO */
.depoimentos h2 {
    margin-top: 20px;
  color: #00c2ff;
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.depoimentos h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c2ff, #0077ff);
  margin: 10px auto 0;
}

/* TEXTO */
.depoimentos p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.5rem;
  line-height: 1.6;
}

/* GRID */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

/* CARD */
.depoimento {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 50px;
  border-radius: 12px;
  transition: 0.3s;
  text-align: left;
}

.depoimento:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.depoimento {
  position: relative; /* necessário para o absolute funcionar dentro */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 50px;
  border-radius: 12px;
  transition: 0.3s;
  text-align: left;
}

.depoimento .link {
  position: absolute;
  bottom: 15px;   /* distância do fundo */
  right: 20px;    /* distância da lateral direita */
  font-size: 0.9rem;
  color: rgba(255, 0, 0, 0.7);
  text-decoration: none;
  text-decoration: underline;
}

/* RESPONSIVO GRID */
@media (max-width: 900px) {
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   GRÁFICOS (VERSÃO FINAL)
========================= */
.graficos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 60px auto 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 40px;
  margin-bottom: 60px;
}

.grafico {
  width: 160px; /* maior em desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grafico-wrapper {
  position: relative;
  width: 150px;
  height: 130px;
}

.grafico svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.grafico circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.grafico .bg {
  stroke: rgba(255,255,255,0.1);
}

.grafico .progress {
  stroke: #00d4ff;
  stroke-dasharray: 314; /* 2πr (r=50) */
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.5s ease;
  filter: drop-shadow(0 0 6px rgba(0,212,255,0.5));
}

.grafico span {
  position: absolute;
  top: 50%; 
  left: 55%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}

.grafico p {
  margin-top: 14px;
  font-size: 1rem;
  color: #aaa;
}

/* Responsivo - Tablet */
@media (max-width: 768px) {
  .graficos {
    gap: 25px;
  }

  .grafico {
    width: 130px;
  }

  .grafico-wrapper {
    width: 130px;
    height: 130px;
  }

  .grafico span {
    top: 50% ;
    font-size: 1.1rem;
  }

  .grafico p {
    font-size: 0.9rem;
  }
}

/* Responsivo - Celular */
@media (max-width: 480px) {
  .grafico {
    width: 100px;
  }

  .grafico-wrapper {
    width: 100px;
    height: 100px;
  }

  .grafico span {
    font-size: 1rem;
  }

  .grafico p {
    font-size: 0.85rem;
  }
}
/* =========================
   SEÇÃO CONTATO
========================= */

.contato {
  background: #020617;
  color: #e5e7eb;
  padding:60px 20px 20px;
  text-align: center;
  margin-bottom: 0;
}

/* TÍTULO */
.contato h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00c2ff;
  position: relative;
}

.contato h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c2ff, #0077ff);
  margin: 10px auto;
  border-radius: 2px;
}

/* TEXTO */
.contato p {
  font-size: 1.5rem;
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* LISTA */
.contato-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 600px;
}

.contato-list li {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Links especiais (WhatsApp, Instagram, Endereço) */
.contato-list li.social a {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.contato-list li.social a svg {
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover animado em texto e ícone */
.contato-list li.social a:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px currentColor);
}

.contato-list li.social a:hover svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px currentColor);
}

/* BOTÃO */
.contato .btn {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  color: #001f3f;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0,212,255,0.4);
}

.contato .btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 25px rgba(0,212,255,0.7);
}

/* ANIMAÇÃO */
.contato.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.contato.reveal.animate {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVO
========================= */

/* WhatsApp e Instagram lado a lado em telas grandes */
@media (min-width: 768px) {
  .contato-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contato-list li.social {
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  .contato {
    padding: 80px 20px;
  }

  .contato h2 {
    font-size: 2rem;
  }

  .contato p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .contato-list li {
    flex-direction: column;
    gap: 5px;
  }

  .contato .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* =========================
   ANIMAÇÕES
========================= */

/* GRADIENTE */
@keyframes gradientMove {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}

/* PULSE (botões e destaques) */
@keyframes pulseScale {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ENTRADAS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-50px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* BRILHO TEXTO */
@keyframes glassShine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ANIMAÇÃO LIMPA */
@keyframes shine {
  0% {
    left: -120%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}
/* ANIMAÇÃO CORRIGIDA */
@keyframes shine {
  0% {
    left: -150%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: 150%;
    opacity: 0; /* <- ESSENCIAL (remove “rastro”) */
  }
}
/* =========================
   REVEAL (PADRÃO GLOBAL)
========================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease; /* MOVIDO PRA CÁ (mais correto) */
}

.reveal.animate {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ANIMAÇÃO EXTRA
========================= */

.reveal.slide {
  animation: slideRotateBounce 1s ease forwards;
}

@keyframes slideRotateBounce {
  0% { opacity: 0; transform: translateX(-100px) rotateY(60deg); }
  60% { opacity: 1; transform: translateX(15px) rotateY(0); }
  80% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

/* =========================
   CONTAINER GLOBAL
========================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   FUNDO GLOBAL (CORRIGIDO)
========================= */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* ocupa toda a altura da tela */
  font-family: Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
}

main {
  flex: 1;              /* ocupa todo o espaço entre header e footer */
  padding-top: 70px;    /* compensa o header fixo */
}

.footer {
  margin-top: 0;
  color: #e5e7eb;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

 