* { box-sizing:border-box; }

body {
  margin:0;
 font-family: 'Poppins', sans-serif;

 h1, h2, h3 {
  font-weight: 700;
}

p {
  font-weight: 400;
}
}


html, body {
margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.container,
section,
.row,
.hero,
.banner {
  width: 100%;
  max-width: 1200px; /* limita no PC */
  margin: 0 auto;
  padding: 0 0px;
}

.hero {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* MOBILE */
@media (max-width: 768px) {
  
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
     }

 
  .container,
  section,
  .row,
  .hero,
  .banner {
    max-width: 100%;
    padding: 0 0px;
  }
}


* {
  box-sizing: border-box;
}

/* Corrigir slider no mobile */
@media (max-width: 768px) {

  .swiper,
  .swiper-container,
  .slick-slider,
  .carousel,
  .slider,
  .elementor-swiper,
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .swiper-wrapper,
  .slick-track,
  .owl-stage {
    width: 100% !important;
  }

  .swiper-slide,
  .slick-slide,
  .owl-item {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0;
  }

  img {
    max-width: 100%;
    height: auto;
    padding: 0%;
  }

}

/* Bloqueio de rolagem horizontal */

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* CONTAINER PADRÃO */
.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* HEADER MODERNO */
#header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 15px 20px;
  transition: 0.3s;
}

/* QUANDO SCROLL */
#header.ativo {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
}


/* LOGO */
.logo img {
  height: 65px;
}

/* MENU */
nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

/* LINHA ANIMADA */
nav a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #25d366;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* HERO */
/* FUNDO */
.hero {
  position: relative;
  height: 95vh;
  background: url('imagem/tela1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* Overlay com degrade */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 35%,
    rgba(0,0,0,0.4) 65%,
    rgba(0,0,0,0.1) 100%
  );
}

/* Container */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 40px;
}

/* Badge */
.badge {
  display: inline-block;
  background: rgba(9, 61, 206, 0.295);
  color: #ffffff;
  padding: 8px 8px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 70px;
  margin-top: 10px;
  margin-right: 10px;
}

/* Título */
.hero-left h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeUp 1s ease forwards;
}

.hero-left h1 span {
  color: #b60d07;
  font-size: 35px;
}

/* Texto */
.hero-left p {
  font-size: 20px;
  max-width: 520px;
  line-height: 1.5;
  animation: fadeUp 1.3s ease forwards;
}

.hero-left p span {
  display: block;
  margin-top: 10px;
  color: #e27114;
  font-weight: bold;
}

/* Botões */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  animation: fadeUp 1.6s ease forwards;
}

