* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  line-height: 1.7;
}

.topbar {
  background: #027302;
  color: #dfe9df;
  font-size: 13px;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

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

.topbar .topbar-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topbar .topbar-social svg {
  fill: #fff;
  transition: opacity 0.2s;
}

.topbar .topbar-social a:hover svg {
  opacity: 0.7;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 110px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.ativo {
  color: #027302;
}

.btn-cotacao {
  background: #027302;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: bold !important;
  transition: background 0.2s;
}

.btn-cotacao:hover {
  background: #015c01;
  color: #fff !important;
}

.carrossel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides .slide {
  display: none;
  position: relative;
}

.slides .slide.ativo {
  display: block;
  animation: fade 0.6s;
}

.slides .slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.slide-legenda {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(20, 40, 20, 0.9));
  color: #fff;
  text-align: center;
  padding: 45px 20px 22px;
}

.slide-legenda h3 {
  font-size: 28px;
  margin-bottom: 4px;
}

.slide-legenda p {
  font-size: 16px;
  opacity: 0.9;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: none;
  font-size: 26px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}

.seta:hover {
  background: rgba(2,115,2,0.9);
}

.seta.anterior { left: 15px; }
.seta.proxima { right: 15px; }

.bolinhas {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.bolinha {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}

.bolinha.ativa {
  background: #fff;
}

.hero {
  background: linear-gradient(135deg, #027302, #04a504);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #027302;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-verde {
  background: #027302;
  color: #fff;
}

section {
  padding: 70px 8%;
}

.titulo-secao {
  text-align: center;
  font-size: 30px;
  margin-bottom: 15px;
  color: #222;
}

.subtitulo-secao {
  text-align: center;
  color: #666;
  max-width: 650px;
  margin: 0 auto 45px;
}

.texto-institucional {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.texto-institucional p {
  margin-bottom: 18px;
}

.texto-institucional h2,
.texto-conteudo h2 {
  color: #027302;
  margin: 35px 0 12px;
  font-size: 22px;
}

.beneficios {
  max-width: 900px;
  margin: 20px auto 0;
  list-style: none;
}

.beneficios li {
  padding: 10px 0 10px 34px;
  position: relative;
  border-bottom: 1px solid #e3ece3;
}

.beneficios li::before {
  content: '\2714';
  position: absolute;
  left: 5px;
  color: #027302;
  font-weight: bold;
}

.setores {
  max-width: 900px;
  margin: 25px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px 40px;
  list-style: none;
}

.setores li {
  padding: 8px 0 8px 28px;
  position: relative;
}

.setores li::before {
  content: '\25B8';
  position: absolute;
  left: 5px;
  color: #027302;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background: #f4f9f4;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border-top: 4px solid #3e7d3e;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card .icone {
  font-size: 40px;
  margin-bottom: 15px;
}

.card-imagem {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  color: #222;
}

.timeline {
  max-width: 800px;
  margin: 25px auto 0;
  position: relative;
  padding-left: 30px;
  border-left: 3px solid #3e7d3e;
}

.timeline-item {
  margin-bottom: 30px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #027302;
}

.timeline-item h3 {
  color: #027302;
}

.info-contato {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 45px;
  text-align: center;
}

.form-contato {
  max-width: 600px;
  margin: 0 auto;
  background: #f4f9f4;
  padding: 35px;
  border-radius: 12px;
}

.campo {
  margin-bottom: 20px;
  text-align: left;
}

.campo label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
}

.campo input:focus,
.campo textarea:focus {
  outline: none;
  border-color: #3e7d3e;
}

footer {
  background: #1c2331;
  color: #aaa;
  padding: 55px 8% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 16px;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.9;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #4ade4a;
}

.footer-redes {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-redes svg {
  fill: currentColor;
}

.footer-copy {
  border-top: 1px solid #2a3342;
  text-align: center;
  padding: 18px;
  font-size: 13px;
}

.whatsapp-flutuante {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-flutuante:hover {
  transform: scale(1.1);
}

.whatsapp-flutuante svg {
  fill: #fff;
}

.menu-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-direction: column;
  gap: 5px;
  z-index: 200;
}

.menu-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero {
    padding: 50px 20px;
  }

  .slides .slide img {
    height: 340px;
  }

  section {
    padding: 55px 6%;
  }

  .titulo-secao {
    font-size: 26px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    text-align: center;
    font-size: 12px;
    padding: 6px 4%;
  }

  .topbar .topbar-social {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 150;
  }

  .nav-links.aberto {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
  }

  .btn-cotacao {
    margin: 8px 5% !important;
    border-radius: 6px;
    text-align: center;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero {
    padding: 40px 15px;
  }

  .slides .slide img {
    height: 220px;
  }

  .slide-legenda h3 {
    font-size: 20px;
  }

  .slide-legenda p {
    font-size: 13px;
  }

  .seta {
    font-size: 20px;
    padding: 8px 12px;
  }

  section {
    padding: 40px 5%;
  }

  .titulo-secao {
    font-size: 22px;
  }

  .subtitulo-secao {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 25px 20px;
  }

  .card-imagem {
    height: 150px;
  }

  .beneficios li {
    padding-left: 28px;
    font-size: 14px;
  }

  .beneficios li::before {
    left: 2px;
  }

  .timeline {
    padding-left: 25px;
  }

  .timeline-item::before {
    left: -34px;
    width: 12px;
    height: 12px;
  }

  .timeline-item h3 {
    font-size: 16px;
  }

  .timeline-item p {
    font-size: 14px;
  }

  .form-contato {
    padding: 20px;
    margin: 0 10px;
  }

  .campo input,
  .campo textarea {
    font-size: 16px;
    padding: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  footer {
    padding: 35px 5% 0;
  }

  .footer-col h4 {
    font-size: 14px;
  }

  .footer-col p,
  .footer-col address {
    font-size: 13px;
  }

  .whatsapp-flutuante {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-flutuante svg {
    width: 28px;
    height: 28px;
  }

  .logo-img {
    height: 90px;
  }
}

@media (max-width: 480px) {
  .topbar {
    font-size: 11px;
    padding: 5px 3%;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero {
    padding: 30px 12px;
  }

  .slides .slide img {
    height: 180px;
  }

  .slide-legenda {
    padding: 30px 15px 18px;
  }

  .slide-legenda h3 {
    font-size: 17px;
  }

  .slide-legenda p {
    font-size: 12px;
  }

  .seta {
    font-size: 16px;
    padding: 6px 10px;
  }

  section {
    padding: 30px 4%;
  }

  .titulo-secao {
    font-size: 19px;
  }

  .card {
    padding: 20px 15px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }

  .texto-institucional {
    font-size: 14px;
  }

  .texto-institucional h2 {
    font-size: 18px;
  }

  .form-contato {
    padding: 15px;
    margin: 0 5px;
    border-radius: 8px;
  }

  .campo label {
    font-size: 13px;
  }

  .campo input,
  .campo textarea {
    font-size: 16px;
    padding: 10px;
  }

  .btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-copy {
    font-size: 11px;
    padding: 14px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1c2331;
  color: #ddd;
  padding: 18px 5%;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visivel {
  transform: translateY(0);
}

.cookie-banner-conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-texto h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.cookie-texto p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 720px;
}

.cookie-texto p a {
  color: #4ade4a;
}

.cookie-botoes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-aceitar {
  background: #027302;
  color: #fff;
}

.cookie-aceitar:hover {
  background: #015c01;
}

.cookie-recusar {
  background: transparent;
  color: #ddd;
  border: 1px solid #5a647a;
}

.cookie-recusar:hover {
  background: #2a3342;
}

@media (max-width: 768px) {
  .cookie-banner-conteudo {
    flex-direction: column;
    align-items: flex-start;
  }

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