:root {
  --frutech-green: #00a86b;
  --frutech-dark: #2c3e50;
  --frutech-light: #f4f7f6;
  --frutech-text-muted: #6c757d;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--frutech-dark);
  background-color: var(--frutech-light);
  overflow-x: hidden;
}

.navbar {
  background-color: #0b4f34;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  color: #ffffff !important;
  display: flex;
  align-items: center;
}

.logo {
  width: 32px;
  height: auto;
  margin-right: 12px;
}

.hero-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
    no-repeat center center/cover;
  padding: 150px 0 100px;
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 168, 107, 0.9) 0%,
    rgba(0, 100, 60, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.status-badge {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  text-align: justify;
}

.info-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-title {
  font-weight: 700;
  color: var(--frutech-dark);
  margin-bottom: 40px;
  text-align: center;
}

.info-card {
  border: none;
  background: var(--frutech-light);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--frutech-green);
  margin-bottom: 20px;
}

.info-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.highlight {
  color: var(--frutech-green);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-section {
    padding: 100px 0 80px;
  }
}
.sobre {
  text-align: justify;
}

footer {
  background: var(--frutech-dark);
  color: white;
  padding: 30px 0;
  text-align: center;
}
footer p {
  margin: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}
