:root {
  --green-dark: #14321f;
  --green-deep: #1c3d26;
  --green-primary: #4caf3c;
  --green-primary-dark: #3d9430;
  --green-pale: #eef6ea;
  --gold-accent: #cba14e;
  --text-dark: #1a2a1f;
  --text-muted: #5b6b60;
  --white: #ffffff;
  --border-light: #e3ebe1;
  --radius: 10px;
  --font-heading: 'Baloo 2', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header, .site-footer { flex-shrink: 0; }

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

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--text-dark);
}

h1 span, h2 span { color: var(--green-primary-dark); }

p { margin: 0 0 10px; color: var(--text-muted); }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green-primary-dark);
  margin-bottom: 8px;
}

.arrow { display: inline-block; margin-left: 2px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-primary-dark); }

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--border-light);
}
.btn-secondary:hover { border-color: var(--green-primary); }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover { background: var(--green-dark); color: var(--white); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #ffffff 0%, #fcfdfb 100%);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(20, 50, 31, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 28px;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  position: relative;
  gap: 12px;
  padding: 4px 28px 4px 0;
  flex-shrink: 0;
}

.logo-placeholder::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: calc(100% - 16px);
  background: linear-gradient(180deg, transparent, #c9d8c6, transparent);
}

.logo-icon {
  width: 58px;
  height: auto;
  object-fit: contain;
}