/* Botão secundário */
.btn-secondary {
  padding: 14px 25px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* Animação */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* SERVIÇOS */
.servicos { padding:80px 20px; text-align:center; }

.grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.cardd {
  background:#ffffff;
  padding:20px;
  border-radius:10px;
  transition:0.3s;
}

.cardd:hover {
  transform:translateY(-10px);
}

.cardd img {
  width:100%;
  border-radius:10px;
}

.bold {
    background: linear-gradient(45deg, #6a6e70, #b92613);
  padding: 4px 18px;
  color: rgb(247, 247, 247);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* VIDEO */
.video {
  padding: 80px 20px;
  background: linear-gradient(135deg, #020617, #1e3a8a);
  text-align: center;
  color: #fff;
}

.video h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.video .subtitulo {
  color: #cbd5f5;
  margin-bottom: 40px;
  font-size: 14px;
}

/* CONTAINER */
.video-container {
  max-width: 800px;
  margin: auto;
}

/* VÍDEO */
.video {
  padding: 80px 20px;
  background: linear-gradient(135deg, #020617, #8b1d1d);
  text-align: center;
  color: #fff;
  max-width: 100%;
}

/* CONTAINER */
.video-container {
  display: flex;
  justify-content: center;
}

/* VÍDEO VERTICAL */
.video-container video {
  width: 100%;
  max-width: 320px; /* 🔥 controla tamanho */
  height: 570px;    /* 🔥 proporção reels */
  object-fit: cover;

  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* TABLET */
@media (max-width: 900px) {
  .video-container video {
    max-width:100%;
    height: 500px;
  }
}

/* CELULAR */
@media (max-width: 600px) {
  .video-container video {
    max-width:100%;
    height: 390px;
  }
}

/* LOGOS */
.slider { overflow:hidden; }

.slide-track {
  display:flex;
  width:max-content;
  animation:scroll 20s linear infinite;
}

.slide-track img {
  width:120px;
  margin:0 20px;
}

@keyframes scroll {
  to { transform:translateX(-50%); }
}

/* CONTATO */
.contato-pro {
  background: linear-gradient(135deg, #020617, #83302d);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

/* BOX PRINCIPAL */
.contato-box {
   background: linear-gradient(135deg, #020617, #8b1d1d);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px;
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  border: 1px solid rgba(173, 76, 63, 0.363);
}

/* ESQUERDA */
.contato-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff6f6;
}

.contato-info p {
  color: #ffffff;
  max-width: 450px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* DETALHES */
.contato-detalhes div {
  margin-bottom: 15px;
}

.contato-detalhes strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
}

.contato-detalhes span {
  font-size: 18px;
  color: #fff;
}

/* DIREITA */
.contato-acoes {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

/* BOTÃO WHATSAPP GRANDE */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 9px 25px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  text-align: center;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(37,211,102,0.5);
}

/* BOTÕES SECUNDÁRIOS */
.btn-outline {
  border: 1px solid #fff;
  padding: 14px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .contato-box {
    flex-direction: column;
    text-align: center;
  }

  .contato-info p {
    margin: auto;
  }
}
/* FOOTER BASE */
.footer {
  background: #161616;
  color: #ffffff;
  padding: 60px 20px 20px;
  font-size: 14px;
}

/* CONTAINER */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* MARCA */
.footer-brand h3 {
  color: #ffffff;
  font-size: 20px;
}

.footer-brand span {
  color: #0541b1;
}

.footer-brand p {
  margin-top: 8px;
  color: #ffffff;
  font-size: 13px;
}

/* LINKS */
.footer-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #a71704;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #cbd5e1;
  transition: 0.3s;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  background: #ff9900;
  color: #fff;
}

/* LINHA FINAL */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 13px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* RESPONSIVO */
@media(max-width:768px){

  nav { display:none; }

  nav.active {
    display:flex;
    flex-direction:column;
    position:absolute;
    top:60px;
    right:0;
    background:#111;
    width:200px;
  }

  .menu-toggle { display:block; }

  .grid {
    grid-template-columns:1fr;
  }

  .video-box iframe {
    height:200px;
  }

}

/* SECTION */
.clientes {
  padding: 80px 20px;
  background: #f1f5f9;
  text-align: center;
}

/* TEXTOS */
.subtitulo {
  color: #64748b;
  font-size: 14px;
}

.clientes h2 {
  margin: 10px 0 40px;
  font-size: 26px;
  color: #1e293b;
}

/* SLIDER */
.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* TRACK */
.slide-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

/* LOGOS */
.slide-track img {
  height: 80px;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s;
}

/* HOVER */
.slide-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ANIMAÇÃO */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 🔥 TABLET */
@media (max-width: 900px) {
  .slide-track {
    gap: 40px;
    animation: scroll 20s linear infinite;
  }

  .slide-track img {
    height: 38px;
  }

  .clientes h2 {
    font-size: 22px;
  }
}

/* 🔥 CELULAR */
@media (max-width: 100%) {
  .clientes {
    padding: 60px 15px;
  }

  .slide-track {
    gap: 25px;
    animation: scroll 20s linear infinite;
  }

  .slide-track img {
    height: 80px;
  }

  .clientes h2 {
    font-size: 20px;
  }

  .subtitulo {
    font-size: 12px;
  }
}
/* BLOCO PORQUE */
.porque {
  padding: 80px 20px;
  background: #f5f7fa;
}

/* CONTAINER */
.porque-container {
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXTO */
.porque-texto {
  flex: 1;
}

.porque-texto h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.porque-texto p {
  margin-bottom: 15px;
  color: #000000;
}

.porque-texto ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.porque-texto li {
  margin-bottom: 8px;
  font-weight: 500;
}

/* IMAGEM */
.porque-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.porque-img img {
  width: 100%;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* RESPONSIVO */
@media(max-width:400px){

  .porque-container {
    flex-direction: column;
    text-align: center;
  }

  .porque-img img {
    max-width: 100%;
  }

}

.btn-pulse {
  display: inline-block;
  padding: 14px 28px;

  background-image: url("imagem/whatsapp.png"); /* 👈 aqui */
  background-size: cover;       /* cobre todo botão */
  background-position: center;  /* centraliza */
  background-repeat: no-repeat; /* evita repetir */

  color: #fff;
  font-weight: bold;
  text-decoration: none;

  border-radius: 6px;
  position: relative;
  z-index: 1;
  margin-left: 20px;
  
}

/* Animação de pulsar */
.btn-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: #25d366;
  z-index: -1;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.botaoinicial {
  padding: 14px 25px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.sobre {
  padding: 100px 20px;
  background: #f8fafc;
}

.sobre-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

/* TEXTO */
.sobre-texto {
  flex: 1;
}

.sobre-texto h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #020617;
}

.sobre-texto p {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
}

.sobre-texto span {
  display: block;
  margin-top: 10px;
  color: #ff9900;
  font-weight: bold;
}

/* DIFERENCIAIS */
.sobre-diferenciais {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ff9900;
  transition: 0.3s;
}

.item:hover {
  transform: translateX(5px);
}

.item strong {
  display: block;
  margin-bottom: 5px;
  color: #020617;
}

.item p {
  color: #64748b;
  font-size: 14px;
}




.azul{
 
  color: #0541b1;
   font-size: 20px;
}

.i {
 
  color: #c75a00;
   
}

/* SECTION */
.quem-somos {
  padding: 100px 20px;
  background: #ffffff;
}

/* CONTAINER */
.quem-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* TEXTO */
.quem-texto {
  flex: 1;
  min-width: 280px;
}

.quem-texto h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #020617;
}

.quem-texto p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 16px;
}

/* DIFERENCIAIS */
.quem-diferenciais {
  margin-top: 20px;
}

.quem-diferenciais div {
  margin-bottom: 8px;
  color: #020617;
  font-weight: 500;
}

/* IMAGEM */
.quem-imagem {
  flex: 1;
  min-width: 100%;
}

.quem-imagem img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* 🔥 RESPONSIVO TABLET */
@media (max-width: 900px) {
  .quem-container {
    flex-direction: column;
    text-align: center;
  }

  .quem-texto h2 {
    font-size: 30px;
  }

  .quem-texto p {
    font-size: 15px;
  }

  .quem-diferenciais div {
    text-align: left;
    display: inline-block;
  }
}

/* 🔥 RESPONSIVO CELULAR */
@media (max-width: 100%) {
  .quem-somos {
    padding: 70px 15px;
  }

  .quem-texto h2 {
    font-size: 26px;
  }

  .quem-texto p {
    font-size: 14px;
  }

  .quem-imagem img {
    border-radius: 10px;
  }
}
.strong {
  color: #f07510;
  
}



