@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300&display=swap');

:root {
    --cor-de-fundo: #EBECEE;
    --fonte-principal: "Bahnschrift";
    --fonte-secundaria: 'Signika', sans-serif;
    --cor--frinni: #E3003A;
}

.corpo {
    background-color: var(--cor-de-fundo);
    padding: 2em; 
    border-radius: 10px;
}

.Beneficios {
    display: flex;
    flex-direction: column;
    align-items: center;  
    gap: 2em;             
}

.Beneficios img {
    width: 98%;            
    max-width: 1200px;     
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    padding: 1em;
    background-color: white;
}


.Beneficios img:hover {
    transform: scale(1.03);
}

@media (max-width: 600px) {
  .Beneficios {
    padding: 1em;
    gap: 1.5em;
  }

  .Beneficios img {
    width: 100%;
    max-width: 100%;
    padding: 0.5em;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  }
}