.icon-green { color: var(--green-primary-dark); }
.icon-blue { color: #2f8fd1; }
.icon-orange { color: #e0793a; }
.icon-teal { color: #2b9b8c; }
.icon-olive { color: #7a8a3a; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; gap: 5px; }
.logo-text strong { font-family: var(--font-heading); font-size: 21px; color: var(--green-dark); letter-spacing: -0.25px; }
.logo-text small { font-size: 9px; letter-spacing: 0.65px; color: var(--text-muted); text-transform: uppercase; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 500;
}

.main-nav a { color: var(--text-dark); padding: 8px 0 6px; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--green-primary-dark); border-color: var(--green-primary); }

.header-cta { flex-shrink: 0; padding: 12px 22px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--text-dark); }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 12px 0 22px;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(10,26,15,0.95) 0%, rgba(10,26,15,0.88) 26%, rgba(10,26,15,0.55) 46%, rgba(10,26,15,0.15) 70%, rgba(10,26,15,0.05) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content { max-width: 560px; }
.hero-content h1 { font-size: 29px; color: var(--white); }
.hero-content h1 span { color: #8bdc7a; }
.hero-content .eyebrow { color: #8bdc7a; }

.hero-text { font-size: 13.5px; max-width: 440px; margin-bottom: 4px; color: #dce8da; }
.hero-text strong { color: var(--white); }

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

.hero .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero .btn-secondary:hover { background: var(--white); color: var(--text-dark); }

.hero-caption {
  position: absolute;
  top: 2px;
  right: 30%;
  max-width: 170px;
  text-align: right;
}
.hero-caption p {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-style: italic;
  transform: rotate(-2deg);
  font-size: 20px;
  line-height: 1.25;
  color: var(--white);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.6);
}
.hero-caption-line {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--green-primary);
  margin-top: 8px;
}

/* Highlights bar */
.highlights {
  background: linear-gradient(120deg, rgba(20,50,31,0.72), rgba(28,61,38,0.65));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 5px 0;
  margin-top: -10px;
  position: relative;
  z-index: 2;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.highlight-item:first-child { padding-left: 0; border-left: none; }

.highlight-icon {
  color: var(--white);
  opacity: 0.9;
  flex-shrink: 0;
}
.highlight-icon svg { width: 22px; height: 22px; }
.highlight-icon img { width: 22px; height: 22px; object-fit: contain; }

.highlight-item strong { display: block; font-size: 13px; margin-bottom: 1px; }
.highlight-item p { margin: 0; font-size: 11px; color: #c7d3c5; }

/* Decorative leaf watermark behind services + founder */
.leafy-bg {
  position: relative;
  overflow: hidden;
  background: var(--green-pale);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.leaf-watermark {
  position: absolute;
  top: -40px;
  left: -70px;
  width: 340px;
  height: calc(100% + 80px);
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 900'%3E%3Cg fill='%234caf3c'%3E%3Cpath opacity='0.09' transform='translate(20,40) rotate(-15) scale(3.4)' d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath opacity='0.07' transform='translate(-10,260) rotate(20) scale(2.6)' d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath opacity='0.08' transform='translate(60,470) rotate(-30) scale(3)' d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath opacity='0.06' transform='translate(-20,680) rotate(10) scale(2.4)' d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Services */
.services { padding: 16px 0 4px; position: relative; z-index: 1; }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 12px;
}

.services-header h2 { font-size: 27px; margin: 0; }
.services-intro { font-size: 14.5px; margin: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px;
  border: 1px solid var(--border-light);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.service-image-placeholder {
  width: 160px;
  aspect-ratio: 3/3.1;
  flex-shrink: 0;
  border-radius: 7px;
  overflow: hidden;
}

.service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content { min-width: 0; }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.service-icon svg { width: 16px; height: 16px; }
.service-icon img { width: 27px; height: 27px; object-fit: contain; }

.service-card h3 { font-size: 13.5px; margin-bottom: 3px; }
.service-card p { font-size: 11.5px; margin-bottom: 6px; }

.link-arrow {
  font-weight: 600;
  font-size: 12.5px;
  color: var(--green-primary-dark);
}

/* Founder */
.founder { padding: 24px 0 4px; position: relative; z-index: 1; }

.founder-inner {
  display: grid;
  grid-template-columns: 0.5fr 1.2fr 1fr 0.7fr;
  gap: 14px;
  align-items: center;
}

.founder-image-placeholder {
  aspect-ratio: 3/3.1;
  max-width: 190px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.founder-content h2 { font-size: 19px; }
.founder-content > p { font-size: 12px; margin-bottom: 0; }

.founder-checklist { list-style: none; padding: 0 0 0 28px; margin: 0; display: flex; flex-direction: column; gap: 11px; border-left: 1px solid var(--border-light); }
.founder-checklist li { display: flex; gap: 12px; align-items: flex-start; }
.check-icon {
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}
.check-icon svg { width: 20px; height: 20px; }
.check-icon img { width: 22px; height: 22px; object-fit: contain; }
.founder-checklist strong { display: block; font-size: 13.5px; }
.founder-checklist p { margin: 0; font-size: 11.5px; }

.founder-quote {
  padding-left: 28px;
  border-left: 1px solid var(--border-light);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-quote p { color: var(--text-dark); font-family: 'Caveat', cursive; font-weight: 600; font-style: italic; font-size: 19px; line-height: 1.3; margin-bottom: 12px; display: inline-block; transform: rotate(-2deg); }
.founder-quote hr { border: none; border-top: 1px solid var(--border-light); width: 28px; margin: 0 0 10px; }
.founder-quote strong { display: block; font-size: 12.5px; }
.founder-quote span { font-size: 11px; color: var(--text-muted); }

/* About / Quem Somos page */
.about-hero {
  position: relative;
  z-index: 3;
  aspect-ratio: 2149 / 732;
  min-height: 480px;
  max-height: 640px;
  display: flex;
  align-items: center;
  padding: 40px 0 44px;
  overflow: visible;
}

.about-hero .hero-bg-photo {
  object-position: center 0%;
  /* Crop the 4.5% dark frame baked into the source photograph. */
  clip-path: inset(2.2%);
  transform: scale(1.045);
}

.about-hero .hero-overlay { background: none; }

.about-hero-figure {
  position: absolute;
  left: 54%;
  bottom: -68px;
  height: 104%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.about-hero-photo {
  position: relative;
  z-index: 2;
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0,0,0,0.25));
}

.about-hero-shadow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 22px;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(20, 50, 31, 0.15) 0%, rgba(20, 50, 31, 0.07) 30%, transparent 68%),
    radial-gradient(ellipse at 82% 50%, rgba(20, 50, 31, 0.15) 0%, rgba(20, 50, 31, 0.07) 30%, transparent 68%);
  filter: blur(6px);
  z-index: 1;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Entrance animation: elements slide in from left to right on page load */
@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-70px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInFromLeftRotated {
  from { opacity: 0; transform: translateX(-70px) rotate(-3deg); }
  to { opacity: 1; transform: translateX(0) rotate(-3deg); }
}

.about-eyebrow,
.about-title,
.about-lead,
.about-hero-content .hero-actions,
.about-caption {
  opacity: 0;
  animation: slideInFromLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.about-eyebrow { animation-delay: 0.05s; }
.about-title { animation-delay: 0.15s; }
.about-lead { animation-delay: 0.3s; }
.about-hero-content .hero-actions { animation-delay: 0.42s; }
.about-caption { animation-name: slideInFromLeftRotated; animation-delay: 0.54s; }

.about-hero-figure {
  opacity: 0;
  animation: slideInFromLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-text,
.hero-content .hero-actions,
.hero-caption {
  opacity: 0;
  animation: slideInFromLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content .eyebrow { animation-delay: 0.05s; }
.hero-content h1 { animation-delay: 0.15s; }
.hero-text { animation-delay: 0.3s; }
.hero-content .hero-actions { animation-delay: 0.42s; }
.hero-caption { animation-delay: 0.54s; }

@media (prefers-reduced-motion: reduce) {
  .about-eyebrow,
  .about-title,
  .about-lead,
  .about-hero-content .hero-actions,
  .about-caption,
  .about-hero-figure,
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-text,
  .hero-content .hero-actions,
  .hero-caption {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.about-hero-content {
  max-width: 540px;
  position: relative;
  padding: 28px 32px;
}
.about-hero-content::before {
  content: '';
  position: absolute;
  inset: -160px -220px;
  z-index: -1;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.4) 38%, transparent 55%);
  mask-image: radial-gradient(circle at center, #000 0%, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.4) 38%, transparent 55%);
}
.about-title { font-size: 32px; color: var(--text-dark); }
.about-title span { color: var(--green-primary-dark); }
.about-eyebrow { color: var(--green-primary-dark); }

.about-lead { font-size: 14px; font-weight: 700; color: var(--text-dark); max-width: 460px; }
.about-lead strong { color: var(--text-dark); font-weight: 700; }

.about-btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--border-light);
}
.about-btn-secondary:hover { border-color: var(--green-primary); }

.about-caption { margin-top: 30px; display: inline-block; transform: rotate(-3deg); }
.about-caption p {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0;
}

/* Essence section */
.essence {
  padding: 22px 0 56px;
  background: var(--green-pale);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.essence::before {
  content: '';
  position: absolute;
  left: -58px;
  bottom: -44px;
  width: 250px;
  height: 270px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 270'%3E%3Cg fill='%23b9d6b3' fill-opacity='.32'%3E%3Cpath d='M4 254C-5 161 31 84 115 19c-6 78-41 157-111 235Z'/%3E%3Cpath d='M0 132C43 90 92 75 153 82c-43 43-94 61-153 50Z'/%3E%3Cpath d='M55 270c16-74 57-126 126-158-13 71-55 124-126 158Z'/%3E%3Cpath d='M0 213c51-31 104-35 159-12-52 31-105 35-159 12Z'/%3E%3C/g%3E%3Cpath d='M0 262C49 197 97 141 152 83' fill='none' stroke='%23b9d6b3' stroke-opacity='.28' stroke-width='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.essence-inner {
  position: relative;
  z-index: 1;
}

.essence-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.essence-content h2 { font-size: 26px; }
.essence-content p { font-size: 13.5px; }

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

.essence-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 18px;
  border: 1px solid var(--border-light);
}

.essence-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 12px;
}
.essence-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.1;
}

.icon-green-bg,
.icon-teal-bg,
.icon-olive-bg {
  background: #e8f5e8;
  color: #26a847;
}

.essence-card h3 { font-size: 15px; margin-bottom: 6px; }
.essence-card p { font-size: 12.5px; margin-bottom: 14px; }

.essence-line { display: block; width: 30px; height: 2px; background: var(--green-primary); }

/* Services page */
.svc-hero {
  position: relative;
  z-index: 1;
  aspect-ratio: 2172 / 724;
  min-height: 320px;
  max-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.svc-hero .hero-bg-photo { object-position: center 0%; }

.svc-hero .hero-overlay {
  background: linear-gradient(100deg, rgba(10,26,15,0.85) 0%, rgba(10,26,15,0.6) 40%, rgba(10,26,15,0.25) 70%, rgba(10,26,15,0.1) 100%);
}

.svc-hero-inner { position: relative; z-index: 2; width: 100%; }
.svc-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d9d2c0;
  margin-bottom: 14px;
}
.svc-hero-eyebrow .dash-accent { margin-bottom: 0; background: var(--gold-accent); }
.svc-hero-title { font-size: 52px; line-height: 1.08; color: var(--white); max-width: 640px; }
.svc-hero-title span { color: #6fcf7d; }
.svc-hero-lead { font-size: 19px; line-height: 1.5; color: #eef3ec; max-width: 560px; margin: 14px 0 0; }

/* Overview */
.svc-overview {
  padding: 34px 0;
  background: #ffffff;
}

.svc-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow-gold {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}
.eyebrow-gold .dash-accent { margin-bottom: 0; background: var(--gold-accent); }

.svc-overview-content h2 { font-size: 40px; line-height: 1.15; }
.svc-overview-content p { font-size: 16.5px; line-height: 1.6; margin-top: 16px; }

.svc-overview-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 88px;
  border-left: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.svc-overview-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
}

.svc-overview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.svc-overview-icon img { width: 44px; height: 44px; object-fit: contain; }
.svc-overview-icon svg { width: 24px; height: 24px; }

/* Areas of activity */
.svc-areas {
  padding: 28px 0 32px;
  background: #ffffff;
}

.svc-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.svc-area-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  isolation: isolate;
}

.svc-area-photo { width: 100%; height: 100%; object-fit: cover; }
.svc-area-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  background: #dfe6de repeating-linear-gradient(45deg, #d6ded4, #d6ded4 10px, #cdd6cb 10px, #cdd6cb 20px);
  color: #6b7a68;
  font-size: 12px;
}

.svc-area-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,26,15,0.85) 0%, rgba(10,26,15,0.35) 55%, rgba(10,26,15,0.05) 100%);
  z-index: 1;
}

.svc-area-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 24px 26px;
  color: var(--white);
}
.svc-area-text h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.svc-area-text p { color: #dce8da; font-size: 14.5px; line-height: 1.45; margin: 0; max-width: 420px; }

/* ISO / SGI */
.svc-iso {
  background: #ffffff;
  padding: 20px 0 48px;
  overflow-x: clip;
}

.svc-iso-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 32px;
}

.dash-accent {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--green-primary);
  margin-bottom: 12px;
}

/* Dark card with leaf photo */
.svc-iso-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
  min-height: 300px;
  display: flex;
  align-items: center;
}

/* Keep the ISO panel aligned with the content grid, as in the service layout. */
@media (min-width: 861px) {
  .svc-iso-card {
    margin-left: 0;
    width: auto;
    border-radius: var(--radius);
  }
  .svc-iso-card .svc-iso-card-content {
    padding-left: 36px;
  }
}

.svc-iso-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.svc-iso-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,26,15,0.92) 0%, rgba(10,26,15,0.78) 45%, rgba(10,26,15,0.3) 100%);
  z-index: 1;
}

