/* ══════════════════════════════════════════════════════════
   GRUPO PECUS — style.css
   Paleta:
     --green:  #437656   (Pantone 5545 C)
     --orange: #e58927   (Pantone 158 C)
     --dark:   #312825   (Pantone Black 4 C)
     --gray:   #272727   (Pantone Black 3 C)
     --cream:  #f6f9ea   (Pantone 7541 C)
   Tipografia: Sora (300 / 400 / 600 / 700 / 800)
══════════════════════════════════════════════════════════ */

/* ─── RESET & CUSTOM PROPERTIES ─────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Sora", sans-serif;
  color: #312825;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

:root {
  --green: #437656;
  --orange: #e58927;
  --dark: #312825;
  --gray: #272727;
  --cream: #f6f9ea;
  --white: #ffffff;
  --nav-h: 72px;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(49, 40, 37, 0.1);
  --shadow-md: 0 16px 48px rgba(49, 40, 37, 0.14);
}

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-32 {
  margin-top: 32px;
}
.bg-white {
  background: var(--white);
}
.bg-cream {
  background: var(--cream);
}
.bg-dark {
  background: var(--dark);
}
.bg-green {
  background: var(--green);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: #c9761e;
  box-shadow: 0 6px 20px rgba(229, 137, 39, 0.35);
}
.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover {
  background: #336148;
  box-shadow: 0 6px 20px rgba(67, 118, 86, 0.35);
}
.btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  padding: 12px 32px;
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.btn--outline-light {
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 12px 32px;
}
.btn--outline-light:hover {
  background: var(--dark);
  color: var(--white);
}
.btn--lg {
  padding: 18px 40px;
  font-size: 13px;
}
.btn--full {
  width: 100%;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--nav-h);
  position: relative;
}
.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}
.logo-img--footer {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  margin-top: 20px;
}

/* Nav desktop */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: absolute;
  left: 55%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(246, 249, 234, 0.7);
  padding: 8px 14px;
  border-radius: 4px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
}
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  margin-left: 8px;
}
.nav-cta:hover {
  background: #c9761e !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  background: var(--gray);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mnav-link {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(246, 249, 234, 0.75);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background 0.2s,
    color 0.2s;
}
.mnav-link:hover,
.mnav-link.active {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
}

/* ─── PAGE OFFSET ────────────────────────────────────────── */
.hero {
  padding-top: 0;
}
.page-hero {
  padding-top: var(--nav-h);
}
section {
  scroll-margin-top: var(--nav-h);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(49, 40, 37, 0.85) 0%,
    rgba(67, 118, 86, 0.3) 100%
  );
}
.hero-slide--1 {
  background-image: url("/images/output_16_9_2.jpg");
}
.hero-slide--2 {
  background-image: url("/images/Carrosel.jpeg");
}
.hero-slide--3 {
  background-image: url("/images/output_16_9_1.jpg");
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 860px;
  width: 100%;
}
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 100px;
  padding: 6px 20px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}
.hero-dot.is-active {
  background: var(--orange);
  transform: scale(1.4);
}

