:root {
  --bg: #f5f7f5;
  --surface: #ffffff;
  --surface-muted: #eef2ef;
  --text: #111817;
  --text-soft: #56615d;
  --dark: #0f2a22;
  --dark-2: #17382f;
  --line: rgba(15, 42, 34, 0.12);
  --accent: #f4a11d;
  --accent-strong: #db8a08;
  --shadow: 0 18px 48px rgba(15, 42, 34, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #0a1c17;
  color: #d6e3dd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__content {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.92rem;
}

.topbar strong {
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  background-image: url('assets/hero-campo.jpg');
  background-position: center;
  background-size: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 18, 0.92) 0%, rgba(10, 22, 18, 0.88) 38%, rgba(10, 22, 18, 0.54) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 430px);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 52px);
  padding: 58px 0 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.eyebrow {
  margin: 0 0 12px;
  color: #50786c;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow--accent {
  color: #ffb53a;
}

.hero__content {
  color: #ffffff;
}

.hero__content .eyebrow {
  margin-top: 24px;
  color: #b7d0c6;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero__lead {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border: none;
  border-radius: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #1e1300;
  box-shadow: 0 18px 28px rgba(244, 161, 29, 0.18);
}

.btn--primary:hover {
  background: var(--accent-strong);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--full {
  width: 100%;
}

.hero__points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
  max-width: 60ch;
}

.hero__points li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.hero__points li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.form-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px;
}

.form-card__header {
  margin-bottom: 18px;
}

.form-card__eyebrow {
  margin: 0 0 8px;
  color: #356453;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

.form-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.08;
}

.form-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #21312c;
  font-size: 0.95rem;
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 42, 34, 0.14);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(15, 42, 34, 0.38);
  box-shadow: 0 0 0 4px rgba(15, 42, 34, 0.08);
}

.form-note,
.form-success {
  margin: 0;
  font-size: 0.88rem;
}

.form-note {
  color: #64736e;
}

.form-success {
  min-height: 20px;
  color: #1d6e4f;
  font-weight: 700;
}

.stats-strip {
  background: var(--dark);
  color: #ffffff;
  padding: 24px 0;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 260px));
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.stats-strip__grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 76px;
  width: 100%;
  padding: 0;
}

.stats-strip strong {
  display: block;
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.stats-strip span {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
  max-width: 24ch;
}

.section {
  position: relative;
  padding: 92px 0;
}

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

.section--dark {
  background: var(--dark);
  color: #ffffff;
}

.section--form {
  background: linear-gradient(180deg, #112a22 0%, #183b31 100%);
  color: #ffffff;
}

.section__header {
  max-width: 760px;
  margin-bottom: 36px;
}

.section__header h2,
.section--dark h2,
.form-section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.section__header p:last-child,
.section--dark p,
.form-section p,
.final-cta p {
  color: var(--text-soft);
}

.section--dark p,
.section--form p,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery {
  display: grid;
  gap: 22px;
}

.gallery--primary {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.gallery-card,
.detail-card {
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 42, 34, 0.08);
}

.gallery-card {
  position: relative;
  min-height: 320px;
}

.gallery-card--large {
  min-height: 520px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.56) 100%);
}

.gallery-card__content {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 1;
  color: #ffffff;
}

.gallery-card__content span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.gallery-card__content h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  line-height: 1.15;
}

.split {
  display: grid;
  gap: 30px;
  align-items: start;
}

.split--benefits {
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-grid,
.qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card,
.qualification-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
}

.feature-card h3,
.qualification-card h3,
.detail-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.feature-card p,
.qualification-card p,
.detail-card p {
  margin: 0;
}

.qualification-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.qualification-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.qualification-card--highlight {
  background: linear-gradient(180deg, #16362d 0%, #0f2a22 100%);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.qualification-card--highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.qualification-card ul,
.check-list {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 10px;
}

.form-section {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 430px);
  gap: 34px;
  align-items: center;
}

.form-section__content {
  max-width: 560px;
}

.form-card--inline,
.form-card--final {
  background: rgba(255, 255, 255, 0.98);
}

.form-card--final h2 {
  color: var(--text);
}

.gallery--details {
  grid-template-columns: repeat(3, 1fr);
}

.detail-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.detail-card {
  padding-bottom: 22px;
}

.detail-card h3,
.detail-card p {
  padding: 0 22px;
}

.section--final {
  position: relative;
  background-image: url('assets/estufa-close-2.jpg');
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.section--final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 15, 0.92) 0%, rgba(8, 18, 15, 0.86) 40%, rgba(8, 18, 15, 0.72) 100%);
}

.final-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 420px);
  gap: 36px;
  align-items: center;
}

.final-cta__content {
  max-width: 580px;
}

.hero__badges--compact {
  margin-top: 22px;
}

.footer {
  background: #091612;
  color: rgba(255, 255, 255, 0.76);
  padding: 28px 0;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__content strong {
  display: block;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer__content p {
  margin: 0;
}

.footer__link {
  color: #ffb53a;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .hero__grid,
  .form-section,
  .final-cta,
  .split--benefits,
  .qualification-grid,
  .gallery--primary,
  .gallery--details,
  .stats-strip__grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__grid {
    align-items: start;
  }

  .gallery-card--large {
    grid-column: 1 / -1;
  }

  .qualification-card--highlight {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .topbar__content,
  .footer__content,
  .hero__actions,
  .hero__grid,
  .form-section,
  .final-cta,
  .split--benefits,
  .qualification-grid,
  .gallery--primary,
  .gallery--details,
  .stats-strip__grid,
  .feature-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar__content,
  .footer__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 0;
  }

  .hero {
    background-position: 60% center;
  }

  .hero__grid {
    min-height: auto;
    padding: 42px 0 56px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .btn,
  .btn--full {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .gallery-card,
  .gallery-card--large {
    min-height: 290px;
  }

  .form-card {
    padding: 22px;
  }
}

.form-card .form-note {
  color: #64736e !important;
}

.form-card .form-success {
  color: #1d6e4f !important;
}