/* Estilo base */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #d9e4ec;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Estilo do ícone do menu */
.menu-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  cursor: pointer;
}

/* Estilo do cabeçalho */
header {
  background-color: #003366;
  padding: 20px 0;
  position: relative;
}

header h1 {
  color: #fff;
}

.tridente {
    margin-left: 5px;
}

nav {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%; /* Definindo a largura do menu */
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #003366;
  border-radius: 0px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

nav ul.active {
  display: block;
  opacity: 1;
  width: 100%; /* Definindo a largura do menu */
}

nav ul li {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #fff; /* Cor corrigida para branco */
  transition: background-color 0.3s ease, transform 0.3s ease;
}


/* Estilo das seções */
section {
  padding: 50px 0;
  background-color: rgba(0, 0, 0, 0.05); /* Cor de fundo mais escura */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.hover:hover {
  transform: translateY(-5px);
}

/* Estilo do destaque */
.destaque {
  background-color: #f9f9f9;
}

.destaque h2 {
  color: #003366;
  margin-bottom: 20px;
  font-size: 2em;
}

.produtos {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
}

.produto {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #eaeaea;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.produto:hover {
  transform: translateY(-5px);
}

.produto img {
  width: 200px;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.produto img:hover {
  transform: scale(1.1);
}

.detalhes {
  text-align: center;
}

.preco {
  font-size: 1.5em;
  color: #cc0000;
  margin-bottom: 15px;
}

button {
  background-color: #cc0000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #990000;
}

/* Estilo dos textos */
h2 {
  color: #003366;
  margin-bottom: 20px;
  font-size: 2em;
}

p {
  text-align: center;
  line-height: 1.5;
}

/* Estilo dos formulários */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  font-size: 1.2em;
  margin-bottom: 10px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #cc0000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #990000;
}

/* Estilo dos depoimentos */
.depoimentos {
  background-color: rgba(0, 0, 0, 0.05); /* Cor de fundo igual às outras seções */
  padding: 50px 0;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.depoimentos h2 {
  color: #003366;
  margin-bottom: 20px;
  font-size: 2em;
  text-align: center;
}

.testimonial {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: bold;
  text-align: right;
  color: #cc0000;
}

.testimonial-author::before {
  content: "- ";
}

.testimonial-author::after {
  content: ", Cliente Satisfeito";
}

/* Estilo do rodapé */
footer {
  background-color: #003366;
  color: #fff;
  padding: 20px 0;
  margin-top: auto;
}

footer p {
  text-align: center;
  margin: 0;
}

footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #cc0000;
}

a {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #fff; /* Cor corrigida para branco */
  transition: background-color 0.3s ease, transform 0.3s ease;    
}