/* ─── STRIP ──────────────────────────────────────────────── */
.strip {
  background: var(--green);
  display: flex;
  flex-wrap: wrap;
}
.strip-item {
  flex: 1 1 180px;
  text-align: center;
  padding: 36px 28px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.strip-item:last-child {
  border-right: none;
}
.strip-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.strip-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ─── SECTION COMMON ─────────────────────────────────────── */
.section {
  padding: 96px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-body {
  margin: 0 auto;
}
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title--light {
  color: var(--white);
}
.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 600px;
}
.section-body--light {
  color: rgba(246, 249, 234, 0.78);
}

/* ─── TWO-COL LAYOUT ─────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col--reverse .two-col__visual {
  order: -1;
}

/* ─── VISUAL CARD ────────────────────────────────────────── */
.visual-card {
  position: relative;
}
.visual-card__img {
  width: 100%;
  height: 460px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.visual-card__img--green {
  background: linear-gradient(135deg, var(--green) 0%, #2a5c3f 100%);
}
.visual-card__img--dark {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0e0b 100%);
}
.brand-watermark {
  width: 840px;
  height: auto;
  opacity: 0.22;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.brand-watermark--lg {
  width: 800px;
  height: auto;
  opacity: 0.18;
  object-fit: contain;
}
.visual-card__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(229, 137, 39, 0.4);
  text-align: center;
}
.visual-card__badge strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.visual-card__badge span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ─── CHIP ───────────────────────────────────────────────── */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: var(--white);
  border: 1px solid rgba(67, 118, 86, 0.25);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 7px 14px;
  border-radius: 100px;
}

/* ─── OP CARDS (home) ────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.op-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.op-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.op-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.op-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(49, 40, 37, 0.5) 0%,
    transparent 60%
  );
}
.op-card__img--1 {
  background-image: url("/images/pecuaria.jpeg");
}
.op-card__img--2 {
  background-image: url("/images/output_16_9_2.jpg");
}
.op-card__img--3 {
  background-image: url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=600&q=70");
}
.op-card__img--4 {
  background-image: url("/images/desenvolvimento humano.jpeg");
}
.op-card__icon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: var(--orange);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.op-card__body {
  padding: 24px;
}
.op-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.op-card__text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
}
.op-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  transition: gap 0.2s;
}
.op-card__link:hover {
  gap: 10px;
}

/* ─── ESG BANNER ─────────────────────────────────────────── */
.esg-banner {
  background: var(--dark);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.esg-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/output_16_9_1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.esg-banner .container {
  position: relative;
  z-index: 1;
}
.esg-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.esg-pillar {
  border-radius: 8px;
  padding: 20px 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}
.esg-pillar:hover {
  background: rgba(255, 255, 255, 0.07);
}
.esg-pillar--green {
  border-left: 4px solid var(--green);
}
.esg-pillar--orange {
  border-left: 4px solid var(--orange);
}
.esg-pillar--cream {
  border-left: 4px solid var(--cream);
}
.esg-pillar strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.esg-pillar p {
  font-size: 0.875rem;
  font-weight: 300;
  opacity: 0.8;
}

/* ─── NUM GRID ────────────────────────────────────────────── */
.num-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.num-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.num-card:hover {
  transform: translateY(-4px);
}
.num-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.num-val sup {
  font-size: 1rem;
  color: var(--orange);
}
.num-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

/* ─── QUOTE ──────────────────────────────────────────────── */
.quote-section {
  background: var(--green);
  padding: 72px 24px;
  text-align: center;
}
.quote-text {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.quote-text em {
  font-style: normal;
  color: var(--orange);
}
.quote-cite {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(246, 249, 234, 0.65);
}

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 80px 24px;
  text-align: center;
}
.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(246, 249, 234, 0.7);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 24px 72px;
}
.page-hero--green {
  background: var(--green);
}
.page-hero--dark {
  background: var(--dark);
}
.page-hero .container {
  max-width: 1160px;
  margin: 0 auto;
}
.page-hero__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  display: block;
}
.page-hero__tag a {
  transition: opacity 0.2s;
}
.page-hero__tag a:hover {
  opacity: 1;
}
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── HIGHLIGHT BOX ──────────────────────────────────────── */
.highlight-box {
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  padding: 24px 28px;
}
.highlight-box--orange {
  border-left-color: var(--orange);
}
.highlight-box__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.highlight-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.highlight-box p {
  font-size: 0.875rem;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
}

/* ─── SLOGAN ─────────────────────────────────────────────── */
.slogan-section {
  background: var(--orange);
  padding: 56px 24px;
  text-align: center;
}
.slogan-text {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
}
.slogan-text em {
  font-style: normal;
  color: var(--dark);
}

