/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #0d1f0e;
  --green-mid:   #1a3a1c;
  --green-lime:  #7dc420;
  --green-lime2: #9ed63a;
  --green-light: #c8f07a;
  --white:       #ffffff;
  --off-white:   #f4f7f0;
  --gray:        #6b7280;
  --gray-light:  #e5e7eb;
  --text-dark:   #111a0f;
  --text-mid:    #374151;
  --shadow:      0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.18);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.btn-primary {
  background: var(--green-lime);
  color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-lime2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(125,196,32,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 44px; font-size: 1.05rem; }
.btn-full  { width: 100%; justify-content: center; }

/* ===== SECTION HELPERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-eyebrow { color: var(--green-lime); }

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-lime);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--text-dark);
}

.section-divider {
  width: 56px;
  height: 4px;
  background: var(--green-lime);
  border-radius: 2px;
  margin: 18px auto 0;
}
.section-divider.left { margin-left: 0; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(13,31,14,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link { display: flex; align-items: center; gap: 12px; }

.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--green-lime);
  letter-spacing: .04em;
  line-height: 1;
}
.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green-lime); }

.nav-cta {
  background: var(--green-lime) !important;
  color: var(--green-dark) !important;
  padding: 10px 24px;
  border-radius: 50px;
}
.nav-cta:hover {
  background: var(--green-lime2) !important;
  box-shadow: 0 4px 16px rgba(125,196,32,.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
/* ===== HERO v3 – split layout ===== */
#hero {
  display: grid;
  grid-template-columns: 38% 62%;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  overflow: hidden;
}

.accent { color: var(--green-lime); }

/* --- LEFT PANEL --- */
.hero-left {
  grid-column: 1;
  grid-row: 1;
  background: var(--green-dark);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 44px 60px 52px;
  overflow: hidden;
  z-index: 4;
}

.hero-deco-top {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 190px;
  pointer-events: none;
}

.hero-deco-bottom {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 220px;
  pointer-events: none;
}

.hero-plant-icon { width: 100px; margin-bottom: 10px; }

.hero-logo-frame {
  border: 1px solid rgba(125,196,32,.45);
  padding: 10px 18px 13px;
  display: inline-block;
  margin-bottom: 36px;
}

.hero-letters {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  font-weight: 900;
  color: var(--green-lime);
  letter-spacing: .06em;
  line-height: 1;
}

.hero-company-full {
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  margin-top: 7px;
}

.hero-slogan { margin-bottom: 36px; }

.sl-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(.85rem, 1.1vw, 1rem);
  font-weight: 400;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.sl-2, .sl-3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.35;
}

.slogan-rule {
  width: 42px;
  height: 3px;
  background: var(--green-lime);
  margin-top: 14px;
}

.hero-left-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- RIGHT PANELS --- */
.hero-right {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
}

.hero-panel {
  position: absolute;
  top: 0; bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 44px;
}

.panel-1 {
  left: 0;
  width: calc(33.33% + 55px);
  background: url('https://images.unsplash.com/photo-1546365409-ac829ccffccf?w=1200&q=80&fit=crop') center/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 0 100%);
  z-index: 1;
}
.panel-2 {
  left: calc(33.33% - 10px);
  width: calc(33.33% + 65px);
  background: url('desmatacoes.jpeg') center/cover no-repeat;
  clip-path: polygon(55px 0, 100% 0, calc(100% - 55px) 100%, 0 100%);
  z-index: 2;
}
.panel-3 {
  left: calc(66.66% - 10px);
  right: 0;
  width: calc(33.34% + 10px);
  background: url('bermas.jpeg') center/cover no-repeat;
  clip-path: polygon(55px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

.panel-1::before, .panel-2::before, .panel-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15) 30%, rgba(0,0,0,.72) 100%);
}

.panel-service {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

.panel-svc-icon {
  width: 54px; height: 54px;
  border: 2px solid var(--green-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: rgba(0,0,0,.35);
}
.panel-svc-icon svg { width: 26px; height: 26px; }

.panel-service h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.3;
}

.panel-service p {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  line-height: 1.45;
}

/* --- BOTTOM BAR --- */
.hero-bottom {
  grid-column: 1 / -1;
  grid-row: 2;
  background: #061006;
  display: flex;
  align-items: stretch;
  min-height: 62px;
  z-index: 5;
}

.hero-values {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 32px;
}

.hval {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  white-space: nowrap;
}
.hval svg { width: 16px; height: 16px; color: var(--green-lime); flex-shrink: 0; }

.hval-sep { width: 1px; height: 26px; background: rgba(255,255,255,.12); flex-shrink: 0; }

.hero-motto-box {
  background: var(--green-lime);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  min-width: 260px;
}
.hero-motto-box svg { width: 22px; height: 22px; color: var(--green-dark); flex-shrink: 0; }
.hero-motto-box p {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-dark);
  line-height: 1.45;
}
.hero-motto-box strong { font-weight: 900; }

