:root {
  --green-950: #143322;
  --green-900: #1d4b33;
  --green-800: #2b6645;
  --green-700: #3b7f57;
  --green-500: #8fbc6b;
  --corn-400: #e2b54b;
  --corn-300: #efd688;
  --paper: #f8f7f1;
  --paper-strong: #eef3ea;
  --white: #ffffff;
  --ink: #193021;
  --text: #365042;
  --muted: #6c7f73;
  --border: rgba(29, 75, 51, 0.12);
  --shadow-sm: 0 18px 40px rgba(20, 51, 34, 0.08);
  --shadow-md: 0 24px 60px rgba(20, 51, 34, 0.12);
  --shadow-lg: 0 36px 90px rgba(20, 51, 34, 0.18);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 92px;
  --font-body: "Manrope", sans-serif;
  --font-display: "Fraunces", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top right, rgba(143, 188, 107, 0.18), transparent 28%),
    radial-gradient(circle at left center, rgba(226, 181, 75, 0.12), transparent 20%),
    linear-gradient(180deg, #f7f8f2 0%, #fbfcf8 42%, #f4f7f1 100%);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

main {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-padding {
  padding: 6.5rem 0;
  position: relative;
}

.bg-light {
  background:
    linear-gradient(180deg, rgba(233, 239, 229, 0.86), rgba(248, 248, 243, 0.98));
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(20, 51, 34, 0.08);
  backdrop-filter: blur(12px);
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), var(--corn-400));
}

.section-header,
.text-center-wrapper {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2,
.text-center-wrapper h2 {
  margin: 1.1rem 0 0.8rem;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  line-height: 1.08;
}

.section-header p,
.text-center-wrapper p,
.about-main-text p,
.doc-item p,
.hero-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.card,
.section-card,
.hero-highlight,
.feature-item,
.info-card,
.req-card,
.crop-card,
.extra-item,
.doc-item,
.footer-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.card::before,
.section-card::before,
.hero-highlight::before,
.feature-item::before,
.info-card::before,
.req-card::before,
.crop-card::before,
.extra-item::before,
.doc-item::before,
.footer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 48%);
  pointer-events: none;
}

