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

:root {
  --primary: #3D4F3D;
  --accent: #C17B5C;
  --background: #E8DCC4;
  --foreground: #6B5D52;
  --card-bg: #F5F3EE;
  --border: #D4C9B8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.7;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(232, 220, 196, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.btn-contact {
  padding: 10px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #2f3f2f;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .header-container {
    padding: 0 1rem;
  }
}

/* Hero Section */
.hero {
  margin-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232, 220, 196, 0.3);
  backdrop-filter: blur(4px);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 50%;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(107, 93, 82, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #2f3f2f;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--foreground);
  border: 2px solid rgba(107, 93, 82, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

/* Sections */
section {
  padding: 96px 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 24px;
}

section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 12px;
}

/* Sobre Section */
#sobre {
  background: var(--background);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sobre-content p {
  margin-bottom: 16px;
  color: rgba(107, 93, 82, 0.9);
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(107, 93, 82, 0.7);
  margin-top: 8px;
}

.sobre-image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .sobre-grid {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  section h2 {
    font-size: 2rem;
  }
}

/* Serviços Section */
#servicos {
  background-image: url('../images/services-bg.png');
  background-size: cover;
  background-position: center;
}

.servicos-intro {
  text-align: center;
  margin-bottom: 48px;
}

.servicos-intro p {
  font-size: 1.125rem;
  color: rgba(107, 93, 82, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: rgba(245, 243, 238, 0.8);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 48px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
}

.service-card:nth-child(odd) .service-icon {
  background: rgba(61, 79, 61, 0.1);
  color: var(--primary);
}

.service-card:nth-child(even) .service-icon {
  background: rgba(193, 123, 92, 0.1);
  color: var(--accent);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(107, 93, 82, 0.8);
  line-height: 1.6;
}

/* Contato Section */
#contato {
  background: var(--background);
  text-align: center;
}

.contato-intro {
  margin-bottom: 48px;
}

.contato-intro p {
  font-size: 1.25rem;
  color: rgba(107, 93, 82, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.contato-card {
  background: var(--card-bg);
  padding: 32px;
  border-radius: 48px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contato-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.contato-icon {
  width: 56px;
  height: 56px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.75rem;
}

.contato-card:nth-child(1) .contato-icon {
  background: rgba(61, 79, 61, 0.1);
  color: var(--primary);
}

.contato-card:nth-child(2) .contato-icon {
  background: rgba(193, 123, 92, 0.1);
  color: var(--accent);
}

.contato-card:nth-child(3) .contato-icon {
  background: rgba(61, 79, 61, 0.1);
  color: var(--primary);
}

.contato-card h3 {
  margin-bottom: 12px;
}

.contato-card p {
  color: rgba(107, 93, 82, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contato-footer {
  margin-top: 32px;
  color: rgba(107, 93, 82, 0.6);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 48px 2rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
  align-items: start;
}

.footer-company h3 {
  margin-bottom: 12px;
}

.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-info-icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-divider {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: rgba(107, 93, 82, 0.6);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  section {
    padding: 48px 1rem;
  }
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mt-8 {
  margin-top: 32px;
}
