body {
  font-family: Arial, sans-serif;
  background-color: #fff2f2;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ff787e;
  color: white;
  padding: 30px 20px;
}

.linha-topo {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.menu-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.botao {
  background-color: #ffdee0;
  color: #ff787e;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  width: 130px;
  transition: background-color 0.2s;
}

.botao:hover {
  background-color: #ffc5c7;
}

.titulo-area {
  flex-grow: 1;
  text-align: center;
}

.titulo-area h1 {
  font-family: 'Times New Roman', serif;
  font-size: 2.5em;
  margin: 0;
  color: white;
}

.subtitulo {
  margin-top: 10px;
  font-size: 1.1em;
  color: white;
}

/* Seção das donas */
.donas {
  padding: 40px 20px;
  text-align: center;
}

.donas h2 {
  color: #ff787e;
  border-bottom: 2px solid #ffabaf;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 40px;
  font-family: 'Times New Roman', serif;
}

.dona-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.dona {
  background-color: #ffdee0;
  padding: 25px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
}

.dona img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffabaf;
  margin-bottom: 15px;
}

.dona h3 {
  color: #ff9297;
  margin: 0 0 10px;
}

.dona p {
  font-size: 0.95em;
  color: #444;
}

footer {
  background-color: #ffc5c7;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}



/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal {
  background-color: #fff8f8;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  position: relative;
  text-align: justify;
}

.fechar-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #ff787e;
}

.feedback-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;

  max-height: 300px; /* controla a altura máxima */
  overflow-y: auto;  /* ativa a rolagem vertical */
  padding-right: 10px;
}

.feedback {
  background-color: #ffdee0;
  padding: 15px;
  border-radius: 10px;
}

.feedback img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
