body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f3f3f3;
}

.card {
    max-width: 90vh;
    width: 95%;
    height: 90vh;
    max-height: 95%;
    background: url('fundo.png') no-repeat center/cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.card-header img {
    display: block;
    max-width: 50%;
    margin: 10px auto;
}

.card-content {
    font-size: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.card-content img {
    max-width: 70px;
    margin-right: 10px;
}

img:hover {
    opacity: 60%;
    transition: 150ms;
    -webkit-transform: scale(1.06);
   transform: scale(1.06);
}

.bold {
    font-weight: bold;
    color: #2A5179;
    font-size: 40px;
}

.card-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 51, 102, 0.65);
    padding: 10px;
}

.card-footer a {
    display: flex;
    align-items: center;
    color: #E3E3E3;
    margin: 5px 0;
    text-decoration: none;
}

.card-footer a:hover {
    color: #ffffff;
}

.card-footer img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

@media (max-height: 700px) {
    .card {
        height: 95vh;
    }

    .card-content {
        padding: 10px;
    }

    .card-content img {
        max-width: 40px;
    }

    .card-content li {
        font-size: 3vh;
    }

    .bold {
        font-size: 3.5vh;
    }

    .card-footer {
        height: 10%;
    }
}

@media (max-width: 480px) {

    .card-content li {
        flex-direction: column;
        text-align: center;
        font-size: 3vh;
    }

    .bold {
        font-size: 3.5vh;
    }

    .card-content img {
        margin: 0 auto 10px;
        max-width: 15%;
        max-height: 15%;
    }

    .card-footer {
        flex-direction: column;
        text-align: center;
    }

    .card-footer div {
        margin-bottom: 10px;
    }
}

.seo-keywords {
    display: none;
}

.pulse {
    animation: pulse 0.7s infinite;
    animation-direction: alternate;
    -webkit-animation-name: pulse;
    animation-name: pulse;
  }
  
  @-webkit-keyframes pulse {
    0% {
      -webkit-transform: scale(1);
      -webkit-filter: brightness(100%);
    }
    100% {
      -webkit-transform: scale(1.1);
      -webkit-filter: brightness(200%);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      filter: brightness(100%);
    }
    100% {
      transform: scale(1.3);
    }
  }