/*
 * @author ( Joan Anglés i Gómez )
 * el roig
*/

/*
  Propietats personalitzades del Formulari de contacte.
*/


/* Formulari de contacte - Text introducció i nota: Tots els camps són obligatoris. */
.text-intro-formulari-contacte h5,
.text-intro-formulari-contacte p {
  margin-top: 0.5em;
  margin-bottom: 0;
  line-height: 1.4em;
  font-size: 0.9em;
}

.text-intro-formulari-contacte hr {
  border: none;
  border-top: 2px dashed #ccc; 
} 

.formulari-nota-obligatoria {
  display: block;
  font-style: italic;
  text-align: center;
  color: #666;
}

/* Formulari de contacte - Estils al cos, etiqueta main */
.cos-formulari {
  padding: 0.7em;
}

/* Formulari de contacte */
form#contactoFormulario {
  max-width: 600px;
  margin: 1.3em auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

form#contactoFormulario div {
  margin-bottom: 15px;
}

form#contactoFormulario label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

form#contactoFormulario input[type="text"],
form#contactoFormulario input[type="email"],
form#contactoFormulario textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Formulari de contacte - Política de dades / RGPD i Política de Privacitat */
/* Formulari de contacte - Text/enllaç Consulta la política de dades. */
.rgpd-dades {
  font-size: 13px;
  color: #555;
  margin-left: 1em;
  line-height: 0.5em;
}

.rgpd-dades a {
  color: #e63946;
  text-decoration: underline;
  text-decoration-style: dotted;
}

/* Formulari de contacte - Text/enllaç He llegit i accepte la Política de Privacitat. */
.politica-privacidad {
  display: flex;
  align-items: center;
}

.politica-privacidad input {
  width: auto;
  margin-right: 10px;
}

form#contactoFormulario label[for="acepto_politica"] {
  font-weight: normal;
  font-size: 0.9em;
}

/* Formulari de contacte - Subratllat Consulta la política de dades. i He llegit i accepte la Política de Privacitat. */
.politica-privacidad a,
.rgpd-dades a {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.politica-privacidad a:hover,
.rgpd-dades a:hover,
.politica-privacidad a:focus,
.rgpd-dades a:focus {
  background: #c8c8c8 !important;
  color: darkred !important;text-decoration-style: solid;
}

/* Formulari de contacte - Botó Envia Missatge */
form#contactoFormulario button {
  background-color: #007bff;
  color: white; padding: 10px 15px;
  border: none; border-radius: 4px;
  cursor: pointer; font-size: 16px;
}

form#contactoFormulario button:hover {
  background-color: #0056b3;
}

/* Formulari de contacte - nota: Aquest lloc està protegit per reCAPTCHA ... */
.nora-recaptcha {font-size: 0.9em;display: block;
  font-style: italic;
  text-align: center;
  color: #666;
}

.nora-recaptcha a {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.nora-recaptcha a:hover,
.nora-recaptcha a:hover {
  background: #c8c8c8 !important;
  color: darkred !important;text-decoration-style: solid;
}



/* --- MODAL FONS --- */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

/* --- CONTENIDOR DEL MODAL --- */
.modal-content {
  background: #ffffff;
  max-width: 460px;
  margin: 10% auto;
  padding: 30px 28px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  font-family: Arial, Helvetica, sans-serif;
  animation: modalFade 0.25s ease-out;
}

/* Animació d’entrada */
@keyframes modalFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Títol */
.modal-content h3 {
  margin-top: 0;
  color: #003366;       /* Blau corporatiu Servidors Roig */
  font-size: 22px;
}

/* Paràgrafs */
.modal-content p {
  color: #333;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* --- BOTONS --- */
.modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

/* Botó ACCEPTAR */
.modal-accept {
  background: #0055a5;     /* Blau principal del teu lloc */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.modal-accept:hover {
  background: #003f7d;     /* blau més fosc al hover */
}

/* Botó CANCEL·LAR */
.modal-cancel {
  background: #777;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s ease;
}

.modal-cancel:hover {
  background: #555;
}



#activarCaptchaBtn {
  background: #0055a5;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.2s ease;
}

#activarCaptchaBtn:hover {
  background: #003f7d;
}

#enviarBtn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
