/* 🔹 CONTENITORE ESTESO E CENTRATO PER L'INTERFACCIA CHAT */
.vic-full-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #f0f3fa;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* 🔹 CONTENITORE INTERNO CHAT RESPONSIVO E FLUIDO */
.vic-chat-ui {
  width: 100%;
  max-width: 1440px; /* Piena larghezza fino al massimo consentito */
  margin: 0 auto;
  padding: 60px 40px;
  background-color: #f0f3fa;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1024px) {
  .vic-chat-ui {
    max-width: 960px;
    padding: 40px 24px;
    margin: 30px auto;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  }
}

@media (max-width: 480px) {
  .vic-chat-ui {
    padding: 30px 16px;
    border-radius: 16px;
  }
}

/* 🔹 TITOLO E SOTTOTITOLO CENTRALIZZATI */
.vic-chat-header {
  text-align: center;
  margin-bottom: 30px;
}

.vic-chat-header .vic-chat-avatar {
  font-size: 3rem;
  display: inline-block;
  margin-bottom: 12px;
}

.vic-chat-header h2 {
  font-size: 2.2rem;
  margin: 10px 0;
  color: #27344E;
}

.vic-chat-header h4 {
  font-size: 1.2rem;
  color: #3F3F3F;
  font-weight: 400;
  margin: 0 auto 25px;
  max-width: 760px;
  line-height: 1.5;
}

/* 🔹 GRIGLIA SUGGERIMENTI RESPONSIVA IN LINEA ANCHE DESKTOP */
.vic-chat-suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  justify-content: center;
  margin-bottom: 30px;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.vic-suggestion {
  background-color: #ECEDFC;
  border: none;
  padding: 14px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1em;
  color: #3F3F3F;
  transition: background-color 0.3s ease;
  font-weight: 500;
  text-align: center;
}

.vic-suggestion:hover {
  background-color: #D4D7FB;
}

/* 🔹 FORM DI INVIO TESTO */
.vic-chat-form {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.vic-chat-form textarea {
  width: 100%;
  height: 140px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1em;
  resize: vertical;
  color: #3F3F3F;
  background-color: #ffffff;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  font-family: inherit;
  margin-bottom: 20px;
}

.vic-chat-form textarea:focus {
  color: #3F3F3F !important;
  background-color: #ffffff !important;
}

.vic-chat-form button {
  background-color: #388A5C;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
  display: inline-block;
  margin-top: 10px;
}

.vic-chat-form button:hover {
  background-color: #2f704c;
}

/* 🔹 BOX RISPOSTA AI */
.vic-ai-box {
  background-color: #F5F5FE;
  border-left: 5px solid #388A5C;
  padding: 20px;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 0.95em;
  color: #3F3F3F;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vic-ai-box h4 {
  margin-top: 0;
  color: #27344E;
  font-size: 1.05em;
  margin-bottom: 10px;
}

.vic-ai-box pre {
  margin: 0;
  font-family: inherit;
  white-space: pre-wrap;
  line-height: 1.6;
}
/* 🔹 STILE "CHAT A BOLLE" PER CONVERSAZIONE */
.vic-user-bubble,
.vic-ai-bubble,
.vic-error-bubble {
  padding: 16px 20px;
  margin: 12px 0;
  border-radius: 18px;
  max-width: 90%;
  font-size: 1em;
  line-height: 1.5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.vic-user-bubble {
  background-color: #D4D7FB;
  color: #27344E;
  align-self: flex-end;
  text-align: right;
  margin-left: auto;
  border-top-right-radius: 0;
}

.vic-ai-bubble {
  background-color: #F0F3FA;
  border-left: 4px solid #388A5C;
  color: #3F3F3F;
  align-self: flex-start;
  text-align: left;
  border-top-left-radius: 0;
}

.vic-error-bubble {
  background-color: #FFE5E5;
  color: #a94442;
  font-weight: bold;
  align-self: flex-start;
  border-left: 4px solid #D9534F;
}

.vic-ai-response {
  white-space: pre-wrap;
  font-family: inherit;
  margin-top: 6px;
}

/* 🔹 CONTAINER DELLA RISPOSTA (chat log) */
#ai-response {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 20px;
  box-sizing: border-box;
}
.vic-chat-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.vic-chat-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.vic-user-bubble,
.vic-ai-bubble,
.vic-error-bubble {
  padding: 16px 20px;
  margin: 12px 0;
  border-radius: 18px;
  max-width: 90%;
  font-size: 1em;
  line-height: 1.5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.vic-user-bubble {
  background-color: #D4D7FB;
  color: #27344E;
  align-self: flex-end;
  text-align: right;
  margin-left: auto;
  border-top-right-radius: 0;
}

.vic-ai-bubble {
  background-color: #F0F3FA;
  border-left: 4px solid #388A5C;
  color: #3F3F3F;
  align-self: flex-start;
  text-align: left;
  border-top-left-radius: 0;
}

.vic-error-bubble {
  background-color: #FFE5E5;
  color: #a94442;
  font-weight: bold;
  align-self: flex-start;
  border-left: 4px solid #D9534F;
}

.vic-ai-response {
  white-space: pre-wrap;
  font-family: inherit;
  margin-top: 6px;
}
.vic-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.vic-input-wrapper textarea {
  flex: 1;
  padding-right: 48px; /* spazio per il bottone */
}

.vic-input-wrapper button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #ccc;
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: not-allowed;
  transition: background-color 0.3s ease;
}

.vic-input-wrapper button.active {
  background-color: #388A5C;
  cursor: pointer;
}

.vic-input-wrapper button svg {
  stroke: white;
}
.vic-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.vic-input-wrapper textarea {
  flex: 1;
  padding-right: 56px;
  min-height: 120px;
  border-radius: 16px;
  border: 1px solid #ccc;
  font-size: 1.1em;
  resize: vertical;
  background-color: #fff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  font-family: inherit;
  color: #3F3F3F;
}

.vic-input-wrapper button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background-color: #ccc;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: not-allowed;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vic-input-wrapper button svg {
  stroke: #fff;
}

