:root {
  --pg-green: #2e7d32;
  --pg-green-dark: #1b5e20;
  --pg-green-deep: #214f13;
  --pg-orange: #ff8f00;
  --pg-ink: #1c1c1c;
  --pg-muted: #667461;
  --pg-paper: #f9f9f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--pg-ink);
  background: #fff;
}

a {
  text-decoration: none;
}

.pg-topbar {
  background: #f3f3f3;
  border-bottom: 1px solid #eaeaea;
  color: #666;
  font-size: 12px;
}

.pg-topbar .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pg-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  background: #fff;
  border-bottom: 1px solid #ededed;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.pg-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--pg-green) !important;
  font-size: 2rem;
  font-weight: 800;
}

.pg-brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.pg-brand span span {
  color: var(--pg-ink);
  font-weight: 600;
}

.pg-navbar .nav-link {
  margin-left: 8px;
  padding: 12px 18px !important;
  border-radius: 8px;
  color: var(--pg-ink) !important;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.pg-navbar .nav-link:hover,
.pg-navbar .nav-link.active {
  color: #fff !important;
  background: var(--pg-green);
  transform: translateY(-1px);
}

.pg-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  padding: 13px 22px;
  border-radius: 8px;
  background: var(--pg-green-deep);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(33, 79, 19, .22);
  white-space: nowrap;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.pg-nav-cta:hover {
  background: var(--pg-orange);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 143, 0, .24);
}

.pg-hero,
.pg-page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.pg-hero {
  min-height: 78vh;
  background-image: url("../assets/images/imagentractorPF.jpeg");
}

.pg-page-hero {
  min-height: 520px;
  background-image: url("../assets/images/imagencampoPF.png");
}

.pg-hero::before,
.pg-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .36) 48%, rgba(0, 0, 0, .12));
}

.pg-hero-content,
.pg-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 0;
}

.pg-kicker {
  display: block;
  margin-bottom: 16px;
  color: #f1f1f1;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pg-accent-line {
  width: 44px;
  height: 8px;
  margin-bottom: 24px;
  background: var(--pg-orange);
}

.pg-hero-title,
.pg-page-title {
  margin-bottom: 20px;
  color: #fff;
  font-weight: 800;
  line-height: 1.05;
}

.pg-hero-title {
  font-size: clamp(2.45rem, 6vw, 4rem);
}

.pg-page-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
}

.pg-hero-text,
.pg-page-lead {
  max-width: 680px;
  color: #f5f5f5;
  font-size: 1.08rem;
  line-height: 1.8;
}

.pg-hero-actions {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.pg-btn,
.pg-btn-outline,
.pg-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid transparent;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  transition: .25s ease;
}

.pg-btn {
  border-color: var(--pg-orange);
  background: transparent;
  color: #fff !important;
}

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

.pg-btn-outline {
  border-color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
  color: #fff !important;
}

.pg-btn-outline:hover {
  background: #fff;
  color: #111 !important;
}

.pg-btn-dark {
  background: #fff;
  color: #1b1b1b !important;
}

.pg-btn-dark:hover {
  background: #f1f1f1;
}

.pg-dropdown {
  position: relative;
}

.pg-dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  display: none;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

.pg-dropdown-content.show {
  display: block;
}

.pg-dropdown-content a {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  color: #1b1b1b;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pg-dropdown-content a:hover {
  background: var(--pg-orange);
  color: #fff;
}

.pg-section {
  padding: 80px 0;
}

.pg-section-light {
  background: var(--pg-paper);
}

.pg-section-title {
  margin-bottom: 18px;
  color: #1d1d1d;
  font-size: clamp(1.75rem, 4vw, 2.1rem);
  font-weight: 800;
}

.pg-section-subtitle {
  max-width: 760px;
  margin-bottom: 40px;
  color: #666;
  line-height: 1.75;
}

.pg-why-layout,
.pg-about-story {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.pg-why-media {
  display: grid;
  gap: 14px;
}

.pg-why-image,
.pg-about-image {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
}

.pg-why-image:first-child {
  border-radius: 12px 12px 0 0;
}

.pg-why-image:last-child {
  border-radius: 0 0 12px 12px;
}

.pg-why-grid,
.pg-values,
.pg-clients,
.pg-contact-grid {
  display: grid;
  gap: 24px;
}

.pg-why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 40px;
}

.pg-why-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #e7eee4;
  color: var(--pg-green-dark);
  font-weight: 800;
}

.pg-why-item h3,
.pg-card-title {
  color: #1b1b1b;
  font-size: 1.22rem;
  font-weight: 800;
}

.pg-why-item p,
.pg-card-text {
  color: var(--pg-muted);
  line-height: 1.75;
}

.pg-highlight-box,
.pg-card {
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.pg-highlight-box {
  padding: 42px 36px;
}

.pg-contact-box {
  padding: 48px 36px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pg-green), var(--pg-green-dark));
}

.pg-contact-box .pg-section-title,
.pg-contact-box p {
  color: #fff;
}

.pg-service-card {
  position: relative;
  min-height: 420px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.pg-service-card:hover {
  transform: scale(1.04);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

.pg-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
}

.pg-service-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.08);
}

