.hero-banner {
  background: linear-gradient(135deg, var(--color-green-700), var(--color-green-900));
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-banner {
    padding: 6rem 0;
  }
}

.hero-banner .container {
  max-width: 64rem;
}

.hero-banner h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-banner h1 {
    font-size: 3rem;
  }
}

.hero-banner p {
  font-size: 1.125rem;
  color: rgb(220, 252, 231);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-banner p {
    font-size: 1.25rem;
  }
}

.gestao-rural {
  padding: 5rem 0;
  background: var(--color-white);
}

.gestao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .gestao-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  font-weight: 700;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.gestao-intro {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.gestao-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gestao-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.gestao-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--color-green-500), var(--color-green-600));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gestao-icon i {
  font-size: 1.5rem;
}

.gestao-texto h3 {
  font-size: 1.125rem;
  color: var(--color-gray-900);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.gestao-texto p {
  color: var(--color-gray-600);
  line-height: 1.6;
}

.gestao-image img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.recursos {
  padding: 5rem 0;
  background: var(--color-gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.75;
}

.recursos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .recursos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.recurso-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recurso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--color-green-600);
}

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

.recurso-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--color-green-500), var(--color-green-600));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recurso-icon i {
  font-size: 1.5rem;
}

.recurso-header h3 {
  font-size: 1.25rem;
  color: var(--color-gray-900);
  font-weight: 600;
}

.recurso-desc {
  color: var(--color-gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.sub-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sub-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-gray-700);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.sub-features i {
  color: var(--color-green-600);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.recursos-adicionais {
  padding: 5rem 0;
  background: var(--color-white);
}

.adicionais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .adicionais-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.adicional-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  background: var(--color-white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.adicional-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--color-green-600);
}

.adicional-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-green-500), var(--color-green-600));
  color: var(--color-white);
  box-shadow: 0 4px 6px -1px rgba(22, 163, 74, 0.2);
}

.adicional-icon i {
  font-size: 2rem;
}

.adicional-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  font-weight: 600;
}

.adicional-card p {
  color: var(--color-gray-600);
  line-height: 1.75;
  font-size: 1rem;
}

.resultados-esperados {
  padding: 5rem 0;
  background: var(--color-gray-100);
  color: var(--color-gray-900);
}

.resultados-esperados .section-title {
  color: var(--color-gray-900);
}

.resultados-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .resultados-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .resultados-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.resultado-card {
  text-align: center;
  padding: 2rem;
  background: rgba(158, 142, 142, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.resultado-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.resultado-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  backdrop-filter: blur(8px);
}

.resultado-icon i {
  font-size: 2rem;
  color: var(--color-green-800);
}

.resultado-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.resultado-card p {
  color: var(--color-gray-600);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.cta-section {
  padding: 4rem 0;
  background: var(--color-green-600);
  color: var(--color-white);
  text-align: center;
}

.cta-section .container {
  max-width: 64rem;
}

.cta-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgb(220, 252, 231);
}

.cta-section .button-group {
  justify-content: center;
}