#vic-send-button.active {
  background-color: #388A5C;
  cursor: pointer;
}
.vic-bubble-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.vic-message-text {
  flex-grow: 1;
  word-break: break-word;
  font-size: 1em;
}

.vic-edit-btn {
  background: none;
  border: none;
  font-size: 1.1em;
  color: #888;
  cursor: pointer;
  visibility: hidden;
  transition: color 0.3s ease;
}

.vic-user-bubble:hover .vic-edit-btn {
  visibility: visible;
}

.vic-edit-btn:hover {
  color: #27344E;
}
/* 🔘 Stile pulsante conferma invio idea al reparto */
.vic-confirm-btn {
  margin-top: 16px;                /* Spazio sopra il pulsante */
  background-color: #388A5C;       /* Verde istituzionale coerente con palette */
  color: #fff;                     /* Testo bianco su sfondo verde */
  border: none;                    /* Nessun bordo */
  padding: 12px 24px;              /* Spaziatura interna comoda */
  font-size: 1em;                  /* Dimensione testo leggibile */
  border-radius: 12px;             /* Angoli arrotondati per stile moderno */
  cursor: pointer;                /* Cursore tipo mano */
  font-weight: 600;               /* Grassetto per enfasi */
  transition: background-color 0.3s ease; /* Effetto transizione colore on hover */
  display: inline-block;          /* Consente spaziatura e posizionamento flessibile */
}

/* 🟢 Effetto al passaggio del mouse (hover) */
.vic-confirm-btn:hover {
  background-color: #2f704c;       /* Verde più scuro per interazione visiva */
}

/* 🚫 Stile pulsante disabilitato (dopo l'invio o errore) */
.vic-confirm-btn:disabled {
  background-color: #ccc;          /* Grigio neutro */
  cursor: not-allowed;             /* Cursore bloccato */
  opacity: 0.8;                    /* Leggera trasparenza per evidenziare stato disattivo */
}
/* 🔹 BACHECA IDEE - Nuovo stile per lista idee pubblicate */
.vic-bacheca-idee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

.vic-idea-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-left: 5px solid #388A5C;
}

.vic-idea-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.vic-idea-card h3 {
  font-size: 1.3rem;
  color: #27344E;
  margin-bottom: 10px;
}

.vic-idea-card p {
  font-size: 1em;
  color: #3F3F3F;
  margin-bottom: 8px;
  line-height: 1.5;
}

.vic-idea-card .vic-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 500;
  color: #fff;
}

/* 🎯 Badge per stati idea */
.vic-badge.vic-nuova {
  background-color: #FFD700;
  color: #000;
}

.vic-badge.vic-valutazione {
  background-color: #007BFF;
}

.vic-badge.vic-approvata {
  background-color: #28A745;
}

.vic-badge.vic-lavorazione {
  background-color: #6C757D;
}

/* 🎛️ Filtro visivo per stati in alto */
.vic-filtri-stato {
  text-align: center;
  margin: 30px 0;
}

