/* Reset e configurações básicas */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7faf7;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Animações globais */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Header */
header {
  background: #228B22;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  width: 36px;
  height: 36px;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #d4ffb2;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4ffb2;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

#menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  background: #222;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-videos {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4,2,.6,1);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-video.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(34,139,34,0.6) 60%, rgba(0,0,0,0.5) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  font-weight: 700;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botões */
.btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #fff;
  color: #228B22;
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.btn-primary:hover {
  background: #d4ffb2;
  color: #145214;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #228B22;
  transform: translateY(-2px);
}

/* Seção de Estatísticas */
.estatisticas {
  background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.estatisticas h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
}

.stat-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #d4ffb2;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Seção Sobre */
.sobre {
  background: #fff;
  padding: 5rem 0;
  text-align: center;
}

.sobre h2 {
  color: #228B22;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sobre > .container > p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
}

.valores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.valor-card {
  background: #f7faf7;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(34,139,34,0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.valor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(34,139,34,0.15);
}

.valor-card h3 {
  color: #145214;
  font-size: 1.5rem;
  margin: 1rem 0;
}

.valores-icone {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

/* Seção Serviços */
.servicos {
  background: #f7faf7;
  padding: 5rem 0;
  text-align: center;
}

.servicos h2 {
  color: #228B22;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(34,139,34,0.1);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #228B22, #32CD32);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(34,139,34,0.2);
}

.card img {
  width: 60px;
  margin-bottom: 1.5rem;
}

.card h3 {
  color: #145214;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: #228B22;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: #145214;
  transform: translateY(-2px);
}

/* Seção Produtos */
.produtos {
  background: #fff;
  padding: 5rem 0;
  text-align: center;
}

.produtos h2 {
  color: #228B22;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.produtos-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.produto {
  background: #f7faf7;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(34,139,34,0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.produto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #228B22, #32CD32);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.produto:hover::before {
  transform: scaleX(1);
}

.produto:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(34,139,34,0.2);
}

.produto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.produto h3 {
  color: #145214;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.produto-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(34,139,34,0.1);
  border-radius: 10px;
}

.produto-certificacao {
  font-size: 0.9rem;
  color: #666;
  background: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
}

.produto-qualidade {
  font-size: 0.9rem;
  color: #228B22;
  background: #d4ffb2;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-weight: 600;
}

.produto-btn {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  background: #228B22;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.produto-btn:hover {
  background: #145214;
  transform: translateY(-2px);
}

/* Seção Sustentabilidade */
.sustentabilidade {
  background: linear-gradient(135deg, #f7faf7 0%, #e8f5e8 100%);
  padding: 5rem 0;
}

.sustentabilidade h2 {
  color: #228B22;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.sustentabilidade-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sustentabilidade-texto h3 {
  color: #145214;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.sustentabilidade-texto p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.certificacoes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.certificacao {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(34,139,34,0.1);
  transition: all 0.3s ease;
}

.certificacao:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(34,139,34,0.2);
}

.certificacao i {
  font-size: 1.5rem;
  color: #228B22;
}

.sustentabilidade-imagem img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(34,139,34,0.2);
}

/* Seção Tecnologia */
.tecnologia {
  background: #fff;
  padding: 5rem 0;
  text-align: center;
}

.tecnologia h2 {
  color: #228B22;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.tecnologia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tecnologia-item {
  background: #f7faf7;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(34,139,34,0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.tecnologia-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(34,139,34,0.2);
}

.tecnologia-item i {
  font-size: 3rem;
  color: #228B22;
  margin-bottom: 1.5rem;
}

