/* Reset e base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffaf3; /* branco suave */
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #bfa046; /* dourado */
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
  outline-offset: 2px;
}

/* Container centralizado e responsivo */
.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Cabeçalho */
.site-header {
  background-color: #000; /* preto */
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

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

.logo {
  max-height: 100px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding-left: 0;
  margin: 0;
}

.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a:focus {
  background-color: #bfa046; /* dourado */
  color: #000;
  outline: none;
}

/* Hero */
.hero-section {
  background: linear-gradient(135deg, #fff6e0, #fefefe);
  padding: 4rem 0;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  padding: 0 1rem;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #bfa046;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #333;
}

.btn-primary {
  display: inline-block;
  background-color: #bfa046;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #a88f3d;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  outline: none;
}

.hero-image-wrapper {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* Sobre */
.about-section {
  background-color: #ffffff;
  padding: 4rem 1rem;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}

.about-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-content figure {
  flex: 1 1 300px;
  margin: 0;
}

.about-content img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}

.about-content article {
  flex: 2 1 400px;
  font-size: 1.1rem;
  color: #444;
}

/* Serviços */
.services-section {
  padding: 4rem 1rem;
  margin-top: 2rem;
}

.services-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #bfa046;
}

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

.service-card {
  background-color: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card:focus,
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);
  outline: none;
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #bfa046;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-card p {
  color: #666;
  font-size: 1rem;
}

/* Contato */
.contact-section {
  background-color: #fff8e1;
  padding: 3rem 1rem;
  margin-top: 3rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.contact-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #bfa046;
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-secondary {
  background-color: #bfa046;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #a88f3d;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  outline: none;
}

/* Footer */
.site-footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 4rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: #bfa046;
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content article {
    flex: 1 1 auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav a {
    font-size: 1.1rem;
  }
}