.vic-filtro {
  display: inline-block;
  margin: 0 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  background-color: #ECEDFC;
  color: #27344E;
  text-decoration: none;
  transition: background-color 0.3s;
}

.vic-filtro:hover {
  background-color: #D4D7FB;
}

.vic-filtro.active {
  background-color: #388A5C;
  color: #fff;
}

/* 🔹 Stile markdown friendly per formattazione contenuto idea */
.vic-idea-card strong,
.vic-idea-card b {
  font-weight: 600;
  color: #27344E;
}

.vic-idea-card em,
.vic-idea-card i {
  font-style: italic;
  color: #555;
}

.vic-idea-card ul,
.vic-idea-card ol {
  padding-left: 20px;
  margin: 10px 0;
}

.vic-idea-card ul li,
.vic-idea-card ol li {
  margin-bottom: 6px;
  line-height: 1.5;
}

/* 🔹 Pulsante conferma riepilogo visivamente integrato */
.vic-confirm-btn {
  margin-top: 18px;
  background-color: #388A5C;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.vic-confirm-btn:hover {
  background-color: #2f704c;
}

/* Stili esistenti lasciati invariati sopra... */

/* ✅ STILI COMPLETI OTTIMIZZATI PER BACHECA IDEE */

/* 🔹 CONTENITORE DELLA BACHECA */
.vic-bacheca-idee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 🔹 CARD IDEA VISIVA MIGLIORATA */
.vic-idea-card.vic-ai-summary {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-left: 5px solid #388A5C;
  text-align: left;
}

.vic-idea-card.vic-ai-summary:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* 🔹 TITOLO IDEA */
.vic-idea-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #27344E;
  margin-bottom: 20px;
  text-align: left;
}

/* 🔹 CONTENUTO IDEA */
.vic-idea-content {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3F3F3F;
  padding-bottom: 12px;
  border-bottom: 1px solid #ECEDFC;
  margin-bottom: 16px;
  text-align: left;
}

.vic-idea-content strong {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #27344E;
}

/* 🔹 METADATI DELLA IDEA */
.vic-meta {
  font-size: 0.95rem;
  color: #5a6c88;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vic-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.vic-meta-item {
  font-weight: 500;
}

/* 🔹 BADGE DI STATO */
.vic-idea-card .vic-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 500;
  color: #fff;
}

.vic-badge.vic-nuova {
  background-color: #FFD700;
  color: #000;
}

.vic-badge.vic-valutazione {
  background-color: #007BFF;
}

.vic-badge.vic-approvata {
  background-color: #28A745;
}

.vic-badge.vic-lavorazione {
  background-color: #6C757D;
}

/* 🔹 RESPONSIVE OTTIMIZZATO */
@media (max-width: 480px) {
  .vic-idea-title {
    font-size: 1.3rem;
    text-align: center;
  }

  .vic-idea-content {
    font-size: 1rem;
    text-align: left;
  }

  .vic-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 🔹 MARGINE TRA LE CARD */
.vic-idea-card + .vic-idea-card {
  margin-top: 30px;
}
.vic-input-wrapper textarea::placeholder {
  color: #3F3F3F;
  opacity: 0.6;
  font-family: inherit;
  font-size: 1em;
}

/* ✅ CSS COMPLETO PER BACHECA IDEE CON UI CHAT E MODIFICHE STYLE CHATGPT - COMMENTATO */

/* 🔹 CONTENITORE ESTESO PER LA CHAT */
.vic-full-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #f0f3fa;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* 🔹 CONTENITORE INTERNO CHAT RESPONSIVO */
.vic-chat-ui {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px;
  background-color: #f0f3fa;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1024px) {
  .vic-chat-ui {
    max-width: 960px;
    padding: 40px 24px;
    margin: 30px auto;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  }
}

@media (max-width: 480px) {
  .vic-chat-ui {
    padding: 30px 16px;
    border-radius: 16px;
  }
}

/* 🔹 SUGGERIMENTI DI INPUT */
.vic-chat-suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  justify-content: center;
  margin-bottom: 30px;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.vic-suggestion {
  background-color: #ECEDFC;
  border: none;
  padding: 14px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1em;
  color: #3F3F3F;
  font-weight: 500;
  text-align: center;
}

.vic-suggestion:hover {
  background-color: #D4D7FB;
}

/* 🔹 BOLLE MESSAGGI UTENTE E AI */
.vic-user-bubble,
.vic-ai-bubble,
.vic-error-bubble {
  padding: 16px 20px;
  margin: 12px 0;
  border-radius: 18px;
  max-width: 90%;
  font-size: 1em;
  line-height: 1.5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.vic-user-bubble {
  background-color: #D4D7FB;
  color: #27344E;
  align-self: flex-end;
  text-align: right;
  margin-left: auto;
  border-top-right-radius: 0;
  position: relative;
}

.vic-ai-bubble {
  background-color: #F0F3FA;
  border-left: 4px solid #388A5C;
  color: #3F3F3F;
  align-self: flex-start;
  text-align: left;
  border-top-left-radius: 0;
}

.vic-error-bubble {
  background-color: #FFE5E5;
  color: #a94442;
  font-weight: bold;
  align-self: flex-start;
  border-left: 4px solid #D9534F;
}

.vic-ai-response {
  white-space: pre-wrap;
  font-family: inherit;
  margin-top: 6px;
}

/* 🔹 BUBBLE + MATITA */
.vic-bubble-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.vic-edit-btn {
  background: none;
  border: none;
  font-size: 1.1em;
  color: #888;
  cursor: pointer;
  transition: color 0.3s ease;
  visibility: visible;
  opacity: 1;
}

.vic-edit-btn.floating-pencil {
  background: #3F3F3F;
  color: white;
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 1em;
  margin-left: 12px;
}

.vic-edit-btn:hover {
  color: #27344E;
  background-color: #e1e1e1;
}

/* 🔹 CAMPO TEXTAREA INPUT */
.vic-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.vic-input-wrapper textarea {
  flex: 1;
  padding-right: 56px;
  min-height: 120px;
  border-radius: 16px;
  border: 1px solid #ccc;
  font-size: 1.1em;
  resize: vertical;
  background-color: #fff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  font-family: inherit;
  color: #3F3F3F;
}

.vic-input-wrapper button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background-color: #ccc;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
}

#vic-send-button.active {
  background-color: #388A5C;
  cursor: pointer;
}

