html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #007bc1;
  --secondary-color: #f1f1f1;
  --dark-color: #111;
  --bg-url: url(./img/bgright1.png);
  --bg-mobile: linear-gradient(to right, #002d55, #005fa3);
}


body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg-url) top center/cover;
  min-height: 100vh;
  transition: background 0.5s ease-in-out; /* Transição suave ao redimensionar */
}

@media (max-width: 768px) {
  body {
    /* Substitui imagem por um degradê para mobile */
    background: var(--bg-mobile)
  }
}

.navbar {
  background-color: var(--primary-color);
}

.navbar-brand img {
  max-height: 50px;
}

.nav-link {
  color: white !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #dddddd !important;
  background-color:rgba(255, 255, 255, 0.2);
  
}

.navbar-toggler {
  border-color: #ffffff;
  transition: background-color 0.3s, transform 0.3s;
  margin: 10px;
}

.navbar-toggler:hover {
  background-color: rgba(255, 255, 255, 0.2); /* fundo branco translúcido */
  transform: scale(1.05); /* leve aumento */
  border-radius: 50% rgba(255, 255, 255, 0.2);
}


.slogan {
  font-size: 1rem;
  color: white;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 576px) {
  .slogan {
    font-size: 0.85rem;
    text-align: left;
  }
}

/* IMAGEM STATUSLOGO CENTRALIZADA E RESPONSIVA */
.imagem-centralizada {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff; /* cor do fundo */
  padding: 1rem;
}

.imagem-centralizada img {
  max-width: 100%;
  height: auto;
  object-fit: contain; /* Faz a imagem se ajustar sem cortar */
  display: block;
}

/* IMAGEM ENTREGA COMO FULLSCREEN */
.imagem-fullscreen {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagem-fullscreen img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.bem-vindo-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

#motivo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  color: white;
  margin-top: 80px;
}

#motivo #paragrafo-itens {
  list-style: none;
  padding: 0;
}

#paragrafo-itens li {
  margin-bottom: 8px;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
}

#bem-vindo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  padding: 24px;
  text-align: center;
}

#bem-vindo h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

#bem-vindo p {
  font-size: 2rem;
  font-family: 'Raleway', sans-serif;
  width: 90%;
}

#bem-vindo #paragrafo-destaque {
  font-size: 1.2rem;
  font-family: 'Raleway', sans-serif;
  color: var(--secondary-color); /* ou qualquer cor que preferir */
  text-align: center;
  line-height: 1.6;
  font-weight: 400;
  padding: 0;
  margin: 0 auto;
  width: 80%;
  max-width: 700px;
}

#sobre {
  background-color: white;
  color:#005fa3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 60px 60px;
  backdrop-filter: blur(4px);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.sobre-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

#about {
  color: #005fa3;;
  border: 2px solid #005fa3;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  text-align: justify;
}

.imagem-sobre img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

#about h2 {
  font-size: 2rem;
  font-family: 'Raleway', sans-serif;
  text-align: center;
}

#about p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Raleway', sans-serif;
  text-align: justify;
}

/* Ajuste extra se quiser centralizar a imagem só no mobile */
@media (max-width: 768px) {
  .imagem-sobre {
    margin-top: 1.5rem;
  }
}

/* Mobile Responsivo */
@media (max-width: 768px) {
  #about {
    padding: 20px;
  }

  #about h2 {
    font-size: 1.6rem;
  }

  #about p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .imagem-sobre {
    margin-top: 1.5rem;
    text-align: center;
  }
}