/* ===== VALUES BAR ===== */
.values-bar {
  background: var(--green-lime);
  padding: 20px 0;
}
.values-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.val-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.val-item svg {
  width: 22px;
  height: 22px;
  fill: var(--green-dark);
}

/* ===== SERVIÇOS ===== */
#servicos {
  padding: 100px 0;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  border: 2px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.service-card:hover {
  border-color: var(--green-lime);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  background: var(--green-dark);
  border-color: var(--green-lime);
  transform: scale(1.02);
}
.service-card.featured:hover { transform: scale(1.02) translateY(-6px); }

.service-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--green-lime);
  color: var(--green-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(125,196,32,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card.featured .service-icon {
  background: rgba(125,196,32,.2);
}
.service-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--green-lime);
  stroke: none;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.service-card.featured h3 { color: var(--white); }

.service-card p {
  color: var(--text-mid);
  font-size: .92rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.service-card.featured p { color: rgba(255,255,255,.75); }

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: .88rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--green-lime);
  border-radius: 50%;
}
.service-card.featured .service-list li { color: rgba(255,255,255,.75); }

/* ===== SOBRE NÓS ===== */
#sobre {
  padding: 100px 0;
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sobre-visual { position: relative; }
.sobre-img-stack { position: relative; height: 480px; }

.sobre-img-block {
  position: absolute;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}
.block-1 {
  width: 72%;
  height: 75%;
  top: 0; left: 0;
  background: linear-gradient(135deg, var(--green-mid) 0%, #2d5a30 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.block-1::after { content: '🌿'; }
.block-2 {
  width: 60%;
  height: 60%;
  bottom: 0; right: 0;
  background: linear-gradient(135deg, #1e4020 0%, var(--green-lime) 100%);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.block-2::after { content: '🚜'; }

.sobre-badge-stat {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--green-lime);
  color: var(--green-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sobre-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 8px;
}
.sobre-text p {
  color: var(--text-mid);
  margin-top: 20px;
  line-height: 1.8;
}

.sobre-stats {
  display: flex;
  gap: 32px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--green-lime);
  line-height: 1;
}
.stat-l {
  font-size: .8rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ===== VALORES ===== */
#valores {
  padding: 100px 0;
  background: var(--green-dark);
}

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

.valor-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(125,196,32,.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.valor-card:hover {
  background: rgba(125,196,32,.08);
  border-color: var(--green-lime);
  transform: translateY(-4px);
}

.valor-icon {
  width: 60px;
  height: 60px;
  background: rgba(125,196,32,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.valor-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--green-lime);
}

.valor-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.valor-card p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
#cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-lime) 0%, #5a9e10 100%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-dark);
  font-weight: 900;
}
.cta-text p {
  color: rgba(13,31,14,.75);
  margin-top: 8px;
  font-size: 1rem;
}
#cta-banner .btn-primary {
  background: var(--green-dark);
  color: var(--white);
}
#cta-banner .btn-primary:hover {
  background: #0a1809;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

/* ===== CONTACTO ===== */
#contacto {
  padding: 100px 0;
  background: var(--off-white);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contacto-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.contacto-info > p {
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-lime);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--green-dark);
}
.contact-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}
.contact-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}
a.contact-value:hover { color: var(--green-lime); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--green-lime);
  transform: translateY(-2px);
}
.social-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-btn:hover svg { stroke: var(--green-dark); }

/* FORM */
.contacto-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-lime);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bab8; }

.form-note {
  margin-top: 12px;
  font-size: .78rem;
  color: var(--gray);
  text-align: center;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--green-dark);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--green-lime);
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-legal {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
}

.footer-links h5,
.footer-contact h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-lime);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a,
.footer-contact a,
.footer-contact p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: block;
  margin-bottom: 10px;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--green-lime); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-slogan {
  color: rgba(125,196,32,.5) !important;
  font-style: italic;
  margin-top: 4px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .service-card.featured { transform: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-img-stack { height: 360px; }
  .valores-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(13,31,14,.98);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-top: 1px solid rgba(125,196,32,.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    width: 100%;
    text-align: center;
  }
  .nav-links a:hover { background: rgba(125,196,32,.1); }

  .values-bar-inner { gap: 24px; }
  .sobre-visual { display: none; }
  .sobre-stats { flex-wrap: wrap; gap: 20px; }
  .valores-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
  .contacto-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}
