/* Paleta */
:root {
    --verde-principal: #84bc9b;
    --verde-claro: #4ffc4c;
    --cinza-escuro: #666666;
    --cinza-claro: #a5a8a5;
    --verde-secundario: #69937a;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
  }
  
  .bg-custom {
    background-color: var(--verde-principal) !important;
  }
  
  .btn-custom {
    background-color: var(--verde-secundario);
    color: white;
    border: none;
  }
  
  .btn-custom:hover {
    background-color: var(--verde-claro);
    color: black;
  }
  
  .hero {
    background-color: var(--verde-principal);
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  
  .card {
    border: none;
    background-color: #ffffff;
  }
  
  .card-title {
    color: var(--verde-secundario);
  }
  
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  body {
    display: flex;
    flex-direction: column;
  }
  
  main {
    flex: 1;
  }
  
  .card {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }