body {
  font-family: 'Montserrat', sans-serif;
  background: url('../imagens/cafe-plano-de-fundo.jpg') no-repeat center;
  background-size: cover;
  color: #FFFFFF;
}

.logo img {
  width: 80px;
  height: auto;
}

header {
  background-color: #8B0000;
  padding: 10px 20px;
  /* color: #fff; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
}

nav a:hover {
  color: #800000;
  transition: 0.5s ease;
}

.hero {
  opacity: 0;
  transition: opacity 0.3s ease;
  background-size: cover;
  padding: 4em;
  color: #800000;
  text-transform: uppercase;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero:hover {
  transition: 1s ease;
  opacity: 1;
}

.btn {
  background-color: #800000;
 color: white; 
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 5px;
}

footer {
  background-color: #800000;
  /* color: white; */
  text-align: center;
  padding: 1em;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

/* ESTILOS DOS PRODUTOS */

.cafes img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.produtos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url(../imagens/cafe-plano-de-fundo.jpg) no-repeat center;
    background-size: cover;
}

.cafes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
}

.cafe {
    display: flex;
    flex-direction: column;
    background: #8B0000;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cafe:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.comprar {
  background-color: #8B0000;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}
.comprar:hover {
  background-color: #A52A2A;
}

/* ESTILOS DO SOBRE */

.sobre {
    height: 100vh;
    color: #800000;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: cover;
    padding: 4em;
    text-transform: uppercase;
}

.sobre:hover {
  transition: 1s ease;
  opacity: 1;
}

.paragrafo-sobre {
    font-size: 18px;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 800px;
    color: #FFFFFF; 
    background-color: #800000;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ESTILOS DOS CONTATOS */

.titulo-contato {
 font-weight: 700;
font-size: 30px;
margin: 0;
background-color: #8B0000;
padding: 5px;
border-radius:  5px;
}

.container-contato {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  /* margin: auto; */
  text-align: center;
}

.social a {
  text-decoration: none;
  color: inherit;
}

.contato h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

form input,
form textarea {
  width: 400px;
  padding: 12px;
  margin: 10px 0;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: rgba(139, 0, 0, 0.85);
  color: #FFFFFF;
}

form textarea {
  resize: none;
  height: 120px;
}

form button {
  background: #f5f5dc;
  color: #8B0000;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
}

form button:hover {
  background: #8B0000;
  color: white;
  transition: ease-in-out 0.5s; 
}

.social {
  font-size: 30px;
  margin: 0 10px;
  transition: transform 0.3s, color 0.3s;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.social a i{
   background-color: #FFFFFF;
  color: #8B0000;
  padding: 5px;
  border-radius: 50px;
}

.social a i:hover {
    transition: ease-in-out 0.5s; 
   background: #8B0000;
  color: white;
  transform: scale(1.2);
}

input::placeholder,
textarea::placeholder {
  color: white;
}