.svc-iso-card-content { position: relative; z-index: 2; padding: 36px; }
.svc-iso-card-content .dash-accent { background: var(--gold-accent); }
.svc-iso-card-content h2 { color: var(--white); font-size: 29px; margin-bottom: 14px; }
.svc-iso-card-content p { color: #c7d3c5; font-size: 15.5px; max-width: 320px; margin: 0; }

/* Right side: badges + note */
.svc-iso-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.svc-iso-badges {
  display: flex;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
}

.svc-iso-badge {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  min-width: 150px;
  padding: 0 24px;
  border-left: 1px solid var(--border-light);
}
.svc-iso-badge:first-child { padding-left: 0; border-left: none; }
.svc-iso-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary-dark);
  margin-bottom: 14px;
}
.svc-iso-icon svg { width: 52px; height: 52px; }
.svc-iso-icon img { width: 60px; height: 60px; object-fit: contain; }
.svc-iso-badge strong { color: var(--text-dark); font-size: 20px; }
.svc-iso-badge span { color: var(--text-muted); font-size: 13.5px; }

.svc-iso-note { display: flex; flex-direction: column; align-items: center; text-align: center; }
.svc-iso-note .dash-accent { margin-left: auto; margin-right: auto; }
.svc-iso-note p { color: var(--text-muted); font-size: 13.5px; margin: 0; }

