@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary-color: #0b2b1a; /* Dark Green */
  --accent-color: #cda34f; /* Gold */
  --accent-hover: #b58b3c;
  --bg-light: #f9fbf9;
  --text-dark: #1f2924;
  --text-light: #ffffff;
  --text-muted: #666666;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #fdfbf7;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  max-width: 100%;
  min-width: 0; /* Permite que o flex item encolha */
}

.logo img {
  width: 100%;
  max-height: 110px; /* Mantém grande no desktop */
  height: auto;      /* Escala automaticamente */
  object-fit: contain; /* Garante que não será cortada */
  object-position: left center; /* Mantém alinhado à esquerda */
  margin: -15px 0;   /* Remove visualmente o espaço vazio */
  mix-blend-mode: multiply; /* Fundo transparente falso */
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

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

/* Buttons */
.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid var(--accent-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid var(--accent-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(11, 43, 26, 0.85), rgba(11, 43, 26, 0.85)), url('../assets/hero.png') center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  color: #e0e0e0;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Section Common */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Services Section */
.bg-light {
  background-color: #ffffff;
}

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

.service-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 8px;
  border-top: 4px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--accent-color);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
}

/* Map Section */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.footer-info p {
  color: #cccccc;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaaaaa;
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Add a hamburger menu for real production */
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