.pg-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, .82));
}

.pg-service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 32px;
  color: #fff;
}

.pg-service-title {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
}

.pg-service-text {
  color: #f1f1f1;
  line-height: 1.7;
}

.pg-about-copy {
  padding: 44px 40px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.pg-about-copy p {
  color: #666;
  line-height: 1.85;
}

.pg-about-image {
  min-height: 420px;
  background: url("../assets/images/imagentractorPF.jpeg") center / cover no-repeat;
}

.pg-values,
.pg-clients,
.pg-contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pg-card {
  height: 100%;
  padding: 34px 28px;
  border-top: 4px solid var(--pg-green);
}

.pg-equipment {
  padding: 54px 46px;
  background: #111;
  color: #fff;
}

.pg-equipment .pg-section-title,
.pg-equipment .pg-section-subtitle {
  color: #fff;
}

.pg-equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.pg-equipment-item {
  min-height: 120px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
}

.pg-equipment-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pg-orange);
  font-size: 1.45rem;
  font-weight: 800;
}

.pg-client {
  padding: 30px 28px;
  border-left: 4px solid var(--pg-orange);
  background: var(--pg-paper);
}

.pg-client h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

.pg-contact-section {
  padding: 100px 0;
  background: var(--pg-paper);
}

.pg-contact-header {
  margin-bottom: 60px;
  text-align: center;
}

.pg-contact-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--pg-green);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.pg-contact-title {
  margin-bottom: 20px;
  color: #1b1b1b;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}

.pg-contact-description {
  max-width: 720px;
  margin: 0 auto;
  color: #666;
  line-height: 1.8;
}

.pg-contact-card {
  height: 100%;
  padding: 42px 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.pg-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.pg-contact-icon {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 50%;
}

.pg-contact-icon.whatsapp {
  background: rgba(37, 211, 102, .12);
}

.pg-contact-icon.email {
  background: rgba(255, 143, 0, .12);
}

.pg-contact-icon.linkedin {
  background: rgba(10, 102, 194, .12);
}

.pg-contact-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.pg-contact-card-title {
  font-size: 1.4rem;
  font-weight: 800;
}

.pg-contact-card-text {
  color: #666;
  line-height: 1.7;
}

.pg-contact-link {
  color: var(--pg-green);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.pg-contact-link:hover {
  color: var(--pg-orange);
}

.pg-footer {
  padding: 66px 0 28px;
  background: var(--pg-green-deep);
  color: #eef6ea;
}

.pg-footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.05fr 1fr;
  gap: 54px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.pg-footer-logo {
  width: 58px;
  margin-bottom: 28px;
}

.pg-footer-title {
  margin-bottom: 22px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.pg-footer-text,
.pg-footer a {
  color: #e5efdf;
}

.pg-footer-links,
.pg-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pg-footer-social {
  display: flex;
  gap: 12px;
}

.pg-footer-social-link {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
}

.pg-footer-social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.pg-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  color: rgba(238, 246, 234, .78);
}

.pg-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

@media (max-width: 991px) {
  .pg-navbar {
    padding: 10px 0;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid #edf2ea;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
  }

  .pg-navbar .nav-link,
  .pg-nav-cta {
    margin-left: 0;
  }

  .pg-nav-cta {
    width: 100%;
    margin-top: 14px;
  }

  .pg-why-layout,
  .pg-about-story,
  .pg-values,
  .pg-clients,
  .pg-equipment-grid,
  .pg-contact-grid {
    grid-template-columns: 1fr;
  }

  .pg-service-card {
    min-height: 360px;
    aspect-ratio: 16 / 10;
  }

  .pg-footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .pg-topbar {
    display: none;
  }

  .pg-brand {
    font-size: 1.45rem;
  }

  .pg-brand-logo {
    width: 46px;
    height: 46px;
  }

  .pg-hero {
    min-height: 620px;
    align-items: flex-end;
    background-position: 58% center;
  }

  .pg-hero::before,
  .pg-page-hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .58) 42%, rgba(0, 0, 0, .82));
  }

  .pg-section {
    padding: 60px 0;
  }

  .pg-why-grid {
    grid-template-columns: 1fr;
  }

  .pg-highlight-box,
  .pg-contact-box,
  .pg-about-copy,
  .pg-equipment {
    padding: 32px 24px;
  }

  .pg-service-card {
    min-height: 330px;
    aspect-ratio: 4 / 3;
  }

  .pg-footer-main,
  .pg-footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .pg-brand {
    max-width: calc(100% - 64px);
    font-size: 1.15rem;
  }

  .pg-brand-logo {
    width: 42px;
    height: 42px;
  }

  .pg-hero-actions,
  .pg-dropdown,
  .pg-btn,
  .pg-btn-outline {
    width: 100%;
  }

  .pg-dropdown-content {
    position: static;
    width: 100%;
    margin-top: 8px;
  }

  .pg-service-card {
    min-height: 300px;
    aspect-ratio: 1 / 1;
  }

  .pg-service-card:hover,
  .pg-contact-card:hover {
    transform: none;
  }
}
