:root {
  --primary-yellow: #f7b731;
  --dark-background: #1a1a1a;
  --light-background: #f4f4f4;
  --card-background: #ffffff;
  --text-light: #ffffff;
  --text-dark: #333333;
  --text-secondary: #555555;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: var(--light-background);
  color: var(--text-dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Header --- */
.header {
  background-color: var(--dark-background);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo img {
  width: 80px;
  height: 60px;
}
.header nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#botao-header {
  margin-top: 0;
  color: var(--dark-background);
}
.header nav a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: color 0.3s;
}
/* --- Hero Section --- */
.hero {
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.pexels.com/photos/1639557/pexels-photo-1639557.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
}

.hero h1 {
  font-family: "Anton", sans-serif;
  font-size: 4.5rem;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: 500;
}
.cta-button {
  margin-top: 25px;
  padding: 12px 30px;
  background-color: var(--primary-yellow);
  color: var(--dark-background);
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
  font-size: 1rem;
  text-transform: uppercase;
  transition: background-color 0.3s, transform 0.3s;
  display: inline-block;
}

/* --- Seções Genéricas --- */
.section {
  padding: 60px 40px;
}
.section-title {
  font-family: "Anton", sans-serif;
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.title-decorator {
  width: 80px;
  height: 5px;
  background-color: var(--primary-yellow);
  margin-bottom: 25px;
}

/* --- About Section --- */
.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  color: var(--text-secondary);
}
.about p strong {
  color: var(--text-dark);
}

/* --- Menu Section --- */
.menu {
  background-color: var(--light-background);
}
.menu-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.menu-item {
  background-color: var(--card-background);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.menu-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.menu-item-content {
  padding: 20px;
}
.menu-item h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  color: var(--text-dark);
}
.menu-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* --- Contact & Location Section --- */
.contact-location {
  background-color: var(--dark-background);
  color: var(--text-light);
}
.contact-location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background-color: #2a2a2a;
  padding: 40px;
  border-radius: 8px;
}
.location h3,
.contact h3 {
  font-family: "Anton", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 15px 0;
  color: var(--primary-yellow);
}
.location p,
.contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.8;
  color: #d4d4d4;
}
.contact li {
  margin-bottom: 10px;
}
.contact li strong {
  color: var(--text-light);
}
.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
  margin-top: 15px;
}

/* --- Footer --- */
.footer {
  background-color: #111;
  color: #a0a0a0;
  padding: 20px 40px;
  text-align: center;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px;
}
.footer-logo-area span {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  color: var(--text-light);
}
.footer p {
  margin: 10px;
}
.footer-contact {
  text-align: right;
  margin: 10px;
}
.cv {
  display: flex;
  align-items: flex-start;
}
.cv ul a {
  padding-top: 10px;
  display: flex;
  font-style: none;
  text-decoration: none;
  color: var(--primary-yellow);
}