.btn,
.nav-toggle,
.card,
.back-to-top {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transform: scale(0);
  animation: ripple 0.65s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(2.8);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

/* Navbar */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(248, 247, 241, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 45px rgba(20, 51, 34, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.main-header.is-scrolled {
  background: rgba(248, 247, 241, 0.92);
  box-shadow: 0 18px 48px rgba(20, 51, 34, 0.14);
  border-color: rgba(29, 75, 51, 0.1);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.logo img {
  width: 58px;
  height: 40px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(20, 51, 34, 0.16);
  transition: transform 0.35s ease;
}

.logo:hover img {
  transform: translateY(-2px) scale(1.03);
}

.logo-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-text strong {
  color: var(--green-950);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-text small {
  color: var(--green-700);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--green-950);
  background: rgba(143, 188, 107, 0.16);
  transform: translateY(-1px);
}

.nav__link--accent {
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(29, 75, 51, 0.22);
}

.nav__link--accent:hover,
.nav__link--accent.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(29, 75, 51, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 51, 34, 0.08);
}

.nav-toggle .bar {
  position: absolute;
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--green-900);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-toggle .bar:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle .bar:nth-child(3) {
  transform: translateY(7px);
}

.nav-toggle.is-active .bar:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .bar:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(20, 51, 34, 0.4);
  backdrop-filter: blur(4px);
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100svh - 1rem);
  display: flex;
  align-items: center;
  padding: 5.6rem 0 5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(20, 51, 34, 0.86) 4%, rgba(20, 51, 34, 0.72) 34%, rgba(20, 51, 34, 0.36) 62%, rgba(20, 51, 34, 0.42) 100%),
    linear-gradient(180deg, rgba(226, 181, 75, 0.14), transparent 36%),
    url("img/bannermaiz.webp") center/cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.hero::before {
  width: 19rem;
  height: 19rem;
  top: 5rem;
  right: 4rem;
  background: rgba(143, 188, 107, 0.22);
}

.hero::after {
  width: 14rem;
  height: 14rem;
  left: -4rem;
  bottom: 3rem;
  background: rgba(226, 181, 75, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 3rem;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-content h1 {
  margin: 1.3rem 0 1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
  max-width: 12ch;
}

.hero-content h1 span {
  color: var(--corn-300);
}

.hero-content p {
  max-width: 40rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 56px;
  padding: 0.95rem 1.6rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--corn-400), #c18c1d);
  color: var(--green-950);
  box-shadow: 0 18px 38px rgba(193, 140, 29, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 24px 46px rgba(193, 140, 29, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: rgba(226, 181, 75, 0.18);
  color: var(--corn-300);
}

.hero-highlight__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-highlight h2 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 800;
}

.hero-highlight p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-image-wrapper {
  position: relative;
  width: min(100%, 33rem);
  padding: 3rem 2rem;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.floating-img {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 60rem;
  height: 20rem;
  filter: drop-shadow(0 34px 60px rgba(20, 51, 34, 0.35));
  animation: float-hero 6s ease-in-out infinite;
}

@keyframes float-hero {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.hero-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 12rem;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 45px rgba(20, 51, 34, 0.14);
}

.hero-badge strong {
  color: var(--green-950);
  font-size: 1rem;
}

.badge-label {
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge--top {
  top: -1.1rem;
  left: -1.4rem;
}

.hero-badge--bottom {
  right: -1rem;
  bottom: 1.25rem;
}

/* Cards */

.section-card,
.about-main-text,
.info-card,
.feature-item,
.req-card,
.crop-card,
.extra-item,
.doc-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.section-card:hover,
.hero-highlight:hover,
.info-card:hover,
.feature-item:hover,
.req-card:hover,
.crop-card:hover,
.extra-item:hover,
.doc-item:hover,
.footer-panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.hero-highlight,
.info-card,
.feature-item,
.req-card,
.crop-card,
.extra-item,
.doc-item,
.footer-panel,
.section-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(143, 188, 107, 0.2), rgba(226, 181, 75, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Secciones */

.section-about {
  background:
    linear-gradient(180deg, rgba(248, 250, 244, 0.98), rgba(239, 245, 235, 0.96));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: stretch;
}

.about-main-text {
  display: flex;
  align-items: center;
  padding: 2.2rem;
  min-height: 100%;
}

.about-main-text p {
  font-size: 1.1rem;
  color: var(--text);
}

.mission-vision-grid {
  display: grid;
  gap: 1rem;
}

.info-card {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.45rem;
}

.card-copy {
  flex: 1;
}

.info-card h3,
.feature-header h3,
.doc-item h3,
.crop-info h3,
.footer-panel h3,
.footer-brand h2 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.1;
}

.info-card p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
}

.card-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text);
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), var(--corn-400));
}

.full-width-banner {
  margin-top: 4rem;
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}

.full-width-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 51, 34, 0.3), transparent 24%, transparent 76%, rgba(20, 51, 34, 0.3));
}

.full-width-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.section-funds {
  background: rgba(255, 255, 255, 0.82);
}

.text-center-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.max-width-p {
  max-width: 760px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-item {
  padding: 1.7rem;
  background:
    linear-gradient(180deg, rgba(248, 250, 244, 0.92), rgba(255, 255, 255, 0.98));
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), var(--corn-400));
  box-shadow: 0 0 0 8px rgba(143, 188, 107, 0.12);
}

.feature-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-item li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

.feature-item li:last-child {
  margin-bottom: 0;
}

.feature-item li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--corn-400);
  font-weight: 900;
}

.section-members {
  background:
    radial-gradient(circle at bottom left, rgba(143, 188, 107, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 248, 242, 0.96));
}

.requisitos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.req-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  min-height: 220px;
  padding: 1.75rem 1.25rem;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.req-card img {
  width: auto;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(20, 51, 34, 0.08));
}

.req-card p {
  margin: 0;
  color: var(--green-950);
  font-size: 1.02rem;
  font-weight: 800;
}

.download-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(143, 188, 107, 0.18);
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.docs-viewer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.doc-item {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(240, 245, 236, 0.9), rgba(255, 255, 255, 0.98));
}

.doc-item h3 {
  margin-bottom: 1rem;
}

.pdf-frame {
  width: 100%;
  height: 480px;
  border: 0;
  border-radius: 22px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(29, 75, 51, 0.08);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--green-800);
  font-weight: 800;
  text-decoration: none;
}

