:root {
  font-family: system-ui, -apple-system, sans-serif;
  --bg-dark: #2c1a0e;
  --bg-light: #f5e6d3;
  --accent: #c76a3a;
  --text-light: #fdf6f0;
  --text-dark: #3a241c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #3a241c 0%, #5c3a28 100%);
  color: var(--text-light);
  text-align: center;
  padding: 5rem 0;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.7rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #a8572e;
}

/* Menu */
.menu {
  padding: 4rem 0;
  text-align: center;
}

.menu h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--bg-dark);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.item {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.item p {
  color: #6b4c3b;
  font-weight: bold;
}

/* Contact */
.contact {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact form {
  max-width: 500px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.8rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1rem;
  background: #f5e6d3;
  color: var(--text-dark);
}

.contact input:focus,
.contact textarea:focus {
  outline: 2px solid var(--accent);
}

.contact .btn {
  align-self: center;
}

.info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Footer */
footer {
  background: #1f1009;
  color: #9f8a7a;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}