/* ─── VALUES GRID ────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.value-card:hover {
  transform: translateY(-4px);
}
.value-card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.value-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card__text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
}

/* ─── OPS GRID (operações page) ──────────────────────────── */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 32px;
}
.ops-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.ops-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.ops-card__img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.ops-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(49, 40, 37, 0.6) 0%,
    transparent 60%
  );
}
.ops-card__img--1 {
  background-image: url("/images/pecuaria.jpeg");
}
.ops-card__img--2 {
  background-image: url("/images/output_16_9_2.jpg");
}
.ops-card__img--3 {
  background-image: url("/images/desenvolvimento humano.jpeg");
}
.ops-card__img--4 {
  background-image: url("/images/desenvolvimento humano.jpeg");
}
.ops-card__icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}
.ops-card__body {
  padding: 28px;
}
.ops-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.ops-card__sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.ops-card__text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
  margin-bottom: 16px;
}
.ops-card__pontos {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.ops-card__pontos li {
  font-size: 0.875rem;
  color: #555;
  padding-left: 16px;
  position: relative;
}
.ops-card__pontos li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ─── PONTOS BOX (detalhe operação) ─────────────────────── */
.pontos-box {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 36px;
}
.pontos-box__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.pontos-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pontos-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 400;
}
.pontos-list__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ─── ESG PAGE ───────────────────────────────────────────── */
.esg-big-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
  font-size: 8rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.pillar-card {
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
}
.pillar-card--green {
  background: var(--green);
}
.pillar-card--orange {
  background: var(--orange);
}
.pillar-card--dark {
  background: var(--dark);
}
.pillar-card__letter {
  font-size: 3rem;
  font-weight: 800;
  opacity: 0.25;
  margin-bottom: 12px;
  line-height: 1;
}
.pillar-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pillar-card__text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 20px;
}
.pillar-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-card__list li {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.85;
  padding-left: 16px;
  position: relative;
}
.pillar-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
}
.practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.practice-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.practice-item__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.practice-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.practice-item p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: #666;
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 64px;
  align-items: start;
}
.contact-grid--map {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.contact-map {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.contact-info__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.info-item__icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.info-item__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
  display: block;
}
.info-item__val {
  font-size: 0.95rem;
  font-weight: 600;
}
.info-item__val a {
  transition: color 0.2s;
}
.info-item__val a:hover {
  color: var(--green);
}
.info-item small {
  font-size: 0.8rem;
  font-weight: 300;
  color: #888;
}
.contact-map {
  margin-top: 32px;
}
.contact-map__placeholder {
  background: var(--white);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #888;
  box-shadow: var(--shadow);
}
.contact-map__placeholder span {
  font-size: 3rem;
}
.contact-map__placeholder p {
  font-size: 0.9rem;
  font-weight: 400;
}

/* ─── FORM ────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dde3d0;
  border-radius: 8px;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(67, 118, 86, 0.12);
}
.form-group textarea {
  height: 140px;
  resize: vertical;
}
.alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.alert--success {
  background: rgba(67, 118, 86, 0.1);
  border: 1px solid var(--green);
  color: #2a5c3f;
}
.alert--error {
  background: rgba(229, 137, 39, 0.1);
  border: 1px solid var(--orange);
  color: #8a4e10;
}
.alert strong {
  display: block;
  margin-bottom: 6px;
}
.alert ul {
  padding-left: 20px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(246, 249, 234, 0.55);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 249, 234, 0.7);
  transition:
    background 0.2s,
    color 0.2s;
}
.social-btn svg {
  width: 16px;
  height: 16px;
}
.social-btn:hover {
  background: var(--green);
  color: var(--white);
}
.footer-col {
}
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(246, 249, 234, 0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--cream);
}
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-inner {
  display: contents;
}
.footer-bottom p {
  font-size: 11px;
  font-weight: 300;
  color: rgba(246, 249, 234, 0.35);
}

.sobre-texto {
  max-width: 800px;
  margin: 0 auto;
}
.sobre-texto .section-body {
  max-width: 100%;
}

/* ─── PRIVACY PAGE ─────────────────────────────────────────────── */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-content > .section-body {
  margin-bottom: 40px;
}
.privacy-section {
  margin-bottom: 40px;
}
.privacy-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
}
.privacy-section p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}
.privacy-section ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.privacy-section ul li {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
  padding-left: 20px;
  position: relative;
}
.privacy-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.privacy-section a {
  color: var(--green);
  font-weight: 600;
  transition: color 0.2s;
}
.privacy-section a:hover {
  color: var(--orange);
}

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(229, 137, 39, 0.4);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.back-top.is-visible {
  opacity: 1;
  pointer-events: all;
}
.back-top:hover {
  transform: translateY(-3px);
}

/* ─── LOGO LIGHT VARIANT ─────────────────────────────────── */
.logo--light .logo-grupo,
.logo--light .logo-nome {
  color: var(--cream);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .two-col,
  .two-col--reverse .two-col__visual {
    grid-template-columns: 1fr;
  }
  .two-col--reverse .two-col__visual {
    order: 0;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid--map {
    grid-template-columns: 1fr;
  }
  .contact-map,
  .contact-map iframe {
    min-height: 300px;
  }
  .ops-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 64px 20px;
  }
  .page-hero {
    padding: calc(var(--nav-h) + 48px) 20px 48px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .num-grid {
    grid-template-columns: 1fr 1fr;
  }
  .strip-item {
    flex: 1 1 150px;
  }
  .visual-card__badge {
    right: 0;
  }
}





