:root {
  --brand: #d32f2f;
  --brand-dark: #a61c1c;
  --text: #222;
  --muted: #555;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--brand);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}
.main-nav a {
  margin-left: 22px;
  font-weight: 600;
  color: var(--text);
}
.main-nav a:hover { color: var(--brand); text-decoration: none; }

@media (max-width: 700px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 12px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { margin: 8px 0; }
}

/* Hero */
.hero {
  background: var(--bg-alt);
  padding: 50px 20px;
  text-align: center;
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero h1 {
  font-size: 1.9rem;
  margin-bottom: 20px;
}
.hero .lead { font-size: 1.15rem; }
.hero p { margin: 10px 0; }
.hero h4 {
  margin: 25px auto;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 650px;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 25px 0;
}

.btn-call {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 16px 36px;
  border-radius: 50px;
  margin-top: 10px;
  box-shadow: 0 6px 16px rgba(211,47,47,0.35);
}
.btn-call:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

.btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
}
.btn-whatsapp:hover { background: #1ebc59; text-decoration: none; }

/* Generic page sections */
.page-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.page-section h1 { margin-bottom: 20px; }
.breadcrumb { color: var(--muted); font-size: 0.9rem; }
.page-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr; }
}

/* Contact */
.contact-section p { margin: 8px 0; }

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 30px 20px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-nav a {
  color: #ccc;
  margin: 0 10px;
}
.footer-nav a:hover { color: #fff; }
.site-footer p { margin-top: 14px; font-size: 0.85rem; color: #999; }