.svc-orgs {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}
.svc-orgs-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--text-muted); }
.svc-orgs-eyebrow .dash-accent { margin-bottom: 0; background: var(--gold-accent); }
.svc-orgs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}
.svc-orgs-list span:not(:last-child)::after {
  content: '.';
  margin-left: 24px;
  color: var(--text-muted);
  font-weight: 700;
}

/* Clientes e Parceiros page */
.cli-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(116, 170, 103, 0.1), transparent 24%),
    linear-gradient(90deg, #ffffff 0%, #f9fcf7 100%);
  padding: 48px 0 40px;
}
.cli-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.cli-hero-content h1 { font-size: 46px; line-height: 1.1; margin: 8px 0 18px; color: var(--text-dark); }
.cli-hero-lead { font-size: 16px; line-height: 1.6; color: var(--text-muted); max-width: 520px; margin: 0; }

.cli-hero-card {
  position: relative;
  overflow: hidden;
  background: #f2f5ec;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px 40px;
}
.cli-hero-card-leaf {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none'%3E%3Cg stroke='%2341B95B' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 56C6 42 14 22 33 18C48 15 62 15 69 7C70 37 61 65 28 63'/%3E%3Cpath d='M13 73C24 52 39 38 54 27'/%3E%3C/g%3E%3C/svg%3E");
}
.cli-pillars { position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }
.cli-pillars li { display: flex; align-items: center; gap: 22px; font-family: var(--font-heading); font-weight: 600; font-size: 19px; color: var(--text-dark); }
.cli-pillars li:not(:last-child) { border-bottom: 1px solid var(--border-light); padding-bottom: 26px; }
.cli-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-accent);
  color: var(--gold-accent);
  flex-shrink: 0;
}
.cli-pillar-icon svg { width: 24px; height: 24px; }

/* Brands */
.cli-brands {
  padding: 56px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%);
}
.cli-section-title { font-size: 34px; margin: 0 0 8px; }
.cli-section-sub { font-size: 16px; color: var(--text-muted); margin: 0 0 32px; }

.cli-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(20,50,31,0.04);
}
.brand-logo {
  height: 120px;
  border-radius: 8px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9aa89c;
  font-size: 13px;
  padding: 12px;
  margin-bottom: 18px;
}
.brand-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-card h3 { font-size: 19px; margin: 0 0 8px; color: var(--text-dark); }
.brand-card p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }

.brand-card-wide {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 22px;
}
.brand-card-wide .brand-logo { margin-bottom: 0; height: 110px; }
.brand-card-wide-text { border-left: 1px solid var(--border-light); padding-left: 32px; }
.brand-card-wide-text h3 { font-size: 20px; margin: 0 0 8px; }
.brand-card-wide-text p { font-size: 15px; color: var(--text-muted); margin: 0; }

/* Partners */
.cli-partners {
  background:
    radial-gradient(circle at 12% 90%, rgba(119, 174, 103, 0.16), transparent 30%),
    linear-gradient(135deg, #f3f8ee 0%, #e6f0df 100%);
  padding: 56px 0;
}
.cli-partners .cli-section-title { margin-top: 6px; }
.partners-panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  justify-items: center;
  align-items: center;
}
.partner-logo {
  width: 100%;
  height: 90px;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9aa89c;
  font-size: 12px;
  padding: 10px;
}
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Services and clients: content enters from the right on page load */
@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(70px); }
  to { opacity: 1; transform: translateX(0); }
}

