:root {
  --primary-green: #228B22;
  --dark-green: #1a6b1a;
  --light-green: #90EE90;
  --accent-green: #32CD32;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  scroll-behavior: smooth;
  text-align: justify;
}

/* Header Styles */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
  height: 35px;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link {
  font-weight: 600 !important;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(87, 184, 87, 0.8), rgba(64, 143, 64, 0.8)),
              url('assets/home.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--light-green);
  margin-bottom: 2rem;
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
  background: var(--accent-green);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

/* Hero overlay para destaque do texto */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.55) 0%, rgba(44, 62, 80, 0.45) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-section {
  position: relative;
}

.cta-button.cta-secondary {
  background: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  box-shadow: 0 4px 15px rgba(50, 205, 50, 0.10);
  font-weight: 600;
  transition: all 0.3s;
}

.cta-button.cta-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
}
/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-green);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 4rem;
  font-size: 1.1rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.stats-container {
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--light-bg);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 3rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-card:hover .service-icon {
    transform: scale(1.15) rotate(-6deg);
    box-shadow: 0 4px 16px rgba(50, 205, 50, 0.18);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-btn {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(50, 205, 50, 0.08);
}

.service-btn:hover {
  background: var(--accent-green);
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-info {
  background: var(--primary-green);
  color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin: 0;
  opacity: 0.9;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(70%) sepia(85%) saturate(7485%) hue-rotate(90deg) brightness(98%) contrast(95%);
}

.footer-text {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-green);
  transform: translateY(-2px);
  color: var(--white);
}

.how-we-work-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.how-we-work-section h3 {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1.8rem;
}

.how-we-work-section ul li {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding-left: 1.5rem;
  position: relative;
}

.how-we-work-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-size: 1.5rem;
  line-height: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  opacity: 0.7;
}

/* Footer quicklinks */
.footer-quicklinks {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
  font-size: 1.08rem;
}

.footer-link {
  color: var(--white);
  opacity: 0.85;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, opacity 0.2s;
  position: relative;
}

.footer-link:hover {
  color: var(--light-green);
  opacity: 1;
}

.footer-link-divider {
  color: var(--white);
  opacity: 0.3;
  font-size: 1.1rem;
  user-select: none;
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }

  .contact-info {
    margin-bottom: 2rem;
  }
.how-we-work-section h3 {
  margin-top: 2rem;
}
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--accent-green);
  transform: translateY(-2px);
}
.contact-details a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding: 0.2rem 0;
}

.contact-details a:hover {
  color: var(--light-green);
  text-decoration: none;
  transform: translateX(3px);
}

.contact-details a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--light-green);
  transition: width 0.3s ease;
}

.contact-details a:hover::after {
  width: 100%;
}

.contact-details a {
  cursor: pointer;
}

.contact-item:has(a[href^="tel:"]) .contact-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.contact-item:has(a[href^="mailto:"]) .contact-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.contact-item:has(a[href^="https://maps"]) .contact-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .contact-details a:hover {
    transform: translateX(2px);
  }

  .contact-item:hover .contact-icon {
    transform: scale(1.01);
  }
}
/* Statistics Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.stats-container {
  position: relative;
  z-index: 2;
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
  min-width: 280px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.stat-box:hover::before {
  animation: shimmer 1.5s ease-in-out;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(10deg);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-subtitle {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

@keyframes shimmer {
  0% {
    opacity: 0;
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number.animate {
  animation: countUp 0.6s ease-out;
}

/* Parceiros - Carrossel de Logos */
.partners-section {
  background: var(--light-bg);
}

.partner-logo {
  max-height: 80px;
  max-width: 180px;
  margin: 0 1.5rem;
  object-fit: contain;
  filter: none !important;
  transition: transform 0.3s;
}

.partner-logo:hover {
  transform: scale(1.08);
}

.partner-carousel-btn {
  background: rgba(0, 0, 0, 0.05) !important;
  border: none;
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.15;
  transition: opacity 0.2s;
}

.partner-carousel-btn:hover {
  opacity: 0.4;
}

.partners-quote {
  font-size: 1.3rem;
  color: var(--primary-green);
  font-weight: 500;
}

.partners-cta {
  background: var(--accent-green);
  color: var(--white);
  font-weight: 600;
  border-radius: 30px;
  padding: 0.9rem 2.5rem;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(50, 205, 50, 0.18);
  transition: background 0.3s, transform 0.2s;
}
.partners-cta:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
}

.list-unstyled {
  text-align: left;
}

@media (max-width: 992px) {
  .partner-logo {
    max-width: 120px;
    max-height: 60px;
    margin: 0 0.7rem;
  }
}
@media (max-width: 576px) {
  .partner-logo {
      max-width: 90px;
      max-height: 40px;
      margin: 0 0.3rem;
    }
  
    .partners-quote {
      font-size: 1rem;
    }
                .partners-cta {
                  font-size: 1rem;
                  padding: 0.7rem 1.5rem;
  }
}

/* Microanimações para botões e cards */
.cta-button,
.service-btn,
.partners-cta {
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
}