* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px 0;
  transition: 0.4s ease;
  z-index: 999;
}

header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo img {
  height: 70px;
}


.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #909090;
  font-weight: 500;
  transition: 0.3s;
}

header.scrolled .nav a {
  color: #333;
}

.nav a:hover {
  color: #012e6a;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: 0.3s;
}

header.scrolled .hamburger span {
  background: #333;
}

@media (max-width: 768px) {

  header .container {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .logo {
    flex: 0 0 auto;
  }

  .hamburger {
    display: flex;
    flex: 0 0 auto;
  }

  .nav {
    display: none;
  }

  .nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

}


/* HERO */

.hero {
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(rgba(5, 15, 30, 0.138), rgba(5, 15, 30, 0.072)),
              url('img/capa1.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 8%;
}


.hero-content {
  max-width: 650px;
}


.hero h1 {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
}

.hero p {
  font-size: 15px;
  color: #cfcfcf;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(40px);
}

.hero-mobile-img {
  display: none;
}


.hero-btn {
  display: inline-block;
  padding: 18px 40px;
 background: radial-gradient(circle at top, #02386b, #191919);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.hero-btn:hover {
  background: radial-gradient(circle at top, #1371ca, #191919);
}

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: 0.8s ease;
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-btn {
    padding: 16px 30px;
  }
}

@media (max-width: 768px) {

  .hero {
    min-height: 130vh;
    background: linear-gradient(rgba(5, 15, 30, 0.144), rgba(5, 15, 30, 0.16)),
                url('img/capa1celular.png') center/cover no-repeat;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-mobile-img {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 40px 0 30px; 
  }

  .hero-btn {
    margin-top: 10px;
  }

}

/*sobre*/

.sobre {
   min-height: 70vh;
  background: 
              url('img/fundo5.png') center/cover no-repeat;
  width: 100%;
  padding: 100px 8%;
  background-color: #fff;
}

.sobre-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.sobre-img {
  flex: 1;
  opacity: 0;
  transform: translateY(40px);
}

.sobre-img img {
  width: 100%;
  max-width: 500px;
}

.sobre-content {
  flex: 1;
}

.sobre-tag {
  color: #02386b;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(40px);
}

.sobre h2 {
  font-size: 36px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  background: linear-gradient(
    to bottom,
    #02386b 0%,
    #02386b 60%,
    #191919 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sobre p {
  color: #000;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(40px);
  font-size: 18px;
  font-weight: 700;
}

.sobre p span{
   background: linear-gradient(
    to bottom,
    #02386b 0%,
    #02386b 60%,
    #191919 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-size: 20px;
  font-weight: 700;
}
.sobre-btn {
  display: inline-block;
  padding: 14px 35px;
 background: radial-gradient(circle at top, #02386b, #191919);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.3s ease;
}

.sobre-btn:hover {
  background: radial-gradient(circle at top, #02386b, #191919e5);
}

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: 0.8s ease;
}

@media (max-width: 768px) {

  .sobre-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .sobre-img img {
    max-width: 300px;
    margin-top: 40px;
  }

  .sobre h2 {
    font-size: 26px;
  }

  .sobre {
   min-height: 90vh;
  background: 
              url('img/fundo5celular.png') center/cover no-repeat;
  width: 100%;
  padding: 100px 8%;
  background-color: #fff;
}

}

.servicos { 
  padding: 80px 20px;
}

.container-servicos {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #f1f1f137;
  border-radius: 30px;
  padding: 60px 30px;
  text-align: center;
  width: 100%;
  max-width: 350px;
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(60px);
}

.icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffffeb;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon img {
  width: 70x;
  height: 65px;
}

.card h3 {
  margin-top: 40px;
  font-size: 22px;
  margin-bottom: 15px;
  background: linear-gradient(
    to bottom,
    #6cb1f1 0%,
    #5ca5ea 60%,
    #e8eff2 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card p {
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
}

.card p span{
   background: linear-gradient(
    to bottom,
    #6cb1f1 0%,
    #5ca5ea 60%,
    #f2f4f5 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-size: 17px;
  font-weight: 400;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .container-servicos {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .card {
    max-width: 100%;
  }

 
}


.clientes-section {
  padding: 100px 5%;
  background: url("img/fundo5.png") center center/cover no-repeat;
  color: #fff;
}

.clientes-titulo {
  text-align: center;
  font-size: 50px;
  margin-bottom: 80px;
   background: linear-gradient(
    to bottom,
    #02386b 0%,
    #02386b 60%,
    #191919 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clientes-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px; 
  margin: 0 auto;
}

.clientes-img img {
  width: 100%;
  max-width: 700px;
  border-radius: 30px;
  display: block;
}

.clientes-texto {
  max-width: 500px;
   color: #000;
}

.clientes-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.clientes-icon {
  width: 50px;
  height: 45px;
}

.clientes-texto h3 {
  font-size: 28px;
   color: #000;
}

.clientes-texto p {
  margin: 20px 0 30px;
  line-height: 1.6;
  font-size: 20px;
   color: #000;
}

.clientes-texto p span{
   background: linear-gradient(
    to bottom,
    #02386b 0%,
    #02386b 60%,
    #191919 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 600;
}

.clientes-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(
    to bottom,
    #02386b 0%,
    #02386b 60%,
    #191919 100%
  );

 
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.clientes-btn:hover {
  background: #ccc;
}

.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal-right {
  transition-delay: 0.2s; 
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {

  .clientes-container {
    flex-direction: column;
  }

  .clientes-texto {
    order: 1;
    text-align: center;
  }

  .clientes-img {
    order: 2;
  }

  .clientes-titulo {
    font-size: 36px;
  }

  .clientes-section {
  padding: 100px 5%;
  background: url("img/fundo5celular.png") center center/cover no-repeat;
  color: #fff;
}


}

.trafego {
  background: radial-gradient(circle at top, #02386b, #191919);
  padding: 120px 20px;
  color: #fff;
}

.trafego-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.trafego-left {
  flex: 1;
}

.trafego-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
    background: linear-gradient(
    to bottom,
    #6cb1f1 0%,
    #5ca5ea 60%,
    #f2f4f5 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trafego-linha {
  width: 100px;
  height: 2px;
  background: #1abc9c;
  margin-bottom: 50px;
}

.trafego-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 50px;
}

.trafego-icon {
  min-width: 80px;
  height: 80px;
  border: #6cb1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trafego-icon img {
  width: 50px;
}

.trafego-text h3 {
  background: linear-gradient(
    to bottom,
    #6cb1f1 0%,
    #5ca5ea 60%,
    #e8eff2 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.trafego-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.trafego-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.trafego-right img {
  width: 100%;
  max-width: 700px;
}


@media (max-width: 992px) {

  .trafego-container {
    flex-direction: column;
  }

  .trafego-right {
    margin-top: 50px;
  }

  .trafego-title {
    font-size: 26px;
  }

  .trafego-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .trafego-icon {
    margin-bottom: 15px;
  }

}

.avaliacoes {
  padding: 60px 5%;
   min-height: 80vh;
  background: 
              url('img/fundo5.png') center/cover no-repeat;
}

.avaliacoes-titulo {
  text-align: center;
  background: linear-gradient(
    to bottom,
    #02386b 0%,
    #02386b 60%,
    #191919 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
  margin-bottom: 50px;
}

.avaliacoes-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.avaliacao-card {
  background: #132b55;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.avaliacao-card:hover {
  transform: translateY(-6px);
}

.avaliacao-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
}

.avaliacao-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avaliacao-stars img {
  width: 90px;
  margin-bottom: 10px;
}

.avaliacao-card p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
}

.avaliacao-grafico img {
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 768px) {

  .avaliacoes-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .avaliacoes-container::-webkit-scrollbar {
    display: none;
  }

  .avaliacoes-track {
    display: flex;
    gap: 0;
  }

  .avaliacao-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 20px;
  }

  .avaliacao-card p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}

.avaliacoes {
  padding: 60px 5%;
   min-height: 80vh;
  background: 
              url('img/fundo5celular.png') center/cover no-repeat;
}
}

.contato-section {
  padding: 100px 5%;
 background: linear-gradient(
    to bottom,
    #02386b 0%,
    #02386b 60%,
    #191919 100%
  );
}

.contato-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contato-form {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  flex: 1;
  max-width: 550px;
}

.contato-tag {
  color: #02386b;
  font-size: 14px;
  letter-spacing: 1px;
}

.contato-form h2 {
  font-size: 32px;
  margin: 15px 0;
}

.contato-form p {
  margin-bottom: 30px;
  color: #555;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contato-form textarea {
  height: 120px;
  resize: none;
}

.contato-form button {
  width: 100%;
  padding: 15px;
 background: linear-gradient(
    to bottom,
    #02386b 0%,
    #02386b 60%,
    #191919 100%
  );
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contato-form button:hover {
   background: linear-gradient(
    to bottom,
    #02386b 0%,
    #2084e1 60%,
    #191919 100%
  );
}

.contato-img {
  flex: 1;
  text-align: center;
}

.contato-img img {
  width: 100%;
  max-width: 450px;
}

@media (max-width: 768px) {

  .contato-container {
    flex-direction: column;
  }

  .contato-form {
    order: 1;
  }

  .contato-img {
    order: 2;
    margin-top: 40px;
  }

}

.footer {
  background: url("img/fundo5.png") center center/cover no-repeat;
  color: #fff;
  padding: 60px 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 180px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #000000b7;
}

.footer-col p {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.8;
  color: #000;
}

.footer-logo {
  max-width: 140px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  opacity: 0.7;
  color: #000000b4;
}

.google-badge {
  width: 120px;
  margin-top: 10px;
}

.google-badge:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

.footer-col a {
  display: inline-block;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-col {
    min-width: unset;
  }

  .footer-logo {
    margin-bottom: 10px;
  }
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 40px;
    width: 65px;
    height: 65px;
    background: #25D366; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: pulseMove 2s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.7);
}

.whatsapp-float img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

@keyframes pulseMove {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 25px #25D366;
    opacity: 0.6;
    animation: glow 2s infinite ease-in-out;
}

@keyframes glow {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 25px;
    }
}


/*serviços*/

.fundou {
  position: relative;
  background: radial-gradient(circle at top, #02386b, #191919);
  overflow: hidden;
}

.fundou::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(2,56,107,0.9), rgba(25,25,25,0.9)),
    url('img/fundou.png') center/cover no-repeat;
  z-index: 0;
}

.fundou > * {
  position: relative;
  z-index: 1;
}

.trafego-section {
  padding: 80px 20px;
  text-align: center;
  
}

.trafego-section h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 40px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab {
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid #4478ce;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.tab.active {
  background: #4478ce;
}

.meta-highlight {
  border: 2px solid #1877f2;
  animation: brilho 1.5s infinite alternate;
}

@keyframes brilho {
  from { box-shadow: 0 0 5px #1877f2; }
  to { box-shadow: 0 0 20px #1877f2; }
}

.box-wrapper {
  background: #f4f4f4;
  border-radius: 25px;
  padding: 60px;
  max-width: 1100px;
  margin: auto;
}

.content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.text-content {
  flex: 1;
  text-align: left;
}

.text-content h3 {
  margin-bottom: 15px;
  color: #4478ce;
}

.text-content p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-saiba {
  background: #4478ce;
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn-saiba:hover {
  transform: scale(1.05);
}

.image-content {
  flex: 1;
  text-align: center;
}

.image-content img {
   width: 100%;
  max-width: 350px;
  border-radius: 20px;
  display: block;
}

@media (max-width: 768px) {

  .box-wrapper {
    padding: 30px;
  }

  .content-box {
    flex-direction: column;
  }

  .text-content {
    order: 1;
    text-align: center;
  }

  .image-content {
    order: 2;
    margin-top: 30px;
  }

}