:root {
  --green: #0f7a3e;
  --green-dark: #0a4f28;
  --yellow: #ffd343;
  --white: #ffffff;
  --ink: #132218;
  --surface: #f7fbf7;
  --shadow: 0 14px 40px rgba(7, 35, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #effced, #f7fbf7 45%);
  scroll-behavior: smooth;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 122, 62, 0.15);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 700;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2px solid rgba(15, 122, 62, 0.22);
  box-shadow: 0 8px 18px rgba(7, 35, 18, 0.2);
  flex-shrink: 0;
}

.brand-name {
  font-size: 0.95rem;
  line-height: 1.2;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.top-nav a {
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 600;
  padding: 0.35rem 0.5rem;
}

.hero {
  position: relative;
  min-height: clamp(480px, 72vh, 660px);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("./assets/bg.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 42, 19, 0.84), rgba(7, 42, 19, 0.45) 52%, rgba(7, 42, 19, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-block: clamp(4rem, 8vw, 7rem);
  max-width: 740px;
}

.eyebrow {
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--yellow);
  margin: 0 0 0.8rem;
}

h1,
h2 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
}

p {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.hero p {
  font-size: 1.07rem;
}

.hero-actions,
.contact-actions,
.locate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(145deg, var(--yellow), #ffbe0c);
  color: #2f2200;
  box-shadow: 0 10px 24px rgba(255, 211, 67, 0.35);
}

.btn-outline {
  color: var(--green-dark);
  border-color: rgba(12, 84, 42, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

section {
  padding-block: clamp(2.3rem, 6vw, 5.2rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 122, 62, 0.15);
}

.partnership {
  background: linear-gradient(180deg, rgba(255, 211, 67, 0.17), rgba(255, 211, 67, 0.02));
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: start;
}

.benefits {
  margin: 0;
  padding: 1rem 1.2rem;
  list-style: none;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 122, 62, 0.15);
}

.benefits li {
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(15, 122, 62, 0.22);
  font-weight: 500;
}

.benefits li:last-child {
  border-bottom: 0;
}

.locate .address {
  font-weight: 600;
}

.coords {
  margin-bottom: 1rem;
}

.status {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: #274f2f;
  min-height: 1.4rem;
}

.map-wrap {
  margin-top: 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(15, 122, 62, 0.2);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.contact-box {
  background: linear-gradient(140deg, rgba(15, 122, 62, 0.95), rgba(10, 79, 40, 0.95));
  color: var(--white);
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-box .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #052611;
  font-weight: 800;
  text-decoration: none;
  display: grid;
  place-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  z-index: 25;
}

.site-footer {
  border-top: 1px solid rgba(15, 122, 62, 0.15);
  padding: 1rem 0;
  text-align: center;
  color: #33503a;
}

@media (max-width: 920px) {
  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  .brand-name {
    max-width: 190px;
    font-size: 0.84rem;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 640px) {
  .top-nav {
    display: none;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding-top: 4.5rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: fit-content;
  }
}
