:root {
  --green-950: #102719;
  --green-900: #17351f;
  --green-700: #2f643c;
  --green-500: #669444;
  --lime: #a8ca62;
  --cream: #f5f1e7;
  --white: #fff;
  --ink: #182019;
  --muted: #5d685e;
  --line: #dfe5dc;
  --shadow: 0 18px 50px rgba(23, 53, 31, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fbfcf9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; background: white; padding: .75rem 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(16,39,25,.1);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 2rem; }
.brand img { width: 150px; height: 58px; object-fit: contain; }
nav { display: flex; gap: 1.8rem; margin-left: auto; }
nav a { text-decoration: none; font-weight: 700; font-size: .94rem; }
nav a:hover { color: var(--green-700); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: .85rem 1.35rem;
  border: 2px solid var(--lime);
  border-radius: 8px;
  background: var(--lime);
  color: var(--green-950);
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.button-small { min-height: 44px; padding: .65rem 1rem; font-size: .9rem; }
.button-outline { color: white; background: transparent; border-color: rgba(255,255,255,.65); }

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  color: white;
  background: var(--green-950) url("images/hero-olivar.webp") center/cover no-repeat;
}
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,18,10,.9) 0%, rgba(6,18,10,.64) 43%, rgba(6,18,10,.05) 78%); }
.hero-content { position: relative; padding-block: 90px; }
.eyebrow { margin: 0 0 1rem; color: var(--green-500); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 900; }
.hero .eyebrow { color: var(--lime); }
h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.08; }
h1 { max-width: 820px; margin-bottom: 1.3rem; font-size: clamp(3.2rem, 7.4vw, 6.8rem); letter-spacing: -.045em; }
.hero-copy { max-width: 620px; margin-bottom: 2rem; font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.trust-strip { background: var(--green-950); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid p { margin: 0; padding: 1.8rem 2rem; border-right: 1px solid rgba(255,255,255,.14); }
.trust-grid p:first-child { padding-left: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid span { color: rgba(255,255,255,.62); font-size: .9rem; }

.section { padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
h2 { margin-bottom: 1rem; color: var(--green-950); font-size: clamp(2.3rem, 5vw, 4rem); letter-spacing: -.03em; }
.section-heading > p:last-child { max-width: 660px; color: var(--muted); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card { overflow: hidden; display: grid; grid-template-columns: 42% 1fr; min-height: 270px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 100%; min-height: 270px; object-fit: cover; }
.service-card div { padding: 1.8rem; }
.service-card span { color: var(--green-500); font-weight: 900; font-size: .8rem; }
.service-card h3 { margin: .45rem 0 .8rem; color: var(--green-950); font-size: 1.65rem; }
.service-card p { margin: 0; color: var(--muted); }

.about-section { padding: 110px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7rem; align-items: start; }
.about-grid > div:last-child { padding-top: 2rem; font-size: 1.12rem; color: var(--muted); }
.text-link { display: inline-block; margin-top: 1rem; color: var(--green-700); font-weight: 900; text-decoration: none; }

.contact-section { padding: 90px 0; background: var(--green-900); }
.contact-card { display: grid; grid-template-columns: 1.15fr .85fr; gap: 6rem; align-items: center; color: white; }
.contact-card h2 { color: white; }
.contact-card > div:first-child > p:last-child { color: rgba(255,255,255,.7); font-size: 1.08rem; }
.contact-actions { display: grid; gap: 1rem; }
.contact-actions > a:not(.button) { color: white; text-underline-offset: 4px; }
.contact-actions span { color: rgba(255,255,255,.65); }

footer { padding: 50px 0; background: var(--green-950); color: rgba(255,255,255,.65); }
.footer-inner { display: grid; grid-template-columns: 180px 1fr auto; gap: 2rem; align-items: center; }
.footer-inner img { width: 150px; filter: brightness(1.25); }
.footer-inner p { margin: 0; }
.footer-credit { color: white; font-weight: 700; text-underline-offset: 4px; }
.footer-links { display: flex; justify-content: space-between; gap: 2rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }
.channel-links, .legal-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: rgba(255,255,255,.78); text-underline-offset: 4px; }
.footer-links a:hover { color: white; }
.legal-page { min-height: 100vh; background: var(--cream); }
.legal-header { padding: 70px 0 45px; background: var(--green-900); color: white; }
.legal-header h1 { max-width: 900px; margin: 0; font-size: clamp(2.6rem, 6vw, 5rem); }
.legal-content { max-width: 860px; padding-block: 70px 100px; }
.legal-content h2 { margin-top: 2.5rem; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.legal-content h3 { margin-top: 2rem; font-size: 1.35rem; }
.legal-content p, .legal-content li { color: #445047; }
.legal-content a { color: var(--green-700); }
.legal-back { display: inline-block; margin-bottom: 1.5rem; color: var(--lime); font-weight: 800; text-decoration: none; }
.legal-note { padding: 1rem 1.2rem; border-left: 4px solid var(--green-500); background: white; }
.floating-whatsapp { display: none; }

@media (max-width: 900px) {
  nav { display: none; }
  .header-inner .button-small { margin-left: auto; }
  .hero { min-height: 630px; background-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,18,10,.9), rgba(6,18,10,.5)); }
  .trust-grid, .service-grid, .about-grid, .contact-card { grid-template-columns: 1fr; }
  .trust-grid p { padding: 1.2rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .about-grid, .contact-card { gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 68px; }
  .brand img { width: 120px; height: 50px; }
  .header-inner .button-small { font-size: 0; min-height: 42px; }
  .header-inner .button-small::after { content: "WhatsApp"; font-size: .88rem; }
  .hero { min-height: 660px; background-position: 64% center; }
  .hero-content { padding-block: 70px; }
  h1 { max-width: 100%; font-size: clamp(2.65rem, 13vw, 3.7rem); overflow-wrap: anywhere; }
  .hero-actions { display: grid; }
  .section, .about-section { padding: 78px 0; }
  .service-card { grid-template-columns: 1fr; }
  .service-card img { height: 220px; min-height: 0; }
  .contact-section { padding: 70px 0 95px; }
  .floating-whatsapp {
    display: block;
    position: fixed;
    z-index: 30;
    right: 16px;
    bottom: 16px;
    padding: .85rem 1.1rem;
    border-radius: 999px;
    background: #25d366;
    color: #092812;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    text-decoration: none;
    font-weight: 900;
  }
}
