@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --green: #c8e240;
  --dark: #333333;
  --darker: #1a1a1a;
  --grey-mid: #555555;
  --grey-light: #888888;
  --grey-bg: #f5f5f3;
  --white: #ffffff;
  --card-bg: #2a2a2a;
  --border: rgba(200,226,64,0.2);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  border-left: 4px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  height: 60px;
  background: transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200,226,64,0.15);
  border-left: 4px solid var(--green);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

/* Nav links get slightly brighter when scrolled */
.navbar.scrolled .nav-links a {
  color: #c8e240;
}

/* Logo text glow strengthens slightly when scrolled */
.navbar.scrolled .logo-text {
  filter:
    drop-shadow(0 0 5px rgba(255,252,245,0.5))
    drop-shadow(0 0 12px rgba(255,245,225,0.25));
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  padding: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
  transform: translateY(-1px);
}

/* PNG image logo — glow follows ACTUAL shape of the logo, not the box */
.logo img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 0px;
  /* Soft warm white glow tracing the real logo shape at rest */
  filter:
    drop-shadow(0 0 4px rgba(255,250,240,0.5))
    drop-shadow(0 0 10px rgba(255,245,225,0.25));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.logo:hover img {
  /* Intensified warm white/beige glow on hover */
  filter:
    drop-shadow(0 0 4px rgba(255,252,245,0.9))
    drop-shadow(0 0 12px rgba(255,248,230,0.7))
    drop-shadow(0 0 24px rgba(255,240,210,0.45))
    drop-shadow(0 0 40px rgba(255,235,200,0.2));
  transform: scale(1.04);
}

/* Text/mark fallback — glow on the text itself */
.logo-mark {
  width: 36px; height: 36px;
  background: var(--green);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 13px;
  color: var(--dark);
  transition: var(--transition);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255,245,225,0.3));
}

.logo:hover .logo-mark {
  transform: rotate(30deg);
  filter: drop-shadow(0 0 10px rgba(255,248,230,0.7));
}

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  /* Glow behind the text characters */
  filter:
    drop-shadow(0 0 4px rgba(255,250,240,0.4))
    drop-shadow(0 0 10px rgba(255,245,225,0.2));
  transition: filter 0.4s ease;
}

.logo:hover .logo-text {
  filter:
    drop-shadow(0 0 5px rgba(255,252,245,0.85))
    drop-shadow(0 0 14px rgba(255,245,225,0.5))
    drop-shadow(0 0 28px rgba(255,235,200,0.25));
}

.logo-text span { color: var(--green); }

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 14px; border-radius: 4px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--green);
  transform: scaleX(0); transition: var(--transition);
  transform-origin: left;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--green);
}

.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--green) !important;
  color: var(--dark) !important;
  padding: 9px 22px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #d4ef4a !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}

.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: var(--transition);
}

.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--green);
  border-left: 4px solid var(--green);
  padding: 20px 5%;
  z-index: 999;
  flex-direction: column; gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 18px;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--green); padding-left: 10px; }

/* ─── FOOTER ──────────────────────────────────── */
footer {
  background: var(--darker);
  border-top: 2px solid var(--green);
  padding: 60px 5% 30px;
}

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

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px; line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

/* Footer logo — same drop-shadow glow, slightly softer */
.footer-brand .logo img {
  height: 36px;
  filter:
    drop-shadow(0 0 3px rgba(255,250,240,0.4))
    drop-shadow(0 0 8px rgba(255,245,225,0.2));
}

.footer-brand .logo:hover img {
  filter:
    drop-shadow(0 0 4px rgba(255,252,245,0.8))
    drop-shadow(0 0 12px rgba(255,245,225,0.5))
    drop-shadow(0 0 24px rgba(255,235,200,0.25));
}

.footer-brand .logo-text { font-size: 19px; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none; font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--green); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

.footer-bottom span { color: var(--green); }

/* ─── SECTION UTILITIES ───────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-tag::before {
  content: ''; display: block;
  width: 32px; height: 2px; background: var(--green);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05; color: var(--dark);
}

.section-title.light { color: var(--white); }

.section-title em {
  font-style: normal; color: var(--green);
}

.section-subtitle {
  font-size: 16px; color: var(--grey-mid);
  line-height: 1.7; max-width: 520px;
  margin-top: 12px;
}

.section-subtitle.light { color: rgba(255,255,255,0.6); }

/* ─── ANIMATE ON SCROLL ───────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1; transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px;
  text-decoration: none; border: none; cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: #d4ef4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,226,64,0.35);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 28px; border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.35);
  text-decoration: none; cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--green); color: var(--green);
  transform: translateY(-2px);
}

/* ─── WHATSAPP FLOAT ──────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}