.btn-text::after {
  content: "→";
  transition: transform 0.25s ease;
}

.btn-text:hover::after {
  transform: translateX(4px);
}

.section-services {
  background:
    linear-gradient(180deg, rgba(236, 242, 232, 0.72), rgba(255, 255, 255, 0.95));
}

.crops-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.crop-card {
  display: flex;
  flex-direction: column;
}

.crop-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.crop-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(20, 51, 34, 0.16));
}

.crop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.crop-card:hover .crop-img img {
  transform: scale(1.06);
}

.crop-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tags span,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.tags span {
  background: rgba(143, 188, 107, 0.14);
  color: var(--green-900);
}

.status {
  width: fit-content;
  background: rgba(226, 181, 75, 0.18);
  color: #8b5b00;
}

.coming-soon {
  background:
    linear-gradient(180deg, rgba(255, 251, 236, 0.98), rgba(255, 255, 255, 0.98));
}

.section-extras {
  background:
    linear-gradient(180deg, rgba(249, 250, 245, 0.96), rgba(240, 244, 237, 0.96));
}

.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.extra-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 182px;
  padding: 1.5rem 1rem;
  text-align: center;
}

.extra-item img {
  width: auto;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(20, 51, 34, 0.08));
}

.extra-item p {
  margin: 0;
  color: var(--green-950);
  font-weight: 800;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-mobile-toggle {
  display: none;
}

/* Footer */

.main-footer {
  position: relative;
  padding: 4.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at top left, rgba(143, 188, 107, 0.22), transparent 26%),
    radial-gradient(circle at top right, rgba(226, 181, 75, 0.18), transparent 20%),
    linear-gradient(135deg, var(--green-950), #0f2519);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.footer-brand {
  padding-right: 1rem;
}

.footer-brand__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-brand__head img {
  width: 84px;
  height: auto;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.footer-brand h2 {
  color: var(--white);
  font-size: 2rem;
}

.footer-brand p {
  margin: 0;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-panel {
  padding: 1.4rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.footer-panel h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.3rem;
}

.footer-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list {
  display: grid;
  gap: 0.9rem;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.6;
}

.footer-list img {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 700;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--corn-300);
  transform: translateX(4px);
}

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content h1 {
    max-width: 11ch;
  }

  .hero-visual {
    justify-content: center;
  }

  .requisitos-grid,
  .crops-grid,
  .extra-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .about-grid,
  .docs-viewer-grid,
  .footer-grid,
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .requisitos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    padding-right: 0;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: calc(1rem + var(--header-height));
    right: 1rem;
    z-index: 950;
    width: min(22rem, calc(100% - 2rem));
    padding: 1.2rem;
    border-radius: 30px;
    background: rgba(248, 247, 241, 0.96);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(29, 75, 51, 0.08);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0.28s ease;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__link {
    justify-content: flex-start;
    width: 100%;
    border-radius: 18px;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0 4.5rem;
  }

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

  .hero-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .btn-mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 84px;
    --container: calc(100% - 1.25rem);
  }

  .section-padding {
    padding: 4.8rem 0;
  }

  .logo-text small {
    display: none;
  }

  .hero-content {
    text-align: left;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-image-wrapper {
    padding: 2.5rem 1.2rem 2.7rem;
  }

  .hero-badge {
    min-width: auto;
    max-width: 11rem;
    padding: 0.8rem 0.9rem;
  }

  .hero-badge--top {
    top: -0.6rem;
    left: -0.2rem;
  }

  .hero-badge--bottom {
    right: -0.2rem;
    bottom: -0.8rem;
  }

  .about-main-text,
  .info-card,
  .feature-item,
  .req-card,
  .doc-item,
  .extra-item {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .info-card {
    flex-direction: column;
  }

  .card-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .requisitos-grid,
  .crops-grid,
  .extra-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pdf-frame {
    height: 360px;
  }

  .footer-brand__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .section-header h2,
  .text-center-wrapper h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.7rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-badge {
    position: static;
    max-width: 100%;
    margin-bottom: 0.8rem;
  }

  .hero-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .floating-img {
    width: min(100%, 15rem);
  }

  .footer-brand h2 {
    font-size: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
