@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}






h1 {
  color: #001c48;
  font-family: "Montserrat", sans-serif;
}

.hero-text > p {
  color: #001c48;
}

.logo {
  width: 40px;
  color: #3b82f6;
  color: #8b5cf6;
  color: #ec4899;
  color: #8b5cf6;
  color: #10b981;
  color: #3b82f6;
}



.navbar {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, 0.1), 
              0 10px 20px -5px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(0);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: none;
  border-radius: 0 0 20px 20px;
  margin: 0 20px;
  width: calc(100% - 40px);
  z-index: 1000;
}

#modal-form {
  z-index: 10000;
}

#mobile-menu {
  z-index: 10000;
}

#success-popup {
  z-index: 10000;
}

.navbar.scrolled {
  transform: translateY(-10px);
  box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, 0.1), 
              0 15px 30px -10px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.75) !important;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
  border-radius: 0 0 20px 20px;
  z-index: -1;
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  margin: 0 -20px;
  border-radius: 0 0 20px 20px;
}

.mobile-menu.open {
  max-height: 500px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #1e293b;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.home-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.home-card-caption {
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-card.active .home-card-caption {
  opacity: 1;
  transform: translateY(0);
}

.home-card.active {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.home-btn-glow:hover {
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.home-pulse {
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.3);
  }
  70% {
      box-shadow: 0 0 0 8px rgba(56, 189, 248, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

.home-grid-line {
  position: absolute;
  background: rgba(56, 189, 248, 0.1);
  z-index: -1;
}

.home-grid-line-1 {
  top: 20%;
  left: 0;
  width: 100%;
  height: 1px;
}

.home-grid-line-2 {
  top: 0;
  left: 20%;
  width: 1px;
  height: 100%;
}

.home-grid-line-3 {
  bottom: 15%;
  left: 0;
  width: 100%;
  height: 1px;
}

.home-grid-line-4 {
  top: 0;
  right: 25%;
  width: 1px;
  height: 100%;
}

@layer utilities {
  .animate-fade-in {
    @apply opacity-0 translate-y-4 transition-all duration-1000 ease-out;
    animation: fadeIn 1s forwards;
  }

  .delay-200 { animation-delay: 0.2s; }
  .delay-300 { animation-delay: 0.3s; }
  .delay-400 { animation-delay: 0.4s; }
  .delay-500 { animation-delay: 0.5s; }
  .delay-600 { animation-delay: 0.6s; }
  .delay-700 { animation-delay: 0.7s; }
  .delay-800 { animation-delay: 0.8s; }

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.sobre,
.software {
  background: linear-gradient(180deg, #061d47 0%, #0b2e6a 100%);
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.quem-somos {
  background: linear-gradient(180deg, #061d47 0%, #0b2e6a 100%);

  
}

.quem-somos h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.quem-somos p {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}



.valores {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.valor-box {
  text-align: center;
  width: 180px;
}

.valor-box span {
  font-size: 28px;
  font-weight: bold;
  color: #00baff;
  display: block;
  margin-bottom: 8px;
}

.valor-box p {
  font-size: 14px;
  margin: 0;
}

.service-card {
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  height: 125px; /* Altura fixa aumentada */
  width: 100%; /* Largura 100% do container pai */
  border-radius: 20px; /* Bordas mais arredondadas */
  display: flex;
  align-items: center;
  padding: 1.3rem;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.3);
}
.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  transition: all 0.3s ease;
  border-radius: 9999px;
  color: white;
  font-weight: 600;
  padding: 1rem 2.5rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.4);
  background: linear-gradient(135deg, #0284c7, #0369a1);
}
.icon-wrapper {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}


.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #00baff;
  transition: all 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.331);
}

.icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}




.qualidade {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.card {
  position: relative;
  background-color: #0033a029;
  border: 2px solid #21c6ff;
  border-radius: 20px;
  width: 300px;
  padding: 60px 20px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.card img {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  padding: 5px;
  border: 2px solid #21c6ff;
}

.card h3 {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #fff;
}

.card p {
  font-size: 0.95rem;
  color: #fff;
  margin-top: 10px;
}

.software > h2,
p {
  color: #f5f8fe;
}

.gradient-text {
  background: linear-gradient(90deg, #0369a1 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-left: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-left-color: #0ea5e9;
  background-color: white;
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.glass-effect {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-image {
  width: 150%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
}

.content-wrapper {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.section-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}


.feed-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f5f8fe;
  align-items: center;
  background: linear-gradient(180deg, #061d47 0%, #0b2e6a 100%);
}

.empresas-container {
  min-height: 100vh;
}
.media-container,
.feedback-container {
  height: 100vh;
  width: 100%; /* ⬅️ Isso garante que cada seção ocupe toda a largura */
  color: white;
}

.empresas-container {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.text-empresas h2 {
  font-size: 36px;
  color: white;
}

.text-empresas p {
  font-size: 15px;
  margin-bottom: 50px;
}

.empresas-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 40px;
  padding: 20px;
  box-sizing: border-box;
}

.empresas-final {
  width: 60%;
  margin-top: 20px;
}

.coluna-wrapper {
  overflow: hidden;
  width: 100%;
}

.coluna {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.empresa-card {
  min-width: 150px;
  height: 150px;
  background-color: #f5f8fe;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 5px 30px;
}



.text-media {
  text-align: center;
}

.text-media h2 {
  font-size: 36px;
}

.text-media p {
  font-size: 15px;
  margin-bottom: 50px;
}


.media-container {
  display: flex;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}



.media {
  width: 80%;
  height: 80%;
  background-color: #214e9c;
  
}

.feedback-container {
  
}

.feed-container {
  background: 
    url('../assets/background-66.png'),
    linear-gradient(140deg, #00091e 0%, #001f55 50%, #156bff 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 100;
 
}




.testimonial-section {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
  padding: 40px 0; /* espaço vertical opcional */
}

.text-testimonial {
  text-align: center;
}

.text-testimonial h2 {
  font-size: 46px;
  font-weight: bold;
  color: white;
}

.text-testimonial p {
  font-size: 20px;
  margin-bottom: 50px;
}

.testimonial-container {
  position: relative; /* MUITO IMPORTANTE */
  width: 100%;
  margin: auto;
  
  margin-left: 100px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* Card de depoimento */
.testimonial-card {
  width: 65%;
  margin: 0 10px;
  margin-bottom: 100px;
  background-color: rgba(255, 255, 255, 0.08); /* Transparência */
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  border: solid 1px #21c6ff;
  backdrop-filter: blur(5px); /* Aqui desfoca o fundo */
  -webkit-backdrop-filter: blur(5px); /* Suporte para Safari */
}


.stars {
  font-size: 22px;
  color: rgb(255, 255, 255);
  margin-bottom: 15px;
  letter-spacing: 5px;
}

.profile {
  display: flex;
  align-items: center;
  color: white;
  margin-top: 15px;
}


.profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

/* Botões de navegação */
/* Botões de navegação */
.nav {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  color: #000;
  background-color: #f5f8fe;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

/* Botão anterior */
.prev {
  left: 70px; /* Agora com 10px de distância da borda esquerda */
}

.next {
  right: 70px; 
}

.contact-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: #f5f8fe;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.contact-section h2 {
  font-size: 32px;
  color: #06296e;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 16px;
  color: #333;
  margin-bottom: 40px;
}

.locations {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.location h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #06296e;
}

.location img {
  width: 300px;
  height: 180px;
  border-radius: 12px;
  box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.1);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  background-color: #06296e;
  padding: 8px;
  border-radius: 50%;
  transition: transform 0.2s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer {
  background-color: #06296e;
  color: white;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
}

.footer-logo span {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
}

.footer-message {
  font-size: 12px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .testimonial-card {
    max-width: 20%;
  }
}

/* LARGE DESKTOP (≥ 1024px) */
@media (min-width: 1024px) {
  .testimonial-card {
    min-width: 25%;
  }
}

.segment-card {
  background: rgba(3, 17, 42, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-out;
}

.carousel-slide {
  flex-shrink: 0;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .carousel-slide {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    min-width: 33.333%;
  }
}


