.contato {
    width: 100%;
    min-height: 100vh;
    background: #f5efe6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contato h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #5a4633;
}

/* Caixa dos contatos */
.contato-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cada item */
.contato-item {
    display: flex;
    align-items: center;
    gap: 15px;

    background: #d6c3a3;
    padding: 15px 25px;
    border-radius: 10px;

    text-decoration: none;
    color: #3e2f1c;
    font-size: 18px;

    transition: 0.3s;
}

/* Ícones */
.contato-item i {
    font-size: 22px;
}

/* Hover */
.contato-item:hover {
    background: #c2a983;
    transform: scale(1.05);
}







.botao-voltar {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background-color: #b89b7a;
  color: white;
  font-size: 30px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: 0.2s ease;
}

.botao-voltar:hover {
  background-color: #a18463;
  transform: scale(1.05);
}


/* Esconde o link de contato duplicado no desktop */
@media (min-width: 992px) {
    .nav-contato-mobile {
        display: none !important;
    }
}

/* No mobile, deixa a navbar apenas com o botão de menu */
@media (max-width: 991px) {
    .navbar > .container-fluid {
        justify-content: flex-end;
    }

    .navbar-brand {
        display: none !important;
    }
}
/* Esconde o atalho mobile do carrinho no desktop */
.nav-carrinho-mobile {
    display: none;
}

/* Mostra e estiliza o atalho do carrinho apenas no mobile */
@media (max-width: 991px) {
    .nav-carrinho-mobile {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
        color: #5a4633;
        text-decoration: none;
        border: 1px solid rgba(139, 111, 71, 0.45);
        border-radius: 50%;
        background-color: rgba(255, 250, 243, 0.72);
        transition: 0.3s;
    }

    .nav-carrinho-mobile:hover {
        color: white;
        background-color: #8b6f47;
        border-color: #8b6f47;
    }

    .icone-carrinho-mobile {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }
}