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

/* Largura da scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* Fundo da scrollbar */
::-webkit-scrollbar-track {
  background: transparent; 
  border-radius: 10px;
}

/* Barrinha que você arrasta */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #006eff, #0045a0, #001d44); /* degradê vertical */
  background-size: 100% 200%; /* aumenta pra animar vertical */
  border-radius: 10px;
  animation: moveGradient 3s linear infinite;
}

/* Hover da barra */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #006eff, #0045a0, #001d44);
}

/* Animação da onda vertical */
@keyframes moveGradient {
  0% { background-position: 0 0; }
  100% { background-position: 0 -200%; }
}

body {
    background-color: black;
    min-width: 100%;
    min-height: 100%;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* fica atrás de tudo */
  background: transparent;
  pointer-events: none; /* não atrapalha clique */
}

.hero {
    background-image: url('./img/hero-livo-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent; 
}

header.scrolled {
  background: rgba(15, 23, 42, 0.6); 
  backdrop-filter: blur(10px);        
}

header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.logo img {
  height: 40px;
}

/* NAVBAR */
.navbar {
  font-family: "Anta", sans-serif;
  display: flex;
  justify-content: center;
}

.navbar a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #5289F4;
}

/* BOTÃO CONTATO */
.header-btn {
  display: flex;
  justify-content: flex-end;
}

.btn-contato {
  font-family: "Montserrat", sans-serif;
  padding: 10px 20px;
  background: linear-gradient(90deg, #062DF6, #00c6ff);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contato:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.6);
}

.desktop-only {
  display: inline-block;
}
.mobile-only {
  display: none;
}

#check {
  display: none;
}

.icons {
  position: absolute;
  right: 5%;
  font-size: 2.8rem;
  color: #fff;
  cursor: pointer;
  display: none; 
}

.icons #close-icon {
  display: none;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .header {
    grid-template-columns: 1fr auto 1fr;
  }

  .icons {
    display: block;
  }

  /* navbar vira overlay */
  .navbar {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #111;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.4s ease;
  }

  .navbar a {
    display: block;
    margin: 20px 0;
    font-size: 1.5rem;
  }

  /* quando clica no hambúrguer */
  #check:checked ~ .navbar {
    left: 0;
  }

  #check:checked ~ .icons #menu-icon {
    display: none;
  }

  #check:checked ~ .icons #close-icon {
    display: block;
  }

  /* esconde o botão separado */
  .header-btn {
    display: none;
  }

  /* mostra o botão dentro do menu */
  .mobile-only {
    display: block;
    margin-top: 30px;
  }
}

.hero-content {
  padding: 50px;
}

.hero-content h1 {
  font-family: "Anta", sans-serif;
  color: white;
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 800;
  margin-top: 150px;
}

.hero-content p {
  font-family: "Montserrat", sans-serif;
  margin: 20px 0;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1.5;
}

.btn-reuniao {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  padding: 20px 70px;
  background: linear-gradient(90deg, #062DF6, #5289F4);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  background: linear-gradient(270deg, #0072ff, #00c6ff, #0072ff);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-reuniao:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 198, 255, 0.5);
}

/* Sobre Nós */

/* Section geral */
#sobre-nos {
  padding: 60px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

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

.sobre-header {
  text-align: center;
  margin-bottom: 40px;
}

.sobre-header h2 {
  font-family: "Anta", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.sobre-header p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #ccc;
}

/* Cards */
.sobre-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.sobre-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.6);
}

.sobre-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.sobre-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.sobre-card-content p {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e0e0;
}

