/* Reset básico */ 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to right, #003366, #990000);
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Cabeçalho com redes sociais e contatos */
header {
  background-color: #001f4d;
}

header .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 10px;
}

header .top-bar .social-icons a img {
  height: 24px;
  margin-right: 10px;
}

header .top-bar .contact-info {
  color: #fff;
  font-size: 14px;
  text-align: right;
}

/* Logo */
header img {
  width: 280px;
  display: block;
  margin: 10px auto;
}

/* Menu de navegação */
nav {
  background-color: #f4f7fa;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

nav a {
  margin: 0 15px;
  font-weight: bold;
  transition: 0.3s;
  color: #001f4d;
}

nav a:hover {
  color: #ff3333;
}

/* Conteúdo principal */
main {
  flex: 1;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

main h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
}

main p {
  font-size: 18px;
  color: #f0f0f0;
}

/* Botões e formulários */
button,
input[type="submit"] {
  background-color: #ff0000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover,
input[type="submit"]:hover {
  background-color: #cc0000;
}

form {
  background-color: #ffffff15;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

form input[type="submit"] {
  width: auto;
}

/* Rodapé */
footer {
  width: 100%;
  background-color: #001f4d; /* Azul da marca */
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  nav a {
    margin: 10px 0;
  }

  header .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  header .top-bar .contact-info {
    text-align: left;
    margin-top: 10px;
  }

  header img {
    width: 500px;
  }
}

/* Ícones sociais e logo */
.logo {
  width: 280px;
  display: center;
  margin: 10px auto;
}

.social-icons {
  display: flex;
  align-items: left;
}

.social-icons a {
  margin-right: 10px;
}

.social-icons a img {
  height: 24px;
  width: 24px;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
}

.social-icons a img {
  height: 24px;
  margin-right: 10px;
}

.logo {
  margin-right: 450px;
  height: 60px;
}

.contact-info {
  color: white;
  font-size: 14px;
  text-align: right;
}

.carrossel-parceiros {
  overflow: hidden;
  padding: 30px 0;
  background-color: rgb(255 255 255 / 58%); /* branco com 58% de opacidade */
  display: flex;
  justify-content: center;
  border-radius: 10px;
}

.carrossel-container {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
}

.carrossel {
  display: flex;
  gap: 40px;
  animation: deslizar 60s linear infinite;
  align-items: center;
  width: max-content;
  margin: 0 auto;
}

.carrossel img {
  height: 70px;
  opacity: 0.8;
  transition: transform 0.3s, opacity 0.3s;
}

.carrossel img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes deslizar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, rgba(0, 19, 51, 0.85), rgba(153, 0, 0, 0.85)),
              url('../img/hero-bg.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ff0000;
  color: #fff;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #cc0000;
}


.planos {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff15;
  border-left: 5px solid #faf7f7;
  border-radius: 8px;
  margin-top: 40px;
}

.planos h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
}

.cards-planos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.plano {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #faf7f7;
  padding: 25px;
  border-radius: 10px;
  width: 280px;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.plano.destaque {
  border: 2px solid #ff0000;
  border-left: 5px solid #ff0000;
  background-color: rgba(255, 255, 255, 0.12);
}

.plano:hover {
  transform: translateY(-5px);
}

.plano h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #ffffff;
}

.plano p {
  margin: 8px 0;
  font-size: 16px;
}

.preco {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0;
  color: #f3eded;
}

.btn {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #cc0000;
}

/* Responsivo */
@media (max-width: 768px) {
  .cards-planos {
    flex-direction: column;
    align-items: center;
  }
}

.beneficios {
  padding: 60px 20px;
  background-color: #ffffff10;
  border-left: 5px solid #fff;
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
}

.beneficios h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
}

.lista-beneficios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.beneficio {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  width: 250px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.beneficio img {
  height: 50px;
  margin-bottom: 15px;
}

.beneficio h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.beneficio p {
  font-size: 16px;
  color: #eee;
}

/* Responsivo */
@media (max-width: 768px) {
  .lista-beneficios {
    flex-direction: column;
    align-items: center;
  }
}

.depoimentos {
  padding: 60px 20px;
  background-color: #ffffff08;
  border-left: 5px solid #fff;
  text-align: center;
  margin-top: 40px;
  border-radius: 8px;
}

.depoimentos h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
}

.depoimentos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.depoimento {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  font-style: italic;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.depoimento span {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-style: normal;
  color: #ccc;
}

/* Responsivo */
@media (max-width: 768px) {
  .depoimentos-container {
    flex-direction: column;
    align-items: center;
  }
}

.contato {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 60px 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
}

.contato h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
}

.contato p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ddd;
}

.contato form {
  max-width: 600px;
  margin: 0 auto;
}

.contato input,
.contato textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

.contato input[type="submit"] {
  background-color: #ff0000;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contato input[type="submit"]:hover {
  background-color: #cc0000;
}

.whatsapp-info a {
  color: #00e676;
  font-weight: bold;
}

