.highlight-text {
    font-size: 2em; /* Aumenta o tamanho do texto */
    font-weight: bold; /* Torna o texto mais espesso */
    color: #ff5733; /* Cor vibrante */
    border: 2px solid #ff5733; /* Borda com a mesma cor do texto */
    padding: 10px;
    border-radius: 5px; /* Bordas arredondadas */
    margin-top: 20px;
    line-height: 1.2; /* Espaçamento entre linhas */
    text-transform: uppercase; /* Deixa o texto em letras maiúsculas */
    display: inline-block;
    animation: zoomInOut 2s infinite; /* Animação de zoom */
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1); /* Tamanho original */
    }
    50% {
        transform: scale(1.1); /* Zoom in */
    }
}
        @media (max-width: 768px) {
            
        img {
            padding: 15px;
        }
        .language-switch img{
            width:60px !important;
        }
        .highlight-text {
            font-size: 1.8em; /* Ajusta o tamanho do texto para telas menores */
        }
    }

.language-switch img {
    width: 30px;
    cursor: pointer;
}
.name-signature{
    width: 100%;
}
.informative{
    padding: 10px;
    font-size: 14px;
    color: red;
}
.event-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .event-text {
    flex: 1 1 55%;
  }
  
  .event-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
  }
  
  .event-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .event-wrapper {
      flex-direction: column;
    }
  
    .event-text {
      width: 100%;
    }
  
    .event-image {
      margin-top: 2rem;
      width: 100%;
      justify-content: center;
    }
    
  }
  .badge {
    background-color: #4caf50; /* verde */
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
  }