
* {
  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: 65px;
}


.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #ffffff;
  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 {
  height: 80vh;
  background: url("img/capa3.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero h1 {
  font-size: 35px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 600px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-hero {
  padding: 12px 22px;
   background: radial-gradient(circle at top, #02386b, #191919);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  display: inline-block;
}

.btn-hero:hover {
  background: radial-gradient(circle at top, #085ba9, #191919);
}


@media (max-width: 900px) {

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    padding: 20px 0;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav a {
    color: #333;
    font-size: 18px;
  }

  .nav.active {
    display: block;
  }

  .hamburger {
    display: flex;
  }


  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero {
  height: 100vh;
  background: url("img/capa3celular.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  position: relative;
}
}


/*sobre*/


.sobre {
  padding: 100px 0;
  height: 100vh;
  background: url("img/fundo1.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  position: relative;
}

.sobre-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.sobre-img {
  flex: 1;
}

.sobre-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  display: block;
}


.sobre-content {
  flex: 1;
}

.subtitulo {
  color: #012e6a;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sobre-content h2 {
  font-size: 36px;
  margin: 15px 0 20px 0;
  color: #012e6a;
}

.sobre-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #444;
}

.btn-sobre {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #012e6a;
  color: #012e6a;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-sobre:hover {
   background: radial-gradient(circle at top, #02386b, #191919);
  color: #fff;
}

@media (max-width: 900px) {

    .sobre {
  padding: 100px 0;
   height: 190vh;
  background: url("img/fundocelular.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  position: relative;
}


  .sobre-container {
    flex-direction: column;
  }

  .sobre-content {
    order: 1;
  }

  .sobre-img {
    order: 2;
  }

  .sobre-content h2 {
    font-size: 26px;
  }

}


@media (max-width: 1366px) and (min-width: 1024px) {
      .sobre {
  padding: 100px 0;
   height: 150vh;
  background: url("img/fundocelular.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  position: relative;
}
}

.servicos {
  background: radial-gradient(circle at top, #02386b, #191919);
  color: #fff;
  padding: 120px 0;
}


.servicos-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.titulo-servicos {
  font-size: 42px;
  margin-bottom: 80px;
  letter-spacing: 2px;
}

.servico {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;

  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.servico.reverse {
  flex-direction: row-reverse;
}


.servico-img {
  flex: 1;
}

.servico-img img {
  width: 100%;
  display: block;
  border-radius: 10px;
}


.servico-texto {
  flex: 1;
}

.servico-texto h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.servico-texto p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #ccc;
}


.servico.active {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 900px) {

  .servico {
    flex-direction: column;
    text-align: left;
    gap: 30px;
  }

  .servico.reverse {
    flex-direction: column;
  }

  .servico-texto {
    order: 1;
  }

  .servico-img {
    order: 2;
  }

  .titulo-servicos {
    font-size: 30px;
  }

}


.planejamento {
  background: url("img/fundo1.png") center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.planejamento::before {
  content: "";
  position: absolute;
  inset: 0;
 
  z-index: 0;
}

.planejamento-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.planejamento h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #0c3e83;
}

.planejamento h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0c3e83;
  margin-bottom: 60px;
}

.planejamento-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.planejamento-card {
   background: radial-gradient(circle at top, #02386b, #191919);
  color: #fff; 
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  width: 260px;
  text-align: center;
  opacity: 0;
 
 
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.planejamento-card.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.planejamento-card:hover {
 
  box-shadow: 0 6px 20px rgba(19, 102, 203, 0.752);
}

.planejamento-card img {
  width: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}
.planejamento-card h4 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.planejamento-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ffffff9c;
}

.btn-planejamento {
  margin-top: 50px;
}

.botao {
  background-color: #e0ac4e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.botao:hover {
  background-color: #e0ad4e69;
}

@media (max-width: 900px) {
  .planejamento-container {
    flex-direction: column;
    align-items: center;
  }

  .planejamento h2 {
    font-size: 1.8rem;
  }

  .planejamento-card {
    width: 85%;
    margin-bottom: 20px;
  }

  .planejamento-card p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
}

.planejamento-card img {
  width: 60px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1); 
}

.planejamento {
  background: url("img/fundocelular.png") center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}
}

* {
  box-sizing: border-box;
}

.brands-section {
  padding: 80px 20px;
 background: radial-gradient(circle at top, #02386b, #191919);
  text-align: center;
}


.brands-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}


.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  transition: transform 0.6s ease;
}


.brand-card {
  background: #ffffff;
  border-radius: 18px;
  height: 160px;
  padding: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.6s ease;
}

.brand-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 20px rgba(255, 254, 250, 0.6),
    0 0 40px rgba(255, 255, 254, 0.4);
}


.brand-card img {
  max-width: 120px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.brand-card:hover img {
  transform: scale(1.08);
}

.reveal.active .brands-title {
  opacity: 1;
  transform: translateY(0);
}

.reveal.active .brand-card {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {

  .brands-title {
    font-size: 2.1rem;
  }

  .brands-section {
    overflow: hidden;
  }

  .brands-grid {
    display: flex;
    transition: transform 0.5s ease;
  }

  .brand-card {
    flex: 0 0 100%;
    height: 140px;

   
    padding: 20px 30px;
  }

}



.gallery-section {
  width: 100%;
  padding: 80px 5%;
   background: url("img/fundo1.png") center/cover no-repeat;
}

.gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.gallery-item {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4; 
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.gallery-header {
  margin-bottom: 50px;
}

.gallery-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

.gallery-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.gallery-line {
  width: 60px;
  height: 4px;
  background: #1e3a8a; 
  margin-top: 15px;
}


@media (max-width: 768px) {

  .gallery-track {
    gap: 0;
  }

  .gallery-item {
    min-width: 100%;
    flex: none;
  }

  .gallery-arrow {
    display: block;
  }

   .gallery-title {
    font-size: 30px;
  }

  .gallery-header {
    margin-bottom: 30px;
  }

}

@media (min-width: 769px) {

  .gallery-item {
    position: relative;
    cursor: pointer;
  }

  .gallery-item img {
    transition: transform 0.5s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  .gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.4) 50%,
      rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
  }

  .gallery-item:hover::after {
    animation: shine 0.8s forwards;
  }

  @keyframes shine {
    100% {
      left: 125%;
    }
  }

}


/*form*/

.contato {
  padding: 60px 20px;
  background: radial-gradient(circle at top, #02386b, #191919);

}

.container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.form-box {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tag {
  color: #2f76a3;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.form-box h2 {
  margin: 10px 0;
  font-size: 32px;
}

.subtitulo {
  color: #666;
  margin-bottom: 25px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  outline: none;
  border-color: #323476;
}

.form-box button {
  width: 100%;
  padding: 14px;
    background: radial-gradient(circle at top, #02386b, #191919);
 
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background: #000;
}

.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  border-radius: 18px;
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .container {
    flex-direction: column;
  }

  .form-box {
    padding: 25px;
  }

  .form-box h2 {
    font-size: 26px;
  }

  .subtitulo {
    font-size: 14px;
    line-height: 1.4;
  }

  .form-box input,
  .form-box select,
  .form-box textarea {
    font-size: 14px;
    padding: 12px;
  }

  
  .form-box select,
  .form-box option {
    white-space: normal;
  }

 
  input,
  select,
  textarea {
    font-size: 16px;
  }

}

/*footer*/
.footer {
  background: radial-gradient(circle at top, #02386b, #191919);
  color: #ccc;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
    background: radial-gradient(circle at top, #02386b, #191919);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.footer-btn:hover {
  background-color: #0c3e83;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #777;
}

.footer a,
.footer ul li,
.footer p {
  transition: color 0.3s ease;
}

.footer a:hover,
.footer ul li:hover,
.footer p:hover {
  color: #fff;
  cursor: pointer;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.btn-topo {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 52px;
  height: 52px;

  background: #0c3e8373; 
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

.btn-topo.show {
  opacity: 1;
  pointer-events: auto;
}

.btn-topo img {
  width: 22px;
  height: 22px;
}

.btn-whatsapp {
  position: fixed;
  left: 24px;
  bottom: 24px;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: #25D366;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  z-index: 99999;
  cursor: pointer;
}

.btn-whatsapp img {
  width: 28px;
  height: 28px;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.btn-whatsapp:hover {
  transform: scale(1.05);
}