body {
  max-width: 95%;
  margin: auto;
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Para Read more */
#more {display: none;}

/* Para acordeon */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 25px;
  font-weight: bold;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc; 
}

.accordion:after {
  content: '\002B';
  color: black;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

/* Botões Login, registar */
.action-actions {
    margin-top: 20px;
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.action-button {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #667eea;
    color: white;
    font-size: 16px;
    transition: background-color 0.3s;
}

.action-button:hover {
    background-color: #5a67d8;
}

.action-button.secondary {
    background-color: #e2e8f0;
    color: #333;
}

.action-button.secondary:hover {
    background-color: #cbd5e0;
}

.login-container .submit-button {
    background-color: #667eea;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.login-container .submit-button:hover {
    background-color: #5a67d8;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.sonsie-lightsea.blink {
  animation: blink 2s infinite; /* Muda aqui o tempo total (2s = lento) */
}

.botao-lightsea.blink {
  animation: blink 2s infinite; /* Muda aqui o tempo total (2s = lento) */
}