.tecnologia-item h3 {
  color: #145214;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Seção Depoimentos */
.depoimentos {
  background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.depoimentos h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.depoimentos-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.depoimento {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.depoimento.active {
  display: block;
}

.depoimento-texto {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.depoimento-texto p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.depoimento-autor img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.3);
}

.depoimento-autor h4 {
  font-size: 1.2rem;
  margin: 0;
}

.depoimento-autor span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.depoimentos-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: #fff;
  transform: scale(1.2);
}

/* Seção Notícias Melhorada */
.noticias {
  background: #f7faf7;
  padding: 5rem 0;
}

.noticias h2 {
  color: #228B22;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.noticias-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.rss-btn {
  background: #fff;
  color: #228B22;
  border: 2px solid #228B22;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.rss-btn.active,
.rss-btn:hover {
  background: #228B22;
  color: #fff;
  transform: translateY(-2px);
}

.noticias-search {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.noticias-search input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 2px solid #ddd;
  border-radius: 25px 0 0 25px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.noticias-search input:focus {
  border-color: #228B22;
}

.noticias-search button {
  background: #228B22;
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.noticias-search button:hover {
  background: #145214;
}

.noticias-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.noticia-item {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(34,139,34,0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.noticia-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(34,139,34,0.2);
}

.noticia-item a {
  color: #228B22;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.noticia-item a:hover {
  color: #145214;
}

.noticia-item .noticia-data {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

.noticias-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pagination-btn {
  background: #228B22;
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  background: #145214;
  transform: scale(1.1);
}

.pagination-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

#page-info {
  font-weight: 600;
  color: #228B22;
}

/* Seção Contato Melhorada */
.contato {
  background: #fff;
  padding: 5rem 0;
}

.contato h2 {
  color: #228B22;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contato-form {
  background: #f7faf7;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(34,139,34,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #228B22;
  box-shadow: 0 0 0 3px rgba(34,139,34,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid #ddd;
}

.captcha input {
  width: 80px;
  text-align: center;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f7faf7;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(34,139,34,0.1);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(34,139,34,0.2);
}

.info-item i {
  font-size: 1.5rem;
  color: #228B22;
  margin-top: 0.2rem;
}

.info-item h4 {
  color: #145214;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.info-item p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.mapa {
  margin-top: 2rem;
}

/* Footer Melhorado */
footer {
  background: #145214;
  color: #fff;
  padding: 3rem 0 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #d4ffb2;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 30px;
  height: 30px;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.9;
}

.footer-section ul li a:hover {
  color: #d4ffb2;
  opacity: 1;
}

.footer-section ul li i {
  margin-right: 0.5rem;
  color: #d4ffb2;
}

.social {
  display: flex;
  gap: 1rem;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social a:hover {
  background: #d4ffb2;
  color: #145214;
  transform: translateY(-3px);
}

.footer-bottom {
  background: #0d3a0d;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.developer-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.developer-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.developer-info a {
  color: #d4ffb2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.developer-info a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Botão Voltar ao Topo */
#back-to-top {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #228B22;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(34,139,34,0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: #145214;
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(34,139,34,0.25);
}

/* Responsividade */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .valores {
    grid-template-columns: 1fr;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .produtos-lista {
    grid-template-columns: 1fr;
  }
  
  .sustentabilidade-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tecnologia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contato-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    display: none;
  }
  
  nav ul.open {
    display: flex;
  }
  
  #menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .tecnologia-grid {
    grid-template-columns: 1fr;
  }
  
  .noticias-controls {
    flex-direction: column;
    align-items: center;
  }
  
  .noticias-lista {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom .container {
    flex-direction: column;
  }
  
  #back-to-top {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .estatisticas h2,
  .sobre h2,
  .servicos h2,
  .produtos h2,
  .sustentabilidade h2,
  .tecnologia h2,
  .depoimentos h2,
  .noticias h2,
  .contato h2 {
    font-size: 2rem;
  }
}

/* Páginas Legais */
.legal-content {
  background: #fff;
  padding: 2rem 0 4rem 0;
  min-height: calc(100vh - 200px);
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.legal-header h1 {
  color: #228B22;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal-date {
  color: #666;
  font-size: 1rem;
  font-style: italic;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  color: #145214;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.legal-section h3 {
  color: #228B22;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.8rem 0;
}

.legal-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #444;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #444;
}

.legal-section strong {
  color: #145214;
}

.contact-info {
  background: #f7faf7;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #228B22;
  margin-top: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: #228B22;
  width: 20px;
}

.legal-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .legal-header h1 {
    font-size: 2rem;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
  
  .legal-footer {
    flex-direction: column;
    align-items: center;
  }
} 

/* Modal Google Forms */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 90vw;
  width: 600px;
  max-height: 90vh;
  padding: 0;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}
.modal-content iframe {
  border: none;
  border-radius: 0 0 12px 12px;
  width: 100%;
  height: 700px;
}
.close-modal {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 2rem;
  color: #228B22;
  cursor: pointer;
  z-index: 10;
  font-weight: bold;
}
@media (max-width: 700px) {
  .modal-content {
    width: 98vw;
    max-width: 98vw;
    min-width: 0;
    border-radius: 0;
  }
  .modal-content iframe {
    height: 70vh;
  }
} 