* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #f2f2f2;
    text-align: center;
}

.navbar {
    display: flex;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    height: 150px;
}

.navbar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-menu li {
    font-size: 2.6rem;
    color: white;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1.6rem;
    display: block;
}

.navbar-menu li a:hover {
    background-color: #555;
}




/* Estilização da barra de pesquisa */
.search-container {
    display: flex;
    justify-content: center;
    margin-left: 80px;
}

#search-form {
    display: flex;
}

#search-input {
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    width: 300px;
}

button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-left: none;
    background-color: #0088ff;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}


.scroll{
    background-color: #00bbff;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

#scrollToTopBtn:hover {
    background-color: #0008ff;
    color: white;
}


/* Cor padrão do link */
a {
    color: #ffffff; /* Azul */
    text-decoration: none; /* Remove o sublinhado */
}

/* Cor do link quando o cursor está sobre ele */
a:hover {
    color: #b6b6b6; /* Vermelho */
}


.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.marca{
    margin-left: 325px;
}

.container {
    display: flex;
    gap: 120px;
    margin-left: 130px;
    flex-wrap: wrap; /* Permite que os itens sejam quebrados em várias linhas se necessário */
}

.container p{
    font-size: 40px;
    color: red;
    font-weight: bold;
    text-align: center;
    margin-left: 50px;
}

.container h1{
    font-size: 20px;
    color: red;
    font-weight: bold;
    text-align: center;
    margin-left: 40px;
}

.imagem {
    transition: transform 0.3s ease; /* Suaviza o efeito de zoom */
}

.imagem:hover {
    transform: scale(1.2); /* Aplica o efeito de zoom */
}

.image-text {
    margin-top: 10px;
    font-size: 20px;
    color: #333;
}


.navbar1 {
    background-color: #181818;
    padding: 1rem 2rem;
    color: #fff;
    height: 310px;
}

.navbar1 p{
    font-size: 1.6rem;
    text-align: center;
    list-style: none;
    padding: 1rem 2rem;
    word-spacing: 385px;
}

.navbar1 pre{
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    text-align: left;
    list-style: none;
    padding: 1rem 2rem;
    margin-left: 100px;
}



/* Breakpoints */

/* Para telas pequenas (até 480px) */
@media only screen and (max-width: 480px) {
    nav ul {
      flex-direction: column;
    }
    nav li {
      margin-right: 0;
    }
  }
  
  /* Para telas médias (entre 481px e 768px) */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    main {
      flex-direction: row;
    }
  }
  
  /* Para telas grandes (acima de 769px) */
  @media only screen and (min-width: 769px) {
    main {
      flex-direction: row;
      justify-content: space-between;
    }
  }