:root {
  font-size: 10px;
  --main-color: #d3ad7f;
  --black: #131313;
  --bg: #f3d6cb;
  --border: 0.1rem solid rgb(255, 255, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 2;
  border-bottom: var(--border);
  width: 100vw;
  padding: 10px;
  background-color: #fff8f0;
}

header img {
  height: 8rem;
}
header nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:10px;
}
header nav a {
  margin: 0 1rem;
  font-size: 1.8rem;
  color: var(--main-color);
  transition: 0.4s linear;
}

header nav a:hover {
  border-bottom: 0.1rem solid var(--main-color);
  padding-bottom: 0.5rem;
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content:center;  
  align-items: flex-start;  
  background: url("./img/Background hero.webp");
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  padding-left: 0 5%;  
  text-align: left; 
  margin-top: 80px;  
}

.hero .container h1 {
  font-size: 5rem;
  color: white;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: left;  
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-weight: bold;
}

.hero .container p {
  font-size: 2rem;
  color: white;
  max-width: 600px;  
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  text-align: left;  
}

.title {
  font-size: 4rem;
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
}

.about h2{
  font-size: 4rem;
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  margin-top: 40px;
}

.about .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about .row .text,
.about .row .image {
  width: 50%;
  box-sizing: border-box;
}

.about .row .text {
  font-size: 1.6rem;
  color: var(--black);
  text-align: justify; 
  line-height: 1.6;
}

.about .image img {
  width: 70%;
  height: auto;
  border-radius: 8px; 
  transform: rotate(10deg); 
  transition: transform 0.3s ease; 
}

.menu-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff8f0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.menu-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: scale(1.03);
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-info {
  padding: 15px;
}

.menu-info h3 {
  margin-bottom: 10px;
  color: #4b2e1e;
  font-size: 1.2rem;
}

.menu-info p {
  font-size: 0.95rem;
  color: #6c4e37;
}

.contact-section {
  font-family: 'Arial', sans-serif;
  line-height: 1.5;
  color: #333;
  width: 100%;
  padding: 40px 0;
}

.contact-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.contact-section h2 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 30px;
  color: #a85b3c;
}

.fale-conosco {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fale-conosco h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #a85b3c;
  text-align: center;
}

.fale-conosco input,
.fale-conosco textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.fale-conosco button {
  background-color: #a85b3c;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.fale-conosco button:hover {
  background-color: #8c4b32;
}

.fale-conosco,
.mapa-box {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.mapa-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

footer {
  background-color: #fff8f0;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  color: var(--black);
  position: relative;
}

@media (max-width: 768px) {
  .hero .container {
    padding: 0 5%;
    text-align: center; 
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100vw;
  }
  .hero .container h1,
.hero .container p {
  background-color: rgba(0, 0, 0, 0.2); 
  padding: 10px 15px;
  border-radius: 20px;
  display: inline-block; 
}
  
  .about .row {
    flex-direction: column;
    align-items: center;
  }
  .about .row .text,
  .about .row .image {
    width: 100%;
  }

  .about .row .image img {
    width: 100%;
    height: auto;
    transform: rotate(0deg); 
  }
  
  .contact-container {
    flex-direction: column;
  }
}


.whatsapp {
  position: fixed;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
}

.whatsapp img {
  height: 60px;
}