/* Botão */
.sobre-btn {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(90deg, #006eff, #00c6ff);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.sobre-btn:hover {
  opacity: 0.9;
}

/* Soluções */

.solucoes {
  padding: 60px 20px;
  text-align: center;
}

.solucoes h2 {
  font-family: "Anta", sans-serif;
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.solucoes .subtitulo {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.grid-solucoes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.card {
  background: transparent;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card img {
  width: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px #062DF6);
}

.card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.card p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

.card:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

/* Cases */

.cases-section {
  background: #0c0c0c;
  padding: 60px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.cases-section .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Anta', sans-serif;
}

.cases-section .slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.cases-wrapper {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
  flex-shrink: 0;
  cursor: grab;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.cases-wrapper:active {
  cursor: grabbing;
}

.case-card {
  flex: 0 0 auto;
  width: calc(33.333% - 13.333px); /* 3 cards com gap distribuído */
  min-width: calc(33.333% - 13.333px);
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  box-sizing: border-box;
  user-select: none;
}

.case-card img {
  width: 100%;
  display: block;
  height: 200px;
  object-fit: cover;
  pointer-events: none;
}

.case-card-text {
  background: linear-gradient(to bottom, #0072ff, #00c6ff);
  padding: 15px;
  color: white;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 550;
}

.prev,
.next {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
  z-index: 100;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.next {
  right: -50px;
}

.prev {
  left: -50px;
}

.prev:hover,
.next:hover {
  transform: translateY(-50%) scale(1.2);
  color: #00c6ff;
}

.slider-container:hover .next {
  right: 20px;
}

.slider-container:hover .prev {
  left: 20px;
}

.dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: gray;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: white;
}

@media (max-width: 1200px) {
  .cases-section .slider-container {
    max-width: 800px;
  }
}

@media (max-width: 900px) {
  .cases-section .slider-container {
    max-width: 600px;
  }
  
  .case-card {
    width: calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  
  .next {
    right: -40px;
  }
  
  .prev {
    left: -40px;
  }
  
  .slider-container:hover .next {
    right: 15px;
  }
  
  .slider-container:hover .prev {
    left: 15px;
  }
}

@media (max-width: 600px) {
  .cases-section .slider-container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .case-card {
    width: 100%;
    min-width: 100%;
  }
  
  .prev,
  .next {
    font-size: 2rem;
  }
  
  .next {
    right: -30px;
  }
  
  .prev {
    left: -30px;
  }
  
  .slider-container:hover .next {
    right: 10px;
  }
  
  .slider-container:hover .prev {
    left: 10px;
  }
}

/* Feedbacks */

/* Seção Feedback */
#feedbacks {
  color: #fff;
  padding: 80px 20px;
}

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

.feedback-header {
  font-family: "Anta", sans-serif;
  text-align: center;
  margin-bottom: 50px;
}

.feedback-header h2 {
  font-size: 2.2rem;
  font-weight: bold;
}

.feedback-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 70px;
}

.feedback-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.6);
}

.feedback-card,
.feedback-diferencial-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.feedback-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.feedback-quote {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #ddd;
}

.feedback-client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.feedback-client h4 {
  font-family: "Anta", sans-serif;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.feedback-client span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: #aaa;
}

.feedback-diferencial {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.feedback-diferencial-texto h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-family: "Anta", sans-serif;
}

.feedback-diferencial-texto p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #ccc;
}

.feedback-img-team {
  width: 100%;
  max-width: 600px;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-img-team img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-img-team img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
  .feedback-diferencial-texto .feedback-img-team {
    max-width: 460px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  /* em mobile, a seção vira uma coluna: imagem fica centralizada e ocupa 100% do container */
  .feedback-diferencial {
    grid-template-columns: 1fr; /* já tem regra parecida, mas reforço se necessário */
  }

  .feedback-diferencial-texto .feedback-img-team {
    max-width: 100%;
    margin: 1rem auto 0 auto;
  }

  .feedback-diferencial-texto .feedback-img-team img {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .feedback-diferencial-texto .feedback-img-team {
    margin-top: 0.8rem;
  }
  .feedback-diferencial-texto .feedback-img-team img {
    border-radius: 10px;
  }
}

.feedback-diferencial-cards {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.feedback-diferencial-card {
  border: 1px solid #006eff;
  border-radius: 12px;
  padding: 20px;
  background: transparent;
  transition: background 0.3s ease, transform 0.3s ease;
}

.feedback-diferencial-card:hover {
  background: rgba(0,110,255,0.1);
  transform: translateY(-3px);
}

.feedback-diferencial-card h4 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.feedback-diferencial-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .feedback-diferencial {
    grid-template-columns: 1fr;
  }

  .feedback-diferencial-texto {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .feedback-header h2 {
    font-size: 1.8rem;
  }

  .feedback-diferencial-texto h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  #feedback {
    padding: 50px 15px;
  }

  .feedback-card {
    padding: 20px;
  }

  .feedback-quote {
    font-size: 0.9rem;
  }

  .feedback-diferencial-card h4 {
    font-size: 1rem;
  }

  .feedback-diferencial-card p {
    font-size: 0.85rem;
  }
}

/* FOOTER */

.footer {
  background-color: #0c0c0c;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr; /* deixa a logo ocupar mais espaço */
  gap: 60px;
  max-width: 1200px;  /* limita a largura */
  margin: 0 auto;     /* centraliza */
  padding: 0 20px;    /* respiro lateral */
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
}

.footer-logo-img {
  width: 250px;
  height: auto;
}

.footer-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

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

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #5289F4;
}

.footer-sociais {
  display: flex;
  flex-direction: column;
}

.footer-icons {
  display: flex;
  gap: 15px;
}

.footer-social-link i {
  font-size: 32px;
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover i {
  color: #5289F4;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  margin-top: 30px;
  font-size: 16px;
  color: #ccc;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr; /* duas colunas */
    gap: 40px;
  }

  .footer-logo {
    grid-column: 1 / -1; /* ocupa linha inteira */
    justify-content: center;
    padding-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr; /* uma coluna */
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-icons {
    justify-content: center; 
  }
}

/* Responsivo */
@media (max-width: 992px) {
  .header{
    padding: 1.3rem 5%;
  }
}

  @media (max-width: 857px) {
    .icons {
        display: inline-flex;
    }

    #check:checked ~ .icons #menu-icon {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked ~ .icons #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: height .3s ease;
        overflow: hidden;
    }

    #check:checked ~ .navbar {
        height: 23.3rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: transform .3s ease;
        color: #5289F4;
    }

    #check:checked ~ .navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.15s * var(--i));
    }

    .btn-contato {
        display: block;
        width: 30%;
        margin: 1.5rem auto 0;
        padding: 12px 0;
        background: #fff;
        border: 1px solid #5289F4;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        text-align: center;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 5%;
  }
}

@media (max-width: 1024px) {
  .grid-solucoes {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width: 1024px) {
  .sobre-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre-header h2 {
    font-size: 2rem;
  }
}

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

  .sobre-header h2 {
    font-size: 1.8rem;
  }

  .sobre-header p {
    font-size: 0.95rem;
  }

  .sobre-card img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  #sobre-nos {
    padding: 40px 15px;
  }

  .sobre-header h2 {
    font-size: 1.6rem;
  }

  .sobre-card-content p {
    font-size: 0.9rem;
  }

  .sobre-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 4rem;
    margin-top: 120px;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.2rem;
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
    margin-top: 80px;
  }
  .hero {
    min-height: 80vh;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
    margin-top: 60px;
  }
}

@media (max-width: 1200px) {
  .hero-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .hero-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content p {
    font-size: 0.9rem;
  }
}
/* gg! */