* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

.campo-pesquisa {
    border-radius: 20%;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

h1, h2, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    margin-bottom: 15px;
}

h3 {
    color: white;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.div1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cabecalho {
    background-color: #1D2440;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.navegacao-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 100px;
}

.links-navegacao ul {
    display: flex;
    gap: 30px;
}

.links-navegacao a {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
}

.icones-navegacao {
    display: flex;
    gap: 20px;
}

.icones-navegacao a {
    font-size: 1.2em;
    color: var(--text-color);
}


body {
  background-color: #f5f5f5;
}

.cabecalho-carrinho {
  text-align: center;
  padding: 20px;
  background-color: #1d2440;
  color: #fff;
}

.secao-carrinho {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.tabela-carrinho {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.tabela-carrinho th,
.tabela-carrinho td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.tabela-carrinho th {
  background-color: #f0f0f0;
  font-weight: 600;
  color: #1d2440;
}

.resumo-carrinho {
  margin-top: 25px;
  text-align: right;
}

.valor-total {
  font-size: 18px;
  margin-bottom: 15px;
}

.botao-finalizar {
  background-color: #1d2440;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.botao-finalizar:hover {
  background-color: #3b4971;
}

@media(max-width: 600px){
  .tabela-carrinho th,
  .tabela-carrinho td {
    font-size: 14px;
    padding: 10px;
  }

  .valor-total {
    font-size: 16px;
  }
}

.rodape {
    background-color: #1D2440;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.conteudo-rodape {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.links-rodape ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.links-rodape a {
    color: white;
    transition: color 0.3s ease;
}

.links-rodape a:hover {
    color: var(--secondary-color);
}

.icones-sociais a {
    font-size: 1.5em;
    color: white;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.icones-sociais a:hover {
    color: var(--secondary-color);
}

.botao {
    display: inline-block;
    background-color: #1D2440;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.botao:hover {
    background-color: var(--secondary-color);
}