.faq-question {
  background-color: transparent;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  cursor: pointer;
  border-bottom: 1px solid #444;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 0 15px;
  border-left: 3px solid #ff0000;
}

.faq-answer p {
  margin: 10px 0;
  color: #ddd;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px;
}
.plano {
  background: #ffffff40;
  padding: 20px;
  border: 1px solid #f5f5fa;
  text-align: center;
  border-radius: 8px;
  position: relative;
}

.preco-faixa {
  background-color: #004aad; /* azul SW Rastreamento */
  color: white;
  font-size: 1.4em;
  font-weight: bold;
  padding: 10px;
  margin: 15px 0;
  border-radius: 6px;
}

.plano-card {
  background: #ffffff40;
  padding: 20px;
  border: 1px solid #f5f5fa;
  text-align: center;
  border-radius: 8px;
  position: relative;
 
}

.preco-faixa {
  background-color: #004aad; /* azul SW Rastreamento */
  color: white;
  font-size: 1.4em;
  font-weight: bold;
  padding: 10px;
  margin: 15px 0;
  border-radius: 6px;
}


.planos-beneficios {
  padding: 40px 20px;
  background-color: rgb(255 255 255 / 12%);
  border-top: 2px solid #ffffffba;
  border-bottom: 2px solid #ffffffc9;
  margin: 40px 0;
  text-align: center;
}

.planos-beneficios h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.planos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.plano-card {
  background-color: rgb(255 255 255 / 24%);
  border: 2px solid #ffffff73;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s;
}

.plano-card:hover {
  transform: scale(1.05);
}

.plano-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.plano-card p {
  color: #ddd;
  margin: 5px 0;
}

.plano-card strong {
  display: block;
  font-size: 20px;
  color: #ff0000;
  margin: 15px 0;
}

.plano-card .btn {
  background-color: #ff0000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

.plano-card .btn:hover {
  background-color: #cc0000;
}

.plano-card.destaque {
  border: 2px solid #ff0000;
  box-shadow: 0 0 10px #ff000050;
}

.beneficios-lista {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  color: #eee;
}

.beneficios-lista li {
  margin: 10px 0;
  font-size: 16px;
}

.nossa-tecnologia {
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.02);
  border-top: 2px solid #ffffff10;
  border-bottom: 2px solid #ffffff10;
  text-align: center;
}

.nossa-tecnologia h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
}

.tecnologia-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.tecnologia-item {
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s;
}

.tecnologia-item:hover {
  transform: translateY(-5px);
}

.tecnologia-item img {
  height: 50px;
  margin-bottom: 15px;
}

.tecnologia-item h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.tecnologia-item p {
  font-size: 15px;
  color: #ddd;
}

main ul {
  text-align: left;
  margin: 20px auto;
  max-width: 600px;
  padding-left: 20px;
  color: #f0f0f0;
  font-size: 16px;
  line-height: 1.6;
}

main ul li {
  margin-bottom: 10px;
}

/* Estilo para a página Sobre */
main.sobre {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #faf7f7;
  border-radius: 10px;
  padding: 40px 30px;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

main.sobre section {
  margin-bottom: 40px;
}

main.sobre h1, 
main.sobre h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

main.sobre p {
  font-size: 16px;
  color: #dddddd;
  line-height: 1.6;
}

main.sobre ul {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin: 20px auto;
  max-width: 600px;
}

main.sobre ul li {
  background: url('../img/check.png') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #ffffff;
}

.mensagem-status {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  transition: opacity 0.4s ease-in-out;
}

.mensagem-status.sucesso {
  background-color: #d4edda;
  color: #155724;
}

.mensagem-status.erro {
  background-color: #f8d7da;
  color: #721c24;
}

.mensagem-status {
  margin-top: 20px;
  padding: 15px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  display: none;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.mensagem-status.sucesso {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.mensagem-status.erro {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.hero {
  background-image: url('../img/banner1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 300px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* escurece o fundo para o texto ficar visível */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.btn-cta {
  display: inline-block;
  padding: 12px 25px;
  background-color: #e60000; /* vermelho SW */
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #b80000;
}

/* Geral */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

main.servicos {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

/* Título principal */
.servico h1 {
  font-size: 2.5rem;
  color: #fff; /* Azul escuro institucional */
  text-align: center;
  margin-bottom: 10px;
}

/* Descrição do topo */
.servico p:first-of-type {
  text-align: center;
  font-size: 1.1rem;
  color: #f7f3f3;
  margin-bottom: 50px;
}

/* Seções individuais */
.servico {
  background-color: rgba(255, 255, 255, 0.2);
  border-left: 5px solid #faf7f7; /* Vermelho institucional */
  padding: 25px 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

/* Título dos serviços */
.servico h2 {
  color: #faf8f8;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

/* Lista de assistência */
.servico ul {
  padding-left: 20px;
}

.servico ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #f9f4f4;
}

/* Responsividade */
@media (max-width: 600px) {
  .servico h1 {
    font-size: 2rem;
  }

  .servico h2 {
    font-size: 1.3rem;
  }

  .servico {
    padding: 20px;
  }
}






