
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #111;
}

/* Cabeçalho */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #0A621C;
  border-bottom: 2px solid #0A621C;
}

.logo {
  height: 100px;
}

nav {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Data */
.barra-topo {
  background-color: #0A621C;
  color: #fff;
  padding: 6px 0;
  text-align: center;
  font-size: 14px;
}

.data-atual {
  font-weight: bold;
}

/* Banner */
.hero-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

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

.banner-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 4px #000;
}

/* Boas-vindas */
.boas-vindas {
  max-width: 1100px;
  margin: 30px auto 0 auto;
  padding: 0 20px;
  text-align: center;
}

.boas-vindas h1 {
  color: #0A621C;
  margin-bottom: 10px;
}

.boas-vindas p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.boas-vindas a {
  display: inline-block;
  background-color: #0A621C;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}

.boas-vindas a:hover {
  background-color: #084d15;
}

/* Clima e Preços */
.info-agro-clima {
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto 60px auto;
}

.coluna-esquerda, .coluna-direita {
  flex: 1 1 400px;
  background: #f3f8f4;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px #ccc;
}

.coluna-esquerda h2, .coluna-direita h2 {
  color: #0A621C;
  margin-bottom: 12px;
}

.tabela-precos {
  width: 100%;
  border-collapse: collapse;
}

.tabela-precos td {
  padding: 8px;
  font-size: 1rem;
  border-bottom: 1px solid #ddd;
}

/* Notícias RSS */
.noticias-agro {
  max-width: 1100px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.noticias-agro h2 {
  color: #0A621C;
  text-align: center;
  margin-bottom: 20px;
}

#feed-agro {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.noticia-card {
  flex: 1 1 30%;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.noticia-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.noticia-card a {
  color: #0A621C;
  text-decoration: none;
  font-weight: bold;
}

.noticia-card a:hover {
  text-decoration: underline;
}

.noticia-card p {
  font-size: 0.9rem;
  color: #333;
}

.noticia-card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 10px auto 0 auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


/* Rodapé */
.rodape {
  background-color: #0A621C;
  color: white;
  font-family: Arial, sans-serif;
  margin-top: 40px;
}

.rodape-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.rodape-coluna {
  flex: 1 1 250px;
}

.rodape-coluna h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}

.rodape-coluna ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rodape-coluna ul li {
  margin-bottom: 6px;
}

.rodape-coluna ul li a {
  color: #d4f4dd;
  text-decoration: none;
}

.rodape-coluna ul li a:hover {
  text-decoration: underline;
}

.rodape-baixo {
  text-align: center;
  border-top: 1px solid #ffffff44;
  padding: 15px 10px;
  background-color: #0A621C;
  font-size: 14px;
}

.creditos-site {
  margin-top: 6px;
  font-size: 13px;
  color: #c1eccc;
}

.rodape-logos {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 10px 20px;
  background-color: #0A621C;
}

.rodape-logos img {
  height: 40px;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.rodape-logos img:hover {
  transform: scale(1.05);
  opacity: 1;
}
.whatsapp-float,
.instagram-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.instagram-float {
  bottom: 90px; /* pra não sobrepor o WhatsApp */
}
/* Estilo dos botões flutuantes de WhatsApp e Instagram */
.whatsapp-float img,
.instagram-float img {
  width: 50px; /* define um tamanho padrão */
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover,
.instagram-float img:hover {
  transform: scale(1.1);
}
/* Ícones sociais flutuantes */
.social-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.icon-social {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.icon-social:hover {
  transform: scale(1.1);
}
/* Estilo moderno para os botões da página de serviços */
.botoes-servicos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 30px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.botoes-servicos a button {
  background-color: #0A621C;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.botoes-servicos a button:hover {
  background-color: #084d15;
  transform: translateY(-2px);
}
/* Estilo das páginas internas */
.pagina-conteudo {
  max-width: 1100px;
  margin: 40px auto 60px auto;
  padding: 0 20px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.titulo-secao {
  font-size: 2.2rem;
  color: #0A621C;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.subtitulo-secao {
  font-size: 1.6rem;
  color: #0A621C;
  margin-top: 40px;
  margin-bottom: 15px;
}

.pagina-conteudo ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.pagina-conteudo ul li {
  margin-bottom: 10px;
}
.formulario-contato form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.formulario-contato input,
.formulario-contato textarea,
.formulario-contato button {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.formulario-contato button {
  background-color: #0A621C;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.formulario-contato button:hover {
  background-color: #084d15;
}

.info-contato {
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

.mapa-localizacao {
  max-width: 800px;
  margin: 0 auto 60px auto;
}
.secao-imagem {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
}

.secao-imagem h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0A621C;
}

.imagem-ilustrativa {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);}

  #clima {
  padding: 30px;
  background-color: #f0f8ff;
  color: #0A621C;
  font-family: Arial, sans-serif;
  border-top: 3px solid #0A621C;
  border-bottom: 3px solid #0A621C;
}

#clima h2 {
  text-align: center;
  margin-bottom: 20px;
}

.clima-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.clima-item {
  background-color: #ffffff;
  border: 1px solid #0A621C;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  font-size: 16px;
}
#clima {
  padding: 20px;
  background-color: #f0f8ff;
  color: #0A621C;
  font-family: 'Arial', sans-serif;
  border-top: 3px solid #0A621C;
  border-bottom: 3px solid #0A621C;
}

#clima h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 20px;
}

.clima-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.clima-item {
  background-color: #fff;
  border: 1px solid #0A621C;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  text-align: left;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.05);
  transition: all 0.2s ease-in-out;
}

.clima-item:hover {
  transform: scale(1.02);
  background-color: #f6fdf7;
}
#noticias {
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-top: 3px solid #0A621C;
}

#noticias h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0A621C;
}

.noticia-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.noticia-card:hover {
  transform: scale(1.01);
}

.noticia-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.noticia-card h3 {
  font-size: 18px;
  color: #0A621C;
  margin-bottom: 10px;
}

.noticia-card p {
  font-size: 14px;
  color: #333;
}