/* 🔹 TEXTAREA EDITABILE SU BUBBLE */
.vic-editable-textarea {
  width: 100%;
  min-height: 100px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 12px;
  resize: vertical;
  font-family: inherit;
}

/* 🔹 BOTTONE INVIA DOPO MODIFICA */
.vic-resend-btn {
  background-color: #388A5C;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 8px;
  margin-top: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.vic-resend-btn:hover {
  background-color: #2f704c;
}

.vic-resend-btn svg {
  stroke: #fff;
  fill: #fff;
}

/* 🔹 BOTTONE CONFERMA */
.vic-confirm-btn {
  margin-top: 18px;
  background-color: #388A5C;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.vic-confirm-btn:hover {
  background-color: #2f704c;
}

.vic-confirm-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.8;
}
/* 🔹 FORM DINAMICO NOME E COGNOME AL MOMENTO DELL'INVIO */
.vic-nome-form {
  margin-top: 16px;
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.vic-nome-form input[type="text"] {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  font-family: inherit;
  color: #27344E; /* ✅ TESTO BEN VISIBILE */
  background-color: #fff;
  transition: border-color 0.2s ease;
}

.vic-nome-form input[type="text"]::placeholder {
  color: #999;
  opacity: 1;
  font-family: inherit;
}

.vic-nome-form input[type="text"]:focus {
  border-color: #388A5C;
  outline: none;
  background-color: #fff;
  color: #27344E; /* ✅ anche in focus */
}
.vic-nome-form button {
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.vic-nome-form .vic-send-identificato {
  background-color: #388A5C;
  color: white;
}

.vic-nome-form .vic-send-identificato:hover {
  background-color: #2f704c;
}

.vic-nome-form .vic-send-anonimo {
  background-color: #ECEDFC;
  color: #27344E;
}

.vic-nome-form .vic-send-anonimo:hover {
  background-color: #D4D7FB;
}
/* 🎨 BACHECA IDEE – Layout sexy e leggibile */
.vic-bacheca-idee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin: 40px auto;
  padding: 0 20px;
  max-width: 1440px;
}

.vic-idea-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-left: 5px solid #388A5C;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vic-idea-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.vic-idea-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #27344E;
  margin-bottom: 16px;
  line-height: 1.3;
}

.vic-idea-content {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #3F3F3F;
  padding-bottom: 12px;

  .vic-nome-form input[type="text"] {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: inherit;
    color: #3F3F3F;
    background-color: #fff;
    transition: border-color 0.2s ease;
  }
  
  .vic-nome-form input[type="text"]::placeholder {
    color: #999;
    opacity: 0;
  }
  
  .vic-nome-form input[type="text"]:focus {
    border-color: #388A5C;
    outline: none;
  }