.valores-mvs {
  background: linear-gradient(to right, #002d55, #005fa3); /* Azul MVS */
  color: white;
  padding: 30px 0;
}

.container-valores {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}

.valor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.valor-item:hover {
  transform: translateY(-5px);
}

.valor-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.valor-texto {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
}

/* Responsividade */
@media (max-width: 768px) {
  .container-valores {
    flex-direction: column;
    gap: 30px;
  }

  .valor-icon {
    font-size: 2rem;
  }

  .valor-texto {
    font-size: 1.1rem;
    font-family: 'Raleway', sans-serif;
  }
}

/* seção de contato do formulário*/
#contato-form .container {
  background-color: rgba(255, 255, 255, 0.02);
  background: #3d3c3c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 3px solid #0d6efd;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}  

.form-section {
    background: linear-gradient(135deg, #003d73, #006bb3);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.form-title {
  color: var(--secondary-color);
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 15px;
}

.form-description {
  max-width: 600px;
  text-align: center;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  font-family: 'Raleway', sans-serif;
  color: #e0e0e0;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.form-label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border: 2px solid #00aaff;
  box-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
  background-color: #fdfdfd;
}

.form-button {
  background-color: var(--secondary-color);
  color: #000;
  border: none;
  margin-top: 16px;
  padding: 12px 30px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-button:hover {
  background-color: var(--primary-color);
  color: #f1f1f1;
}

.contato-section {
  background-color: #111;
  color: #fff;
  padding: 50px 0;
  border-top: 3px solid #0d6efd;
}

.contato-section h5 {
  color: #0dcaf0;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}

.contato-section p i {
  color: #0dcaf0;
}

.contato-section a {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  text-decoration: none;
}

.contato-section a:hover {
  color: #0dcaf0;
  text-decoration: underline;
}

/* Footer */
.footer-section {
  margin-top: 0px;
  background-color: #0d0d0d;
  color: #ccc;
  padding: 30px 0;
  border-top: 3px solid #0d6efd;
  animation: fadeInUp 1s ease forwards;
}

.footer-section p {
  margin-bottom: 10px;
}

.footer-section a {
  color: #0dcaf0;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section .social-links {
  margin-top: 10px;
}

.footer-section .social-links a {
  font-size: 20px;
  margin: 0 10px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section .social-links a:hover {
  color: #0dcaf0;
  transform: scale(1.2);
}

.btn-whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  text-decoration: none;
  animation: whatsapp-pulse-unique 1.5s infinite ease-in-out;
}
.btn-whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}









@keyframes whatsapp-pulse-unique {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
  }
}

/* ==================== Animações ==================== */
@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.atende-mvs {
  background: linear-gradient(to right, #002d55, #005fa3); /* Azul MVS */
  color: white;
  padding: 30px 0;
}

.container-atender-clientes {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  text-align: center;
}

.atender-item {
  display: flex;
  padding: 2px 0;
  width: 0 -5px;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.atender-item:hover {
  transform: translateY(-5px);
}

.atender-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.atender-texto {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
}

/* Contêiner do Carrossel CLIENTES*/
.carrossel-container {
  border-top: 3px solid #0d6efd;
  position: relative;
  width: 100%; /* Largura do carrossel */
  /*max-width: 100%;*/
  overflow: hidden; /* Esconde as imagens fora da área visível */
  padding: 20px 0;
}

/* Carrossel */
.carrossel {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  gap: 30px;
  align-items: center;
}
/* Estilo das imagens */
.carrossel img {
  width: 300px; /* Faz as imagens ocuparem toda a largura */
  height: 200px;
  object-fit: contain; /* Ajuste automático das imagens */
  flex-shrink: 0; /* Impede que as imagens encolham */
  background-color: #f8f3f3e8;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* Botões de navegação */
button.btn-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

button.btn-nav:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

/* Responsividade - CLIENTES */
@media (max-width: 768px) {
  .carrossel-container {
    width: 95%;
  }
  .carrossel img {
    height: 250px; /* Ajusta a altura das imagens em telas menores */
  }
}


/* Responsividade - PRODUTOS*/
@media (max-width: 768px) {
  .carrossel-produtos-container {
    width: 95%;
  }
  .carrossel-produtos img {
    height: 250px; /* Ajusta a altura das imagens em telas menores */
  }
}

/* Animação de rolagem contínua */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*==================PAGINA PRODUTOS=========*/

/*CARROSSEL PRODUTOS*/
.carrossel-produtos-container {
  background: linear-gradient(to right, #002d55, #005fa3);
  border-bottom: 3px solid #0d6efd;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
}

.carrossel-produtos {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 20px;
  animation: scroll 8s linear infinite;
}

.carrossel-produtos img {
  width: 220px;
  height: 180px;
  object-fit: contain;
  background-color: #fff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.produto-icon {
  margin-top: 80px;
}

/* Keyframes para mover o container */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.btn-chamada {
    display: inline-block;
    background-color: #25D366;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    max-width: 500px; 
    margin: 20px auto;
    display: block;
}

.btn-chamada:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.produtos-mvs {
  text-align: center;
  background: linear-gradient(to right, #002d55, #005fa3); /* Azul MVS */
  color: white;
  padding: 30px 0;
}

.container-produtos {
  display:grid;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}

.produto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.produto-item:hover {
  transform: translateY(-5px);
}

.produto-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.produto-texto {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Responsividade */
@media (max-width: 768px) {
  .container-produtoes {
    flex-direction: column;
    gap: 30px;
  }


}
@media (max-width: 600px) {
    .produto {
        width: 150px;
    }
  }