.svc-hero-eyebrow,
.svc-hero-title,
.svc-hero-lead,
.svc-overview-content > *,
.svc-overview-list li,
.svc-areas .eyebrow,
.svc-area-card,
.svc-iso-card,
.svc-iso-badge,
.svc-iso-note,
.svc-orgs,
.cli-hero-content > *,
.cli-hero-card,
.cli-brands .cli-section-title,
.cli-brands .cli-section-sub,
.brand-card,
.cli-partners .eyebrow,
.cli-partners .cli-section-title,
.cli-partners .cli-section-sub,
.partners-panel {
  opacity: 0;
  animation: slideInFromRight 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.svc-hero-eyebrow { animation-delay: 0.06s; }
.svc-hero-title { animation-delay: 0.16s; }
.svc-hero-lead { animation-delay: 0.28s; }
.svc-overview-content > *:nth-child(1) { animation-delay: 0.12s; }
.svc-overview-content > *:nth-child(2) { animation-delay: 0.22s; }
.svc-overview-content > *:nth-child(3) { animation-delay: 0.32s; }
.svc-overview-list li:nth-child(1) { animation-delay: 0.22s; }
.svc-overview-list li:nth-child(2) { animation-delay: 0.32s; }
.svc-overview-list li:nth-child(3) { animation-delay: 0.42s; }
.svc-overview-list li:nth-child(4) { animation-delay: 0.52s; }
.svc-areas .eyebrow { animation-delay: 0.12s; }
.svc-area-card:nth-child(1) { animation-delay: 0.2s; }
.svc-area-card:nth-child(2) { animation-delay: 0.3s; }
.svc-area-card:nth-child(3) { animation-delay: 0.4s; }
.svc-area-card:nth-child(4) { animation-delay: 0.5s; }
.svc-iso-card { animation-delay: 0.16s; }
.svc-iso-badge:nth-child(1) { animation-delay: 0.28s; }
.svc-iso-badge:nth-child(2) { animation-delay: 0.38s; }
.svc-iso-badge:nth-child(3) { animation-delay: 0.48s; }
.svc-iso-note { animation-delay: 0.58s; }
.svc-orgs { animation-delay: 0.24s; }

.cli-hero-content > *:nth-child(1) { animation-delay: 0.06s; }
.cli-hero-content > *:nth-child(2) { animation-delay: 0.16s; }
.cli-hero-content > *:nth-child(3) { animation-delay: 0.28s; }
.cli-hero-card { animation-delay: 0.22s; }
.cli-brands .cli-section-title { animation-delay: 0.1s; }
.cli-brands .cli-section-sub { animation-delay: 0.2s; }
.brand-card:nth-child(1) { animation-delay: 0.26s; }
.brand-card:nth-child(2) { animation-delay: 0.34s; }
.brand-card:nth-child(3) { animation-delay: 0.42s; }
.brand-card:nth-child(4) { animation-delay: 0.5s; }
.brand-card:nth-child(5) { animation-delay: 0.58s; }
.brand-card:nth-child(6) { animation-delay: 0.66s; }
.brand-card-wide { animation-delay: 0.32s; }
.cli-partners .eyebrow { animation-delay: 0.12s; }
.cli-partners .cli-section-title { animation-delay: 0.22s; }
.cli-partners .cli-section-sub { animation-delay: 0.32s; }
.partners-panel { animation-delay: 0.42s; }

.svc-area-photo,
.brand-logo img,
.partner-logo img {
  transition: transform 0.3s ease;
}

.svc-area-card:hover .svc-area-photo,
.brand-card:hover .brand-logo img,
.partner-logo:hover img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .svc-hero-eyebrow,
  .svc-hero-title,
  .svc-hero-lead,
  .svc-overview-content > *,
  .svc-overview-list li,
  .svc-areas .eyebrow,
  .svc-area-card,
  .svc-iso-card,
  .svc-iso-badge,
  .svc-iso-note,
  .svc-orgs,
  .cli-hero-content > *,
  .cli-hero-card,
  .cli-brands .cli-section-title,
  .cli-brands .cli-section-sub,
  .brand-card,
  .cli-partners .eyebrow,
  .cli-partners .cli-section-title,
  .cli-partners .cli-section-sub,
  .partners-panel,
  .contact-eyebrow,
  .contact-hero h1,
  .contact-hero-lead,
  .whatsapp-card,
  .contact-care-card,
  .contact-form-card,
  .contact-closing-inner > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Clientes CTA (single-line variant) */
.cli-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cli-cta-lead { color: #dce8da; font-size: 15px; margin: 8px 0 0; }

/* CTA band */
.svc-cta {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  padding: 56px 0;
}
.svc-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.svc-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(10,26,15,0.75) 0%, rgba(10,26,15,0.45) 45%, rgba(10,26,15,0.25) 100%);
}

.svc-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.svc-cta-title { color: var(--white); font-size: 36px; line-height: 1.2; margin: 0; }

