/* ===== JCC AGROPECUÁRIA - MAIN STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  --orange: #E8490F;
  --orange-light: #FF5A1F;
  --orange-dark: #C03A0A;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-mid: #1A1A1A;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --white: #F5F2ED;
  --cream: #FAF8F4;
  --text: #1C1C1C;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,73,15,0.3);
  height: 60px;
}

.nav-logo img {
  height: 42px;
  transition: height 0.4s;
}

#navbar.scrolled .nav-logo img { height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links .btn-sistema {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background 0.2s !important;
  margin-left: 8px;
}

.nav-links .btn-sistema:hover { background: var(--orange-dark) !important; }
.nav-links .btn-sistema::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 0.1s;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.75) 0%,
    rgba(10,10,10,0.45) 50%,
    rgba(232,73,15,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.9;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 2px;
}

.hero h1 span { color: var(--orange); }

.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { opacity: 0.5; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--orange);
  padding: 0;
  overflow: hidden;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

/* New strip layout */
.stats-inner-new {
  display: flex;
  align-items: center;
  height: 100px;
}

.stat-item-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.stat-fazenda {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.stat-fazenda img {
  height: 62px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.stat-location {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 50px;
  color: #fff;
  flex-shrink: 0;
}

.stat-location svg { opacity: 0.8; flex-shrink: 0; }

.stat-location-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  line-height: 1;
}

.stat-location-sub {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number-animated {
  font-family: var(--font-display);
  font-size: 52px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ===== SECTIONS ===== */
section { padding: 100px 80px; }

.section-tag {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--dark);
}

.section-title.light { color: #fff; }

/* ===== CULTURAS ===== */
.culturas {
  background: var(--dark);
  padding: 100px 80px;
}

.culturas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

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

.cultura-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.cultura-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cultura-card:hover img { transform: scale(1.08); }

.cultura-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: all 0.3s;
}

.cultura-card:hover .cultura-card-overlay {
  background: linear-gradient(to top, rgba(232,73,15,0.8) 0%, transparent 70%);
}

.cultura-nome {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  letter-spacing: 2px;
}

.cultura-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
  line-height: 1.6;
}

.cultura-card:hover .cultura-desc { max-height: 100px; }

/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 60px 80px;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 100px);
  color: #fff;
  line-height: 0.9;
  letter-spacing: 2px;
}

.page-header .breadcrumb {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-header .breadcrumb a { color: var(--orange); text-decoration: none; }

/* ===== HISTORIA ===== */
.historia-section {
  background: var(--cream);
  padding: 100px 80px;
}

.historia-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.historia-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.historia-text p:first-child {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
}

.historia-image {
  position: relative;
}

.historia-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.historia-image::before {
  content: '';
  position: absolute;
  top: -15px; right: -15px;
  bottom: 15px; left: 15px;
  border: 3px solid var(--orange);
  z-index: -1;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 0 0 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 60px;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content { order: 3; }
.timeline-item:nth-child(even) .timeline-empty { order: 1; }

.timeline-content {
  padding: 30px;
  background: #fff;
  border-left: 4px solid var(--orange);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.timeline-item:nth-child(even) .timeline-content {
  border-left: none;
  border-right: 4px solid var(--orange);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.timeline-dot {
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 0 4px rgba(232,73,15,0.2);
  position: relative;
  z-index: 1;
}

.timeline-empty {}

/* Timeline photo */
.timeline-photo {
  margin-top: 6px;
}

.timeline-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 12px;
  border: 3px solid transparent;
  transition: border-color 0.3s;
}

.timeline-photo img:hover { border-color: var(--orange); }

/* Missão e Valores */
.missao-section {
  background: var(--dark);
  padding: 100px 80px;
}

.missao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 60px;
}

.missao-card {
  padding: 50px 40px;
  background: var(--dark-mid);
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.missao-card:hover { border-top-color: var(--orange); transform: translateY(-4px); }

.missao-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  color: var(--orange);
}

.missao-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.missao-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

/* ===== VAGAS ===== */
.vagas-section {
  background: var(--cream);
  padding: 80px 80px;
}

.vagas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.vaga-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.vaga-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: top;
}

.vaga-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.vaga-card:hover::before { transform: scaleY(1); }

.vaga-area {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.vaga-titulo {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.vaga-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.vaga-tag {
  font-size: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(0,0,0,0.15);
  color: #666;
  border-radius: 2px;
  font-family: var(--font-condensed);
  letter-spacing: 0.5px;
}

.vaga-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
}

.vaga-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.vaga-btn:hover { background: var(--orange-dark); }

/* Modal currículo */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.active { display: flex; }

.modal {
  background: #fff;
  width: 100%;
  max-width: 560px;
  padding: 48px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--orange); }

.modal h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 8px;
}

