:root {
    --green-deep: #123b2e;
    --green: #0f7a4a;
    --accent: #f5c400;
    --muted: #6b7280;
    --bg: #f7faf9;
    --card: #ffffff;
    --maxw: 1180px;
    --radius: 10px;
  }
 
 
  * { box-sizing: border-box; }
  html, body { height: 100%; }
 
 
  body {
    margin: 0;
    font-family: Inter, system-ui, Arial, sans-serif;
    background: var(--bg);
    color: #07221a;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
 
 
  a { color: inherit; text-decoration: none; }
 
 
  /* ===== Top bar ===== */
  /* Estilos do cabeçalho estão no geral.css (.topbar, .topnav, etc.) */
 
 
  /* ===== Hero ===== */
  .hero-wrap { max-width: var(--maxw); margin: 22px auto; padding: 0 20px; }
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: end;
  }
  .hero-card {
    background: linear-gradient(180deg,#fff 0%, #fff 70%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(6,10,6,0.06);
    border-left: 14px solid var(--accent);
  }
  .hero-media {
    height: 420px;
    background-position: center;
    background-size: cover;
    position: relative;
  }
  .hero-content { padding: 22px 28px 30px; }
  .hero-kicker {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .hero-title { font-size: 28px; margin: 0 0 10px; color: var(--green-deep); }
  .hero-excerpt { color: var(--muted); margin: 0 0 14px; }
  .hero-meta { display: flex; align-items: center; gap: 12px; }
  .hero-meta .tag {
    background: #e6f9ee;
    color: var(--green-deep);
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
  }
  .btn {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
  }
  .btn-ghost {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
    padding: 8px 12px;
    border-radius: 8px;
  }
 
 
  /* ===== Services ===== */
  .services {
    max-width: var(--maxw);
    margin: 28px auto;
    padding: 0 20px 18px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
  }
  .service-card {
    background: #e8f9ee;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(8,12,10,0.04);
    transition: transform .18s ease, box-shadow .18s ease;
    border: 1px solid rgba(10,80,60,0.04);
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(8,12,10,0.06);
  }
  .service-icon {
    width: 86px; height: 86px; margin: 0 auto 12px;
    border-radius: 10px; background: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 34px; color: var(--green);
  }
  .service-title { font-weight: 700; margin-top: 6px; }
 
 
  /* ===== News ===== */
  .news-section {
    max-width: var(--maxw);
    margin: 28px auto;
    padding: 0 20px 40px;
  }
  .section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
  .section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--green-deep);
    letter-spacing: 0.6px;
  }
  .section-underline {
    height: 8px; background: var(--accent); width: 64px; border-radius: 6px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.03);
  }
  .news-list { display: grid; gap: 18px; }
  .news-item {
    background: var(--card);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px;
    box-shadow: 0 6px 18px rgba(8,12,10,0.04);
  }
  .news-thumb {
    width: 180px; height: 110px;
    background: #ddd;
    border-radius: 8px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
  }
  .news-body { flex: 1; }
  .news-tag {
    display: inline-block;
    padding: 6px 8px;
    background: #0ea5a7;
    color: white;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 8px;
  }
  .news-title {
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 700;
    color: var(--green-deep);
  }
  .news-desc { color: var(--muted); margin: 0; }
 
 
  /* ===== Footer ===== */
  footer {
    background: var(--green-deep);
    color: white;
    padding: 18px 20px;
    margin-top: 36px;
  }
  .footer .container {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
 
 
  /* ===== Floating buttons ===== */
  .float-controls {
    position: fixed;
    left: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 80;
  }
  .fc-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(180deg,#fff,#f3f3f3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(8,12,10,0.07);
    cursor: pointer;
  }
  .fc-top { background: var(--green); color: white; }
  .fc-access { background: #2b9bf0; color: white; }
 
 
  /* ===== Responsivo ===== */
  @media(max-width:1100px){
    .services { grid-template-columns: repeat(3,1fr); }
    .hero-media { height: 360px; }
  }
  @media(max-width:880px){
    .services { grid-template-columns: repeat(2,1fr); }
    .topnav { display: none; }
    .hero-media { height: 260px; }
    .news-item { flex-direction: column; }
    .news-thumb { width: 100%; height: 160px; }
  }
  @media(max-width:520px){
    .services { grid-template-columns: 1fr; }
    .hero-media { height: 200px; }
    .hero-title { font-size: 20px; }
  }
 
 
  body {
    font-family: 'Poppins', sans-serif;
    background: #f5f6f8;
    color: #333;
    margin: 0;
    padding: 0;
  }
 
 
  /* ===== Cabeçalho ===== */
  .header {
    width: 100%;
    background: #008037; /* verde principal */
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
 
 
  .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
 
 
  .logo-placeholder {
    background: white;
    border-radius: 8px;
    padding: 6px 10px;
  }
 
 
  .logo-text-small {
    font-weight: 700;
    color: #008037;
    font-size: 14px;
  }
 
 
  .ajuda-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
  }
 
 
  .header-nav {
    display: flex;
    align-items: center;
    gap: 25px;
  }
 
 
  .header-nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: opacity 0.3s ease;
  }
 
 
  .header-nav a:hover {
    opacity: 0.8;
  }
 
 
  .user-icon {
    font-size: 22px;
    cursor: pointer;
  }
 
 
  /* ===== Conteúdo Principal ===== */
  .main-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
  }
 
 
  .help-title {
    font-size: 28px;
    font-weight: 600;
    color: #008037;
    margin-bottom: 30px;
  }
 
 
  /* ===== Campo de Busca ===== */
  .search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 10px 15px;
    max-width: 500px;
    margin: 0 auto 40px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
 
 
  .search-icon {
    font-size: 18px;
    color: #777;
    margin-right: 10px;
  }
 
 
  .search-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
  }
 
 
  /* ===== Sugestões ===== */
  .suggestions {
    display: grid;
    gap: 20px;
  }
 
 
  .suggestion-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
 
 
  .suggestion-box strong {
    color: hsl(146, 100%, 25%);
    font-size: 18px;
  }
 
 
  .suggestion-box p {
    font-size: 15px;
    color: #555;
    margin-top: 8px;
  }
 
 
  .suggestion-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
  }
 
 
  /* ===== Rodapé ===== */
  .footer {
    background:#0c4231;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    margin-top: 250px;
  }
 
 
  /* ===== Responsividade ===== */
  @media (max-width: 600px) {
    .header {
      flex-direction: column;
      gap: 10px;
      padding: 16px;
    }
 
 
    .help-title {
      font-size: 22px;
    }
 
 
    .search-container {
      max-width: 90%;
    }
 
 
    .suggestion-box {
      padding: 15px;
    }
  }
 
 
  /* ===== LOGIN PAGE ===== */
  .page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
 
 
 
  .page {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 40px 50px;
    width: 100%;
    max-width: 380px;
    margin: 50px auto; /* centraliza sem quebrar outras páginas */
  }
 
 
  /* Container interno do login */
  .page .login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
  }
 
 
  .page .logo {
    width: 80px;
    margin-bottom: 10px;
  }
 
 
  .page .login-header h1 {
    font-size: 26px;
    color: #008037;
  }
 
 
  .page .formLogin p {
    text-align: center;
    color: #555;
    font-size: 14px;
    margin-bottom: 25px;
  }
 
 
  .page label {
    display: block;
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
    margin-top: 12px;
  }
 
 
  .page input[type="email"],
  .page input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    transition: border 0.2s ease;
  }
 
 
  .page input[type="email"]:focus,
  .page input[type="password"]:focus {
    border-color: #008037;
  }
 
 
  .page .forgot-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #008037;
    text-decoration: none;
    transition: color 0.3s ease;
  }
 
 
  .page .forgot-link:hover {
    color: #005e28;
    text-decoration: underline;
  }
 
 
  .page .btn {
    margin-top: 25px;
    width: 100%;
    background: #008037;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
 
 
  .page .btn:hover {
    background: #006e2d;
  }
 
 
  @media (max-width: 480px) {
    .page {
      padding: 30px 25px;
    }
    .page .login-header h1 {
      font-size: 22px;
    }
    .page .logo {
      width: 70px;
    }
  }
 
 
 
 
  .hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px auto;
    max-width: var(--maxw);
    padding: 0 20px;
  }
 
 
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
  }
 
 
  .hero-content {
    position: relative;
    color: white;
    max-width: 700px;
    z-index: 2;
  }
 
 
  .hero-content h1 {
    font-size: 34px;
    margin-bottom: 14px;
    font-weight: 800;
  }
 
 
  .hero-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #e8f9ee;
  }
 
 
  .hero-content .btn {
    background: var(--accent);
    color: var(--green-deep);
  }
 
 
  /* Seções gerais */
  .content-section {
    max-width: var(--maxw);
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
  }
 
 
  .content-section h2 {
    color: var(--green-deep);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
  }
 
 
  .content-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 6px;
    background: var(--accent);
    border-radius: 4px;
    margin: 8px auto 0;
  }
 
 
  /* Dicas */
  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
 
 
  .card {
    background: var(--card);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(8, 12, 10, 0.05);
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
 
 
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(8, 12, 10, 0.07);
  }
 
 
  .card .icon {
    font-size: 40px;
    color: var(--green);
    display: block;
    margin-bottom: 12px;
  }
 
 
  .card h3 {
    font-size: 18px;
    color: var(--green-deep);
    margin: 0 0 8px;
  }
 
 
  .card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
  }
 
 
  /* Materiais educativos */
  .destaque {
    background: #e8f9ee;
    padding: 40px 20px;
    border-radius: 12px;
  }
 
 
  .materiais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
  }
 
 
  .materiais-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(8, 12, 10, 0.05);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
 
 
  .materiais-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(8, 12, 10, 0.08);
  }
 
 
  .materiais-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
 
 
  .materiais-item h3 {
    font-size: 17px;
    color: var(--green-deep);
    margin: 14px 16px 6px;
  }
 
 
  .materiais-item p {
    font-size: 14px;
    color: var(--muted);
    margin: 0 16px 16px;
  }
 
 
  /* Botões de contato */
  .botoes {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }
 
 
  .botoes .btn {
    background: var(--green);
  }
 
 
  .botoes .btn-ghost {
    border: 2px solid var(--green);
    color: var(--green);
    background: white;
  }
 
 
  /* Rodapé da página */
  footer {
    background: var(--green-deep);
    color: white;
    text-align: center;
    padding: 24px 10px;
    margin-top: 50px;
    font-size: 14px;
  }
 
 
  footer .slogan {
    color: #eaf7ee;
    font-size: 13px;
    margin-top: 6px;
  }
 
 
  /* ===== Responsivo ===== */
  @media (max-width: 600px) {
    .hero-content h1 {
      font-size: 24px;
    }
    .hero-content p {
      font-size: 15px;
    }
    .materiais-item img {
      height: 140px;
    }
  }
 
  html, body {
      height: 100%;
      margin: 0;
      display: flex;
      flex-direction: column;
    }
   
    .main-content {
      flex: 1; /* faz o conteúdo ocupar o espaço todo e empurrar o rodapé pra baixo */
    }
   
    .footer {
      background: #0c2b1d;
      color: #d6efe3;
      text-align: center;
      padding: 15px 0;
      font-size: 14px;
    }
   /* ======== AJUDA: ajustes específicos ======== */
  body.ajuda-page {
      background: linear-gradient(180deg, #e8f3ed 0%, #f5faf7 100%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
   
    .main-content.ajuda {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
    }
   
    /* Título */
    .title {
      color: #067a3f;
      font-size: 50px;
      text-align: center;
      margin-bottom: 30px;
    }
   
    /* Campo de busca */
    .search-container {
      display: flex;
      align-items: center;
      background: white;
      border-radius: 10px;
      padding: 8px 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin-bottom: 30px;
    }
    .search-icon {
      margin-right: 8px;
      font-size: 18px;
    }
    .search-input {
      border: none;
      outline: none;
      flex: 1;
      font-size: 20px;
      color: #033d26;
    }
   
    /* FAQ boxes */
    .suggestions {
      width: 200%;
      max-width: 800px;
    }
    .suggestion-box {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      margin: 12px 0;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .suggestion-box:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    }
   
    /* Botão da pergunta */
    .faq-question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 15px 20px;
      font-size: 16px;
      font-weight: 600;
      color: #067a3f;
      cursor: pointer;
    }
   
    /* Resposta */
    .faq-answer {
      display: none;
      padding: 0 20px 15px;
      color: #033d26;
      font-size: 14px;
      line-height: 1.5;
    }
    .faq-answer.show {
      display: block;
      animation: fadeIn 0.4s ease;
    }
   
    /* Animação suave */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(5px); }
      to { opacity: 1; transform: translateY(0); }
    }
   
    /* Rodapé fixo apenas nesta página */
    .footer.ajuda {
      background: #0c2b1d;
      color: #d6efe3;
      text-align: center;
      padding: 15px 0;
      margin-top: auto;
    }
    .barra-pesquisa {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 30px auto;
      max-width: 60px;
      background: white;
      border-radius: 40px;
      padding: 10px 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .barra-pesquisa input {
      flex: 10;
      border: none;
      outline: none;
      font-size: 18px;
      padding: 10px;
    }
    .barra-pesquisa button {
      background: none;
      border: none;
      cursor: pointer;
      color: #007b55;
      font-size: 22px;
    }
    .ajuda-btn {
      display: block;
      background: #fff;
      margin: 20px auto;
      padding: 20px 40px;
      border-radius: 20px;
      font-size: 18px;
      font-weight: bold;
      color: #007b55;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .ajuda-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }
    .footer {
      text-align: center;
      padding: 20px 0;
      margin-top: 80px;
      color: #004d32;
    }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
  }
 
  body {
    background-color: #e9f4ec;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
 
  /* ===== CABEÇALHO ===== */
  /* Estilos do cabeçalho estão no geral.css (.topbar, .topnav, etc.) */
 
  /* ===== CONTEÚDO ===== */
  main {
    flex: 1;
    text-align: center;
    padding: 60px 20px;
  }
 
  h2 {
    color: #0e3b26;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
  }
 
  .subtitulo {
    color: #2f4a23;
    font-size: 16px;
    margin-bottom: 40px;
  }
 
  /* ===== MAPA ===== */
  .mapa-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
  }

  /* Mapa Interativo */
  .mapa-interativo {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(8, 12, 10, 0.12);
    overflow: hidden;
    z-index: 1;
  }

  /* Legenda de Riscos */
  .legenda-riscos {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(8, 12, 10, 0.08);
    width: 100%;
    max-width: 600px;
  }

  .legenda-riscos h3 {
    margin: 0 0 16px;
    color: var(--green-deep);
    font-size: 18px;
    font-weight: 700;
  }

  .legenda-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #07221a;
  }

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

  .legenda-cor {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .legenda-cor.risco-alto {
    background-color: #dc2626;
  }

  .legenda-cor.risco-medio {
    background-color: #f59e0b;
  }

  .legenda-cor.risco-baixo {
    background-color: #fbbf24;
  }

  /* Estilos para marcadores customizados */
  .marcador-risco,
  .marcador-centro {
    background: transparent !important;
    border: none !important;
  }

  /* Ajustes responsivos */
  @media(max-width: 880px){
    .mapa-interativo {
      height: 500px;
    }
    
    .legenda-riscos {
      padding: 16px;
    }
  }

  @media(max-width: 600px){
    .mapa-interativo {
      height: 400px;
    }
  }

  /* ===== INFO ===== */
  .info {
    position: absolute;
    text-align: center;
    font-weight: 600;
    color: #0e3b26;
  }
 
  .info img {
    width: 28px;
    display: block;
    margin: 0 auto;
  }
 
  .info span {
    color: #e86b1d;
    font-weight: 700;
    font-size: 15px;
  }
 
  .info p {
    font-size: 13px;
  }
 
  /* ===== POSICIONAMENTO ===== */
  .serra {
    top: 100px;
    left: 130px;
  }
 
  .estrada {
    top: 160px;
    right: 100px;
  }
 
  .fazendas {
    bottom: 60px;
    left: 220px;
  }
 
  /* ===== SETAS ===== */
  .seta {
    font-size: 35px;
    color: #0e3b26;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
  }
 
  .seta:hover {
    transform: scale(1.2);
    color: #1a5a38;
  }
 
  /* ===== RODAPÉ ===== */
  footer {
    background-color: #0e3b26;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 13px;
  }
 
