/* style.css */

/* === VARIÁVEIS E ESTILOS GLOBAIS === */
:root {
  --primary-green: #2a4d32;
  --accent-green: #a8e063;
  --text-light: #f5f5f5;
  --background-gradient: linear-gradient(135deg, #3a6a4a, #2a4d32);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--primary-green);
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
}

html {
  scroll-behavior: smooth;
}

/* === COMPONENTES E SEÇÕES === */

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(245, 245, 245, 0.1);
}
.section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.cta-button {
  background-color: var(--accent-green);
  color: var(--primary-green);
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(168, 224, 99, 0.3);
}

/* Header */
.header-nav {
  padding: 20px;
  background: var(--background-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.logo {
  height: 80px;
  border-radius: 15px;
}

/* Hero Section */
.hero-section {
  background: var(--background-gradient);
  padding: 80px 20px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.gallery-item .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.overlay-text {
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 600;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.product-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}
.product-card h3 {
  font-size: 1.5rem;
  margin-top: 15px;
  color: var(--accent-green);
}

/* Services */
.service-content {
  max-width: 700px;
  margin: 0 auto;
}
.service-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Contact */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.info-block {
  flex: 1;
  min-width: 280px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  text-align: left;
}
.info-block h3 {
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block ul {
  list-style: none;
  padding: 0;
}
.info-block li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.info-block a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-block a:hover {
  color: var(--accent-green);
}
.location-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  margin-top: 40px;
}
.location-wrapper h3 {
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.location-wrapper a {
    text-decoration: none;
    color: var(--text-light);
}
.address-text {
  font-size: 1.2rem;
  font-weight: 300;
}
.map-frame {
  border: 0;
  border-radius: 10px;
  width: 100%;
  height: 400px;
  margin-top: 20px;
}


/* Footer */
.footer-bar {
  padding: 20px;
  background-color: #1e3a27;
  font-size: 0.9rem;
}