.modal .vaga-area { margin-bottom: 24px; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }

.form-group textarea { resize: vertical; min-height: 100px; }

.file-upload-area {
  border: 2px dashed rgba(0,0,0,0.2);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--cream);
}

.file-upload-area:hover { border-color: var(--orange); background: rgba(232,73,15,0.03); }

.file-upload-area p { font-size: 14px; color: #888; }
.file-upload-area strong { color: var(--orange); }

.no-vagas {
  text-align: center;
  padding: 80px 40px;
  color: #888;
  font-size: 17px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}

.no-vagas strong { display: block; font-size: 24px; color: var(--dark); margin-bottom: 8px; font-family: var(--font-condensed); }

/* ===== PROGRAMAS SOCIAIS ===== */
.social-section {
  background: var(--cream);
  padding: 100px 80px;
}

.social-hero {
  background: var(--dark);
  padding: 80px 80px;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.social-programs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.program-card {
  background: #fff;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

.program-card-header {
  background: var(--dark);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.program-card-header::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(232,73,15,0.15);
}

.program-number {
  font-family: var(--font-display);
  font-size: 60px;
  color: rgba(232,73,15,0.2);
  line-height: 1;
  position: absolute;
  bottom: -10px; right: 20px;
}

.program-icon-wrap {
  width: 52px; height: 52px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.program-icon-wrap svg { color: #fff; }

.program-card-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  letter-spacing: 1px;
}

.program-card-body { padding: 30px; }

.program-card-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.program-items {
  list-style: none;
  margin-top: 16px;
}

.program-items li {
  font-size: 14px;
  color: #555;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.program-items li::before {
  content: '▸';
  color: var(--orange);
  position: absolute;
  left: 0;
}

/* ===== CONTATOS ===== */
.contato-section {
  background: var(--cream);
  padding: 100px 80px;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 60px;
}

.contato-card {
  background: #fff;
  padding: 48px 40px;
  border-top: 4px solid var(--orange);
  transition: transform 0.3s;
}

.contato-card:hover { transform: translateY(-4px); }

.contato-tipo {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.contato-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.contato-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

.contato-item a {
  font-size: 16px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.contato-item a:hover { color: var(--orange); }

.contato-map {
  margin-top: 60px;
  height: 400px;
  background: #ddd;
  position: relative;
  overflow: hidden;
}

.contato-map iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  padding: 60px 80px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--font-body);
}

.footer-col ul li a:hover { color: var(--orange); }

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

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--orange); }

.footer-flags {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-flags img {
  height: 20px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}

.footer-flags img:hover { transform: scale(1.1); }

/* ===== ADMIN ===== */
.admin-section {
  background: var(--cream);
  padding: 80px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.admin-table th {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 20px;
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  text-align: left;
  font-weight: 600;
}

.admin-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
  color: #444;
}

.admin-table tr:hover td { background: rgba(232,73,15,0.03); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  section, .culturas, .missao-section, .social-section, .contato-section { padding: 70px 40px; }
  .hero-content { padding: 0 40px; }
  .culturas-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner-new { flex-wrap: wrap; height: auto; padding: 20px 0; }
  .stat-item-highlight, .stat-fazenda, .stat-location { padding: 16px 30px; }
  .stat-divider { display: none; }
  .missao-grid { grid-template-columns: 1fr 1fr; }
  .historia-intro { grid-template-columns: 1fr; gap: 40px; }
  .contato-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .social-hero { grid-template-columns: 1fr; }
  .social-programs { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section, .culturas, .missao-section, .social-section, .contato-section { padding: 60px 24px; }
  .hero-content { padding: 0 24px; }
  .page-header { padding: 40px 24px; }

  .nav-links { display: none; position: fixed; inset: 0; top: 70px; background: rgba(10,10,10,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 24px; }
  .hamburger { display: flex; }

  .culturas-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner-new { flex-direction: column; padding: 20px; gap: 0; }
  .stat-item-highlight, .stat-fazenda, .stat-location { padding: 14px 20px; width: 100%; justify-content: center; }
  .stat-divider { display: none; }
  .missao-grid, .contato-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 30px; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .timeline-item:nth-child(even) .timeline-content { order: 2; }
  .timeline-item:nth-child(even) .timeline-empty { order: -1; display: none; }
  .timeline-empty { display: none; }
  .timeline-content { border-left: 4px solid var(--orange) !important; border-right: none !important; }
  .timeline-dot { margin: 0; }
  .vagas-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .culturas-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .modal { padding: 32px 24px; }
}
