:root {
  --eco-green: #1b4332;
  --eco-emerald: #2d6a4f;
  --eco-lime: #52b788;
  --eco-light: #f4f9f6;
  --eco-gradient: linear-gradient(
    135deg,
    #1b4332 0%,
    #2d6a4f 50%,
    #52b788 100%
  );
  --eco-gradient-dark: linear-gradient(135deg, #0f271d 0%, #1b4332 100%);
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fafafa;
  color: #333333;
  }


html {
  scroll-behavior: smooth;
}

.text-gradient {
  background: linear-gradient(45deg, #a3e635, #52b788);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-eco {
  background: var(--eco-gradient);
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand font {
  font-weight: 800;
  color: var(--eco-green);
}

.nav-link {
  font-weight: 600;
  color: #555555 !important;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--eco-emerald) !important;
}

.hero-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  min-height: 34vh;
  display: flex;
  align-items: center;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--eco-lime);
  box-shadow: 0 10px 20px rgba(27, 67, 50, 0.05);
}

.contact-icon-box {
  background: #e8f5e9;
  color: var(--eco-emerald);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-eco {
  background-color: var(--eco-green);
  color: #ffffff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.btn-eco:hover {
  background-color: var(--eco-emerald);
  color: #ffffff;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  color: #ffffff;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--eco-lime);
  box-shadow: 0 0 0 0.25rem rgba(82, 183, 136, 0.15);
}

.showcase-ribbon {
  background: #ffffff;
  border-top: 1px solid #e2ece7;
  overflow: hidden;
}

.ribbon-cell {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ribbon-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ribbon-cell:hover img {
  transform: scale(1.05);
}

.ribbon-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 20px 15px;
  color: #ffffff;
}

footer {
  background: var(--eco-gradient-dark);
  color: #b3c6be;
}

footer h5 {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

footer a {
  color: #b3c6be;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 25px;
  margin-top: 50px;
}