.svc-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.svc-cta-btn {
  background: #eab84e;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 10px;
}
.svc-cta-btn:hover { background: #e0a833; }
.svc-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
  font-size: 24px;
}
.svc-cta-phone svg { color: #6fcf7d; width: 26px; height: 26px; }

.svc-cta-tag {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,0.25);
}
.svc-cta-tag p {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #c7d3c5;
  margin: 0 0 14px;
}
.svc-cta-tag .dash-accent { background: var(--gold-accent); margin: 0; }

/* Contact page */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 12px;
  background: linear-gradient(135deg, #ffffff 0%, #fbfcf8 65%, #f2f6eb 100%);
}
.contact-leaf,
.contact-card-leaf {
  position: absolute;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none'%3E%3Cg stroke='%237b9b6e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 56C6 42 14 22 33 18C48 15 62 15 69 7C70 37 61 65 28 63'/%3E%3Cpath d='M13 73C24 52 39 38 54 27'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
}
.contact-leaf { width: 290px; height: 290px; right: 5%; top: 22px; opacity: 0.12; }
.contact-eyebrow { display: flex; align-items: center; gap: 14px; color: #b68123; letter-spacing: 5px; }
.contact-eyebrow .dash-accent { margin: 0; background: var(--gold-accent); }
.contact-hero h1 { max-width: 790px; font-size: 56px; line-height: 1.04; margin: 12px 0 12px; }
.contact-hero-lead { max-width: 820px; color: #647184; font-size: 20px; line-height: 1.45; margin: 0; }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 22px; margin-top: 28px; align-items: stretch; }
.contact-aside { display: grid; gap: 18px; }
.whatsapp-card { position: relative; overflow: hidden; min-height: 278px; padding: 30px 34px; border-radius: 14px; background: linear-gradient(135deg, #0e422b 0%, #072e20 100%); color: #ffffff; }
.contact-card-leaf { width: 190px; height: 190px; right: -24px; bottom: -28px; opacity: 0.23; filter: brightness(0) saturate(100%) invert(35%) sepia(34%) saturate(720%) hue-rotate(84deg); }
.whatsapp-card-heading { position: relative; z-index: 1; display: flex; align-items: center; gap: 18px; }
.whatsapp-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border: 2px solid var(--gold-accent); border-radius: 50%; color: var(--gold-accent); }
.whatsapp-icon svg { width: 40px; height: 40px; }
.whatsapp-card h2 { color: #ffffff; font-size: 29px; line-height: 1.04; margin: 0; }
.whatsapp-card p { position: relative; z-index: 1; max-width: 310px; color: #d1e2d2; font-size: 16px; line-height: 1.35; margin: 18px 0 12px 98px; }
.whatsapp-card strong { position: relative; z-index: 1; display: block; font-size: 32px; color: #ffffff; }
.whatsapp-email { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; width: fit-content; max-width: 100%; margin-top: 10px; padding: 9px 12px; border: 1px solid rgba(255,255,255,0.16); border-radius: 9px; background: rgba(255,255,255,0.08); color: #f2f8f1; font-size: 13px; line-height: 1.25; transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }
.whatsapp-email span:last-child { display: grid; gap: 2px; overflow-wrap: anywhere; }
.whatsapp-email small { color: #b8d4bc; font-size: 10px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.whatsapp-email-icon { display: inline-flex; flex: 0 0 30px; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(225, 175, 76, 0.18); color: #edbf66; }
.whatsapp-email-icon svg { width: 16px; height: 16px; }
.whatsapp-email:hover { color: #ffffff; background: rgba(255,255,255,0.14); border-color: rgba(225,175,76,0.58); transform: translateX(3px); }
.whatsapp-btn { position: relative; z-index: 1; display: inline-flex; margin-top: 16px; background: linear-gradient(135deg, #e1af4c, #bd8425); color: #ffffff; padding: 13px 28px; }
.contact-care-card { padding: 26px 34px; border-radius: 14px; background: linear-gradient(145deg, #fafcf6, #eef4e9); }
.contact-care-card h2 { font-size: 27px; line-height: 1.1; margin: 0 0 16px; }
.contact-care-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact-care-card li { display: flex; align-items: center; gap: 16px; font-family: var(--font-heading); font-size: 17px; color: #365044; }
.contact-icon { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 50px; width: 50px; height: 50px; border: 1.5px solid var(--gold-accent); border-radius: 50%; color: var(--gold-accent); }
.contact-icon svg { width: 26px; height: 26px; }
.contact-form-card { padding: 30px; border: 1px solid #e2e6e0; border-radius: 14px; background: rgba(255,255,255,0.92); box-shadow: 0 8px 22px rgba(16, 47, 27, 0.06); }
.contact-form-card h2 { font-size: 34px; margin: 0 0 2px; }
.contact-form-card > p { margin: 0 0 20px; color: #6d7787; font-size: 17px; }
.contact-form-card form { display: grid; gap: 14px; }
.contact-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 18px; }
.contact-form-card label { display: grid; gap: 7px; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.contact-form-card b,
.contact-form-note b { color: #d85e45; }
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea { width: 100%; border: 1px solid #ccd5df; border-radius: 8px; padding: 13px 15px; background: #ffffff; color: var(--text-dark); font: inherit; font-size: 14px; font-weight: 400; outline: none; }
.contact-form-card textarea { resize: vertical; min-height: 98px; }
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus { border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(56, 142, 78, 0.12); }
.contact-form-note { display: flex; justify-content: space-between; gap: 20px; color: #6d7787; font-size: 12px; }
.contact-submit { width: 100%; justify-content: center; padding: 15px 24px; background: linear-gradient(135deg, #dfad4b, #bd8425); color: #ffffff; font-size: 16px; }
.contact-closing { padding: 28px 0; background: linear-gradient(90deg, #eff5e9, #f7faf4); }
.contact-closing-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact-closing .dash-accent { background: var(--gold-accent); margin-bottom: 8px; }
.contact-closing h2 { margin: 0; font-size: 32px; }
.contact-closing p { margin: 0; padding-left: 56px; border-left: 2px solid var(--gold-accent); color: #637182; font-size: 17px; line-height: 1.45; }
.contact-page .site-footer { background: #ffffff; color: var(--text-dark); border-top: 1px solid #e6ebe3; }
.contact-page .footer-brand strong { color: var(--green-dark); }
.contact-page .footer-brand small,
.contact-page .footer-tagline { color: #728276; }
.contact-page .footer-nav a { color: #465b4b; }
.contact-page .footer-nav a:hover { color: var(--green-primary-dark); }
.contact-page .footer-nav a:not(:last-child) { border-color: #dbe2d9; }

/* Contact page interactions */
.contact-eyebrow,
.contact-hero h1,
.contact-hero-lead,
.whatsapp-card,
.contact-care-card,
.contact-form-card,
.contact-closing-inner > * {
  opacity: 0;
  animation: slideInFromRight 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.contact-eyebrow { animation-delay: 0.05s; }
.contact-hero h1 { animation-delay: 0.14s; }
.contact-hero-lead { animation-delay: 0.24s; }
.whatsapp-card { animation-delay: 0.34s; }
.contact-care-card { animation-delay: 0.44s; }
.contact-form-card { animation-delay: 0.28s; }
.contact-closing-inner > *:first-child { animation-delay: 0.14s; }
.contact-closing-inner > *:last-child { animation-delay: 0.26s; }

.whatsapp-card,
.contact-care-card,
.contact-form-card {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.whatsapp-card:hover,
.contact-care-card:hover,
.contact-form-card:hover {
  box-shadow: 0 14px 32px rgba(16, 61, 34, 0.13);
}
.whatsapp-btn,
.contact-submit { transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease; }
.whatsapp-btn:hover,
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(100, 63, 12, 0.23); filter: brightness(1.04); }

@media (prefers-reduced-motion: reduce) {
  .contact-eyebrow,
  .contact-hero h1,
  .contact-hero-lead,
  .whatsapp-card,
  .contact-care-card,
  .contact-form-card,
  .contact-closing-inner > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Footer */
.site-footer {
  background: #0f2417;
  color: #b7c6ba;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 28px 48px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo-icon { width: 54px; height: auto; }
.footer-brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
}
.footer-brand small {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #8ea391;
  margin-top: 2px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.footer-nav a { color: #dce8da; }
.footer-nav a:hover { color: var(--white); }
.footer-nav a:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.18); padding-right: 16px; }
.footer-tagline { text-align: right; font-size: 13.5px; color: #8ea391; margin: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  font-size: 12.5px;
  color: #8ea391;
}
.footer-bottom-inner p { margin: 0; color: #8ea391; }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-inner { grid-template-columns: 0.6fr 1fr 1fr; }
  .founder-quote { grid-column: 1 / -1; border-left: none; border-top: 1px solid var(--border-light); padding: 16px 0 0; }

  .essence-inner { grid-template-columns: 1fr; }
  .essence-cards { grid-template-columns: repeat(3, 1fr); }

  .svc-overview-inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-iso-inner { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .container { padding: 0 24px; }
  .header-inner {
    min-height: 64px;
    gap: 8px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .logo-placeholder {
    gap: 8px;
    padding: 2px 0;
  }
  .logo-placeholder::after { display: none; }
  .logo-icon { width: 42px; }
  .logo-text { gap: 2px; }
  .logo-text strong { font-size: 18px; letter-spacing: -0.35px; }
  .logo-text small { display: none; }
  .menu-toggle {
    display: flex;
    flex: 0 0 36px;
    align-items: flex-end;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--border-light);
    display: none;
  }
  .main-nav.open { display: flex; }

  .header-cta { display: none; }

  .hero { min-height: 420px; padding: 24px 0 26px; }
  .hero .hero-bg-photo { object-position: 68% 46%; }
  .hero .hero-overlay { background: linear-gradient(180deg, rgba(10,26,15,0.35) 0%, rgba(10,26,15,0.55) 45%, rgba(10,26,15,0.9) 100%); }
  .hero-content h1 { font-size: 26px; }
  .hero-caption { position: static; text-align: left; max-width: none; margin-top: 16px; }

  .about-hero { aspect-ratio: auto; min-height: 480px; padding: 24px 0 26px; align-items: flex-start; overflow: visible; }
  .about-hero .hero-bg-photo { object-position: 65% 10%; }
  .about-hero .hero-overlay { background: linear-gradient(180deg, rgba(10,26,15,0.1) 0%, rgba(10,26,15,0.05) 40%, rgba(10,26,15,0.25) 100%); }
  .about-hero-figure { height: 82%; bottom: -28px; }

  .about-hero-content {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 22px;
    border-radius: 14px;
    margin-top: 18px;
  }

  .about-title { font-size: 24px; color: var(--text-dark); }
  .about-title span { color: var(--green-primary-dark); }
  .about-eyebrow { color: var(--green-primary-dark); }
  .about-lead { color: var(--text-muted); }
  .about-lead strong { color: var(--text-dark); }

  .about-hero .about-btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--border-light);
  }
  .about-hero .about-btn-secondary:hover { border-color: var(--green-primary); background: var(--white); }

  .about-caption p { color: var(--text-dark); text-shadow: none; }

  .highlights-grid { grid-template-columns: 1fr; }

  .services-header { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }

  .founder-inner { grid-template-columns: 1fr; }
  .founder-checklist,
  .founder-quote {
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding-left: 0;
    padding-top: 16px;
  }

  .essence-cards { grid-template-columns: 1fr; }

  .svc-hero { aspect-ratio: auto; min-height: 420px; padding: 48px 0; }
  .svc-hero .hero-bg-photo { object-position: 82% 8%; }
  .svc-hero-title { font-size: 32px; }
  .svc-hero-lead { font-size: 15px; }
  .svc-overview { padding: 42px 0; }
  .svc-overview-inner { gap: 28px; }
  .svc-overview-content h2 { font-size: 32px; }
  .svc-overview-content p { font-size: 15px; }
  .svc-overview-list {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--border-light);
    gap: 14px;
  }
  .svc-overview-list li { gap: 12px; font-size: 17px; }
  .svc-areas { padding: 16px 0 36px; }
  .svc-areas-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-area-card { aspect-ratio: 16 / 10; }
  .svc-area-text { padding: 18px; }
  .svc-area-text h3 { font-size: 20px; }
  .svc-area-text p { font-size: 13.5px; }
  .svc-iso { padding: 16px 0 40px; }
  .svc-iso-inner { gap: 20px; margin-bottom: 26px; }
  .svc-iso-card-content { padding: 28px 24px; }
  .svc-iso-card-content h2 { font-size: 26px; }
  .svc-iso-badges { gap: 18px; }
  .svc-orgs-list { justify-content: flex-start; gap: 10px 18px; font-size: 15px; }
  .svc-orgs-list span:not(:last-child)::after { margin-left: 18px; }

  .svc-cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .svc-cta-title { font-size: 24px; }
  .svc-cta-tag { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.25); padding-top: 20px; }

  .contact-hero { padding-top: 32px; }
  .contact-leaf { width: 180px; height: 180px; right: -32px; top: 12px; }
  .contact-eyebrow { letter-spacing: 3px; }
  .contact-hero h1 { font-size: 36px; }
  .contact-hero-lead { font-size: 17px; }
  .contact-layout,
  .contact-closing-inner { grid-template-columns: 1fr; gap: 20px; }
  .contact-form-card,
  .whatsapp-card,
  .contact-care-card { padding: 24px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-card h2 { font-size: 28px; }
  .contact-form-note { flex-direction: column; gap: 6px; }
  .contact-closing p { padding: 16px 0 0; border-left: none; border-top: 2px solid var(--gold-accent); }

  .footer-main { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .footer-tagline { text-align: center; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; padding: 16px 24px; }

  .cli-hero { padding: 38px 0 32px; }
  .cli-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .cli-hero-content h1 { font-size: 32px; }
  .cli-hero-card { padding: 22px 24px; }
  .cli-pillars { gap: 18px; }
  .cli-pillars li { gap: 16px; font-size: 18px; }
  .cli-pillars li:not(:last-child) { padding-bottom: 18px; }
  .cli-pillar-icon { width: 46px; height: 46px; }
  .cli-brands,
  .cli-partners { padding: 42px 0; }
  .cli-section-title { font-size: 28px; }
  .cli-section-sub { font-size: 15px; margin-bottom: 24px; }
  .cli-brands-grid { grid-template-columns: 1fr; gap: 16px; }
  .brand-card { padding: 20px; }
  .brand-logo { height: 100px; margin-bottom: 14px; }
  .brand-card-wide { grid-template-columns: 1fr; gap: 16px; }
  .brand-card-wide-text { border-left: none; border-top: 1px solid var(--border-light); padding-left: 0; padding-top: 16px; }
  .partners-panel { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 20px; margin-top: 22px; }
  .partner-logo { height: 74px; }
  .cli-cta-inner { flex-direction: column; align-items: flex-start; }
}
