: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 ===== */
  .topbar {
    background: var(--green-deep);
    color: white;
    position: sticky;
    top: 0;
    z-index: 60;
    box-shadow: 0 2px 8px rgba(3,10,6,0.08);
  }
  .topbar .container {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 20px;
    min-height: 80px;
  }
  .brand-left { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    flex: 1;
  }
  
  .brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
    cursor: pointer;
  }
  
  .brand-link:hover {
    opacity: 0.8;
  }
  
  .brand-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
  }
  .logo-circle {
    width: 70px; height: 70px; border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }
  .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .site-title { 
    font-weight: 700; 
    font-size: 18px; 
    letter-spacing: 0.6px;
    line-height: 1.2;
  }
  
  .site-subtitle {
    font-size: 12px;
    color: #d6efe3;
    margin-top: 3px;
    font-weight: 400;
  }
  .topnav { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
  .topnav a {
    color: white; 
    font-weight: 600; 
    padding: 10px 14px; 
    border-radius: 6px;
    white-space: nowrap;
    font-size: 14px;
    transition: all 0.2s ease;
  }
  .topnav a:hover { background: rgba(255,255,255,0.06); }
  .topnav a.btn-entrar {
    background: var(--accent) !important;
    color: var(--green-deep) !important;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 40px;
    line-height: 1;
  }
  .topnav a.btn-entrar:hover {
    background: #e6b300 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  .topnav a.btn-entrar svg {
    width: 20px;
    height: 20px;
    stroke: var(--green-deep);
    fill: none;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
  }
  .topnav a.btn-entrar:hover svg {
    stroke: var(--green-deep);
  }
 
 
  /* ===== Hero ===== */
  .hero-wrap { 
    max-width: 100%; 
    margin: 22px auto; 
    padding: 0 20px; 
  }
  @media (min-width: 881px) {
    .hero-wrap {
      padding: 0;
      margin: 0;
    }
  }
  .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);
    max-width: 100%;
    width: 100%;
  }
  @media (min-width: 881px) {
    .hero-card {
      border-radius: 0;
      border-left: none;
    }
  }
  .hero-media {
    height: 550px;
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
  }
  @media (min-width: 881px) {
    .hero-media {
      height: 500px;
      border-radius: 0;
    }
  }
  @media (min-width: 1200px) {
    .hero-media {
      height: 600px;
    }
  }
  @media (min-width: 1400px) {
    .hero-media {
      height: 650px;
    }
  }
  @media (max-width: 880px) {
    .hero-wrap {
      padding: 0 20px;
      margin: 22px auto;
    }
    .hero-card {
      border-radius: 12px;
    }
    .hero-media {
      background-size: contain;
      background-position: center top;
      border-radius: 12px;
    }
  }
  .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: #0d4d35; 
    margin: 0 0 14px; 
    font-weight: 600; 
    display: block;
    text-align: left;
    text-shadow: none !important;
  }
  @media(min-width: 881px){
    .hero-card .hero-content { 
      text-align: center !important; 
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
    }
    .hero-card .hero-content .hero-title {
      text-align: center !important;
    }
    .hero-card .hero-content .hero-excerpt { 
      text-align: center !important; 
      display: block !important;
      width: 100% !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .hero-card .hero-content .hero-meta {
      justify-content: center !important;
    }
  }
  @media(max-width: 880px){
    .hero-content { 
      text-align: left !important; 
    }
    .hero-excerpt { 
      text-align: left !important; 
    }
  }
  .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(3,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-icon svg {
    width: 40px;
    height: 40px;
    stroke: 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);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .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; }
  
  /* News Item Hover */
  .news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(8, 12, 10, 0.08);
  }

  /* Modal de Notícias */
  .news-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
  }
  
  body.modal-open .topbar {
    position: relative;
  }

  .news-modal-content {
    background-color: white;
    margin: auto;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease;
  }

  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .news-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--muted);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .news-modal-close:hover {
    color: var(--green-deep);
    background: white;
    transform: rotate(90deg);
  }

  .news-modal-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
    position: relative;
  }

  .news-modal-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
  }

  .news-modal-header {
    padding: 30px;
    padding-top: 20px;
    border-bottom: 1px solid #e8f9ee;
  }

  .news-modal-title {
    font-size: 28px;
    color: var(--green-deep);
    margin: 0 0 12px;
    font-weight: 800;
    line-height: 1.3;
  }

  .news-modal-subtitle {
    font-size: 18px;
    color: var(--muted);
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
  }

  .news-modal-body {
    padding: 30px;
    color: #07221a;
    line-height: 1.8;
    font-size: 16px;
  }

  .news-modal-body p {
    margin: 0 0 18px;
    text-align: justify;
  }

  .news-modal-body p:last-child {
    margin-bottom: 0;
  }

  .news-modal-body strong {
    color: var(--green-deep);
    font-weight: 700;
  }

  @media(max-width: 880px){
    .news-modal-content {
      max-width: 100%;
      margin: 0;
      border-radius: 0;
      max-height: 100vh;
    }
    
    .news-modal-image {
      height: 250px;
      border-radius: 0;
    }
    
    .news-modal-header {
      padding: 20px;
    }
    
    .news-modal-title {
      font-size: 22px;
    }
    
    .news-modal-subtitle {
      font-size: 16px;
    }
    
    .news-modal-body {
      padding: 20px;
      font-size: 15px;
    }
    
    .news-modal-close {
      top: 10px;
      right: 10px;
      width: 36px;
      height: 36px;
      font-size: 28px;
    }
  }
 
 
  /* ===== Footer ===== */
  footer, .footer {
    background: var(--green-deep);
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 1;
  }
  
  .footer-container {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .footer-section h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
  }
  
  .footer-section p, .footer-section li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 8px 0;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
  }
  
  .footer-contact-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
  }
  
  .footer-bottom {
    margin-top: 15px;
    padding-top: 15px;
    text-align: center;
  }
  
  /* Rodapé compacto */
  .footer-compact {
    padding: 25px 20px 15px;
  }
  
  .footer-compact .footer-section h4 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .footer-compact .footer-contact-item {
    margin-bottom: 6px;
  }
  
  .footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
  }
  
  /* Responsividade do Footer */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
    
    footer, .footer {
      padding: 30px 20px 20px;
    }
    
    .footer-section h4 {
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .footer-container {
      gap: 25px;
    }
    
    footer, .footer {
      padding: 25px 15px 15px;
    }
  }
  
  /* Compatibilidade com estrutura antiga */
  .footer-content {
    max-width: var(--maxw);
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-content h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
  }
  
  .footer-content p {
    margin: 0;
    font-size: 14px;
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
  }
 
 
  /* ===== 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; }
 
 
  /* ===== Menu Mobile com Checkbox ===== */
  
  /* Esconder checkbox */
  #check {
    display: none;
  }
  
  /* Botão hamburger - escondido no desktop */
  .checkbtn {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: white;
    padding: 12px;
    user-select: none;
    -webkit-user-select: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    line-height: 1;
    position: relative;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
  }
  
  .checkbtn:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* Ícone hamburger padrão */
  .checkbtn i {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    visibility: visible;
  }
  
  /* Esconder hamburger quando menu aberto */
  #check:checked ~ .checkbtn i {
    opacity: 0;
    transform: rotate(180deg) scale(0);
    visibility: hidden;
  }
  
  /* Criar ícone X quando menu aberto */
  .checkbtn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-180deg) scale(0.8);
    font-size: 32px;
    color: white;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
  }
  
  #check:checked ~ .checkbtn::after {
    content: '';
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  /* Menu desktop - visível no desktop */
  .nav-desktop {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .nav-desktop a {
    color: white; 
    font-weight: 600; 
    padding: 10px 14px; 
    border-radius: 6px;
    white-space: nowrap;
    font-size: 14px;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  
  .nav-desktop a:hover {
    background: rgba(255,255,255,0.1);
  }
  
  /* Item ativo no menu */
  .nav-desktop a.active {
    background: rgba(255,255,255,0.15);
    border-bottom: 2px solid var(--accent);
    font-weight: 700;
  }
  
  .nav-desktop a.active:hover {
    background: rgba(255,255,255,0.2);
  }
  
  .nav-desktop a.btn-entrar {
    background: var(--accent) !important;
    color: var(--green-deep) !important;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 40px;
    line-height: 1;
  }
  
  .nav-desktop a.btn-entrar:hover {
    background: #e6b300 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  .nav-desktop a.btn-entrar svg {
    width: 20px;
    height: 20px;
    stroke: var(--green-deep);
    fill: none;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
  }
  
  .nav-desktop a.btn-entrar:hover svg {
    stroke: var(--green-deep);
  }
  
  /* Menu mobile - escondido por padrão */
  .nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green-deep);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 20px 20px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    
    /* Animação de entrada */
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  /* Links do menu mobile */
  .nav-mobile a {
    width: 100%;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    color: white;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
  }
  
  /* Animação dos links quando menu abre */
  #check:checked ~ .nav-mobile a {
    transform: translateX(0);
    opacity: 1;
  }
  
  /* Delay escalonado para cada link */
  #check:checked ~ .nav-mobile a:nth-child(1) { transition-delay: 0.1s; }
  #check:checked ~ .nav-mobile a:nth-child(2) { transition-delay: 0.15s; }
  #check:checked ~ .nav-mobile a:nth-child(3) { transition-delay: 0.2s; }
  #check:checked ~ .nav-mobile a:nth-child(4) { transition-delay: 0.25s; }
  #check:checked ~ .nav-mobile a:nth-child(5) { transition-delay: 0.3s; }
  #check:checked ~ .nav-mobile a:nth-child(6) { transition-delay: 0.35s; }
  
  .nav-mobile a:hover,
  .nav-mobile a:active {
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Item ativo no menu mobile */
  .nav-mobile a.active {
    background: rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--accent);
    font-weight: 700;
    padding-left: 16px;
  }
  
  .nav-mobile a:last-child {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-bottom: none;
    text-align: center;
  }
  
  /* Responsivo - Tablet */
  @media(max-width: 1100px) {
    .topbar .container {
      gap: 15px;
      padding: 12px 15px;
    }
    
    .nav-desktop {
      gap: 15px;
    }
    
    .nav-desktop a {
      padding: 8px 12px;
      font-size: 13px;
    }
  }
  
  /* Responsivo - Mobile */
  @media(max-width: 880px) {
    /* Garantir que o nav seja visível no mobile */
    .topnav {
      display: flex !important;
      justify-content: flex-end;
      align-items: center;
      position: relative;
      width: 100%;
      height: auto;
      min-height: 60px;
    }
    
    /* Esconder menu desktop */
    .nav-desktop {
      display: none !important;
    }
    
    /* Mostrar botão hamburger */
    .checkbtn {
      display: flex !important;
      position: relative;
      z-index: 1000;
    }
    
    /* Quando checkbox está marcado, mostrar menu mobile */
    #check:checked ~ .nav-mobile {
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
    }
    
    .topbar .container {
      padding: 10px 15px;
      min-height: 70px;
    }
    
    .logo-circle {
      width: 60px;
      height: 60px;
    }
    
    .brand-left {
      justify-content: flex-start;
      text-align: left;
      gap: 12px;
    }
    
    .brand-link {
      gap: 12px;
    }
    
    .brand-text {
      align-items: flex-start;
      text-align: left;
    }
    
    .site-title {
      font-size: 16px;
      line-height: 1.1;
    }
    
    .site-subtitle {
      font-size: 11px;
      margin-top: 2px;
    }
  }

  /* ===== Responsivo ===== */
  @media(max-width:1100px){
    .services { grid-template-columns: repeat(3,1fr); }
  }
  @media(max-width:880px){
    .services { grid-template-columns: repeat(2,1fr); }
  }
  @media(max-width:600px){
    .services { grid-template-columns: 1fr; }
    /* .topnav { display: none; } - Removido para permitir menu mobile */
    /* #mobileMenuToggle { display: block; } - Removido, usando novo menu */
    .hero-media { 
      height: auto;
      min-height: 300px;
      background-size: contain;
      background-position: center top;
      padding-bottom: 56.25%; /* 16:9 aspect ratio para manter proporção */
    }
    .news-item { flex-direction: column; }
    .news-thumb { width: 100%; height: 160px; }
  }
  @media(max-width:520px){
    .services { grid-template-columns: 1fr; }
    .hero-media { 
      height: auto;
      min-height: 250px;
      background-size: contain;
      background-position: center top;
      padding-bottom: 56.25%;
    }
    .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: 12px;
    padding: 12px 20px;
    max-width: 600px;
    margin: 30px auto 40px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .search-container:focus-within {
    border-color: var(--green);
    box-shadow: 0 6px 16px rgba(15, 122, 74, 0.15);
  }

  .search-icon {
    width: 20px;
    height: 20px;
    color: var(--muted);
    margin-right: 12px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: opacity 0.2s ease;
  }

  .search-spinner {
    width: 20px;
    height: 20px;
    color: var(--green);
    margin-right: 12px;
    flex-shrink: 0;
    stroke: currentColor;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  .search-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    color: #07221a;
  }

  .search-input::placeholder {
    color: var(--muted);
  }
 
 
  /* ===== Sugestões ===== */
  .suggestions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 30px auto 0;
    padding: 0 20px;
  }

  .suggestion-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid var(--green);
    overflow: hidden;
    cursor: pointer;
  }

  .suggestion-box.active {
    border-left-color: var(--accent);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .suggestion-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .suggestion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
  }

  .suggestion-box strong {
    color: var(--green-deep);
    font-size: 18px;
    display: block;
    font-weight: 700;
    flex: 1;
    margin: 0;
  }

  .suggestion-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f9ee;
    color: var(--green);
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
  }

  .suggestion-box.active .suggestion-toggle {
    background: var(--accent);
    color: var(--green-deep);
    transform: rotate(45deg);
  }

  .suggestion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
  }

  .suggestion-box.active .suggestion-content {
    max-height: 500px;
    padding: 0 24px 20px;
  }

  .suggestion-box p {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
  }

  .no-results {
    max-width: 700px;
    margin: 30px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .no-results-content {
    padding: 40px 30px;
    text-align: center;
  }

  .no-results-icon {
    width: 64px;
    height: 64px;
    color: var(--muted);
    margin: 0 auto 20px;
    display: block;
    opacity: 0.6;
  }

  .no-results-content h3 {
    color: var(--green-deep);
    font-size: 22px;
    margin: 0 0 12px;
    font-weight: 700;
  }

  .no-results-content > p {
    color: var(--muted);
    font-size: 16px;
    margin: 0 0 30px;
    line-height: 1.6;
  }

  /* Formulário de Contato */
  .contact-form {
    text-align: left;
    margin-top: 30px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    color: var(--green-deep);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f9ee;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #07221a;
    background: #f7faf9;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    margin: 0;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 0.8;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    background: white;
    box-shadow: 0 0 0 3px rgba(15, 122, 74, 0.1);
  }
  
  .form-group input:invalid:not(:placeholder-shown),
  .form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc2626;
  }

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

  .btn-submit {
    width: 100%;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(15, 122, 74, 0.2);
  }

  .btn-submit:hover {
    background: #0a5f3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 122, 74, 0.3);
  }

  .btn-submit:active {
    transform: translateY(0);
  }

  .btn-submit svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .btn-submit span {
    flex-shrink: 0;
  }

  .form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 30px;
    background: #e8f9ee;
    border-radius: 12px;
    border: 2px solid var(--green);
  }

  .form-success svg {
    width: 48px;
    height: 48px;
    color: var(--green);
  }

  .form-success p {
    color: var(--green-deep);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-align: center;
  }

  @media(max-width: 600px){
    .no-results-content {
      padding: 30px 20px;
    }

    .no-results-content h3 {
      font-size: 20px;
    }

    .form-group input,
    .form-group textarea {
      font-size: 16px; /* Evita zoom no mobile */
    }
  }
 
 
  /* ===== Rodapé ===== */
  .footer {
    background: var(--green-deep);
    color: white;
    text-align: center;
    padding: 18px 20px;
    font-size: 14px;
    margin-top: 40px;
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 1;
  }
  
  .footer p {
    color: rgba(255, 255, 255, 0.95);
    margin: 4px 0;
  }
  
  .footer h3 {
    color: white;
    font-weight: 600;
  }
 
 
  /* ===== Responsividade ===== */
  @media (max-width: 600px) {
    .header {
      flex-direction: column;
      gap: 10px;
      padding: 16px;
    }
 
 
    .help-title {
      font-size: 22px;
    }
 
 
    .search-container {
      max-width: 90%;
    }
 
 
    /* Estilos de suggestion-box já definidos acima */
  }
 
 
  /* ===== 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: 150px;
    height: 150px;
    object-fit: contain;
    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;
  }

  .page .btn:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

  /* Estilos para a página de recuperação de senha */
  .page .form-links {
    margin-top: 20px;
    text-align: center;
  }

  .page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
  }

  .page .back-link:hover {
    color: #008037;
    border-color: #008037;
    background: #f0f8f4;
  }

  .page .back-link svg {
    flex-shrink: 0;
  }

  @media (max-width: 480px) {
    .page {
      padding: 30px 25px;
    }
    .page .login-header h1 {
      font-size: 22px;
    }
    .page .logo {
      width: 120px;
      height: 120px;
    }
  }
 
 
 
 
  .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.65);
  }


  /* .hero-content styles moved to main definition above to avoid conflicts */


  .hero-content {
    position: relative;
    color: white;
    z-index: 2;
  }

  .hero-content h1 {
    font-size: 34px;
    margin-bottom: 14px;
    font-weight: 800;
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
  }


  .hero-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #ffffff !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    font-weight: 500;
  }
 
 
  .hero-content .btn {
    background: var(--accent) !important;
    color: var(--green-deep) !important;
    font-weight: 700 !important;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .hero-content .btn:hover {
    background: #e6b300 !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
  }
 
 
  /* 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(4, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  @media(max-width: 1100px){
    .card-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media(max-width: 600px){
    .card-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
  }
  
  @media(max-width: 480px){
    .card-container {
      grid-template-columns: 1fr;
    }
  }
 
 
  .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 .icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--green);
  }
  
  /* Ícones de ação */
  .acao-icon svg {
    width: 24px;
    height: 24px;
  }
  
  /* Ícone do menu hambúrguer */
  .checkbtn svg {
    width: 24px;
    height: 24px;
    stroke: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: visible;
  }
  
  /* Esconder SVG do hambúrguer quando menu aberto */
  #check:checked ~ .checkbtn svg {
    opacity: 0;
    transform: rotate(180deg) scale(0);
    visibility: hidden;
  }
  
  /* Ícones de prevenção */
  .prevention-icon svg {
    width: 48px;
    height: 48px;
  }
 
 
  .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(3, 1fr);
    gap: 24px;
    margin-top: 30px;
  }
  
  @media(max-width: 900px){
    .materiais-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }
  
  @media(max-width: 600px){
    .materiais-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
  }
  
  @media(max-width: 480px){
    .materiais-grid {
      grid-template-columns: 1fr;
    }
  }
 
 
  .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 - Cards */
  .botoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-content: center;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .acao-card {
    background: white;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 22px rgba(8, 12, 10, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .acao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(8, 12, 10, 0.12);
  }

  .denuncia-card {
    border-top: 4px solid #ff6b35;
  }

  .denuncia-card:hover {
    border-color: #ff6b35;
    background: #fff5f2;
  }

  .contato-card {
    border-top: 4px solid var(--green);
  }

  .contato-card:hover {
    border-color: var(--green);
    background: #f0f9f5;
  }

  .acao-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
  }

  .alerta-icon {
    animation: alertaMovimento 1.5s ease-in-out infinite;
  }

  @keyframes alertaMovimento {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-8px) scale(1.1);
    }
  }

  .telefone-icon {
    animation: telefoneMovimento 2s ease-in-out infinite;
  }

  @keyframes telefoneMovimento {
    0%, 100% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(-10deg);
    }
    75% {
      transform: rotate(10deg);
    }
  }

  .acao-card h3 {
    font-size: 20px;
    color: var(--green-deep);
    margin: 0 0 8px;
    font-weight: 700;
  }

  .acao-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
  }

  @media(max-width: 600px){
    .botoes {
      grid-template-columns: 1fr;
      gap: 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;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    }
    .hero-content p {
      font-size: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 0, 0, 0.5);
    }
    .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;
    }
   
    /* Estilos de FAQ removidos - agora usando os estilos principais acima */
   
    /* 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;
    }



