:root {
  --primary: #2d7c2f;
  --primary-dark: #14561a;
  --accent: #e23488;
  --accent-soft: #fce2ef;
  --lime: #b3dc39;
  --text: #213126;
  --muted: #5f6f64;
  --bg: #f6fff4;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(33, 49, 38, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(179, 220, 57, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(226, 52, 136, 0.12), transparent 28%),
    var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.35;
  z-index: -1;
}
.orb-1 {
  width: 260px; height: 260px; background: rgba(179, 220, 57, 0.55); top: 8%; left: -80px;
}
.orb-2 {
  width: 300px; height: 300px; background: rgba(226, 52, 136, 0.18); right: -100px; bottom: 12%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(45,124,47,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(45,124,47,0.16);
}
.brand strong {
  display: block;
  font-size: 1rem;
}
.brand span {
  font-size: 0.88rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-size: 0.96rem;
  color: var(--text);
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 46px;
  height: 46px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  margin: 5px auto;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(14,30,15,0.72) 0%, rgba(14,30,15,0.42) 38%, rgba(14,30,15,0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}
.hero-copy {
  max-width: 620px;
  color: var(--white);
}
.eyebrow, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  color: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.section-tag {
  background: rgba(179, 220, 57, 0.12);
  border-color: rgba(45,124,47,0.12);
  color: var(--primary-dark);
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.96;
  margin: 0 0 18px;
}
.hero p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.92);
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(33,49,38,0.14);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--lime));
  color: var(--white);
}
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.32);
}
.soft-bg .btn-secondary, .contact-card .btn-secondary {
  background: rgba(45,124,47,0.06);
  border-color: rgba(45,124,47,0.12);
  color: var(--primary-dark);
}
.btn-full { width: 100%; }

.intro-strip {
  margin-top: -54px;
  position: relative;
  z-index: 3;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.intro-grid article,
.glass {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(45,124,47,0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.intro-grid article {
  padding: 26px;
}
.intro-grid h3,
.info-card h3,
.social-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}
.intro-grid p,
.info-card p,
.social-card p,
.section-copy p,
.section-heading p,
.form-note,
.contact-list,
.note {
  color: var(--muted);
  line-height: 1.8;
}

.section {
  padding: 92px 0;
}
.soft-bg {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(179,220,57,0.07));
}
.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}
.section-heading h2,
.section-copy h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 14px;
  line-height: 1.05;
}

.split-layout,
.video-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.feature-card {
  overflow: hidden;
  padding: 14px;
}
.feature-card img,
.info-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  padding: 14px;
}
.info-card h3, .info-card p { padding: 0 10px; }
.info-card img {
  aspect-ratio: 4 / 4.3;
  margin-bottom: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform .35s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.video-card {
  padding: 14px;
}
.video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.social-card {
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.contact-card {
  padding: 30px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.contact-list li { margin-bottom: 12px; }
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(45,124,47,0.14);
  background: rgba(255,255,255,0.78);
  border-radius: 16px;
  padding: 16px 18px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(226, 52, 136, 0.38);
  box-shadow: 0 0 0 4px rgba(226, 52, 136, 0.08);
}
.form-note { margin: 14px 2px 0; font-size: 0.92rem; }
.note { margin-top: 16px; font-size: 0.96rem; }

.site-footer {
  padding: 26px 0 42px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  border-top: 1px solid rgba(45,124,47,0.1);
  padding-top: 24px;
}
.footer-wrap a { color: var(--primary-dark); }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #23c65e, #19a44d);
  color: white;
  box-shadow: 0 18px 32px rgba(25, 164, 77, 0.32);
  z-index: 60;
}
.whatsapp-float svg { width: 32px; height: 32px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 10, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 100;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(980px, 100%);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.28);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.14);
  color: white;
  font-size: 1.7rem;
  cursor: pointer;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .intro-grid,
  .cards-grid,
  .gallery-grid,
  .split-layout,
  .video-layout,
  .contact-layout,
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-grid { grid-template-columns: 1fr; }
  .split-layout,
  .video-layout,
  .contact-layout { grid-template-columns: 1fr; }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(45,124,47,0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .24s ease;
  }
  .main-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu-toggle { display: block; }
}

@media (max-width: 720px) {
  .hero {
    min-height: 78vh;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(14,30,15,0.62) 0%, rgba(14,30,15,0.35) 52%, rgba(14,30,15,0.58) 100%);
  }
  .hero-content {
    padding: 80px 0 70px;
  }
  .hero h1 { font-size: 2.65rem; }
  .hero p { font-size: 1rem; }
  .intro-grid,
  .gallery-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 72px 0; }
  .contact-card { padding: 22px; }
  .brand img { width: 50px; height: 50px; }
  .whatsapp-float {
    width: 58px;
    height: 58px;
  }
}
