/* =============================
   Estilos Formulario de Contacto (fc-)
   ============================= */
.fc-form-container {
  background: #f4f4f4;
  border-radius: 0;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  min-height: 420px;
}
.fc-form-left {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 1000px;
  padding: 40px 0 40px 0;
  color: #222;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 2.2rem;
  background: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 150px;
}
.fc-form-left p, .fc-form-left span, .fc-form-left a {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 10px;
  display: block;
}
.fc-form-right {
  flex: 2 1 480px;
  min-width: 320px;
  max-width: 2000px;
  padding: 40px 0 40px 0;
  background: none;
}
.fc-form {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fc-label {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: -14px;
  line-height: 1.1;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 400;
  transition: color 0.2s;
}
.fc-input,
.fc-select,
.fc-textarea {
  width: 100%;
  font-size: 1.1rem;
  padding: 10px 12px;
  border: 1.5px solid #bbb;
  border-radius: 4px;
  background: #fff;
  color: #222;
  font-family: 'Raleway', Arial, sans-serif;
  transition: border-color 0.2s;
  box-sizing: border-box;
  margin-top: 0 !important;
}
.fc-input:focus, .fc-select:focus, .fc-textarea:focus {
  border-color: #348CB2;
  outline: none;
}
.fc-input.fc-error, .fc-select.fc-error, .fc-textarea.fc-error {
  border-color: #e74c3c;
}
.fc-label.fc-error {
  color: #e74c3c;
}
.fc-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}
.fc-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #348CB2;
}
.fc-btn {
  width: 100%;
  background: #348CB2;
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Raleway', Arial, sans-serif;
  border: none;
  border-radius: 4px;
  padding: 12px 0;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.fc-btn:hover, .fc-btn:focus {
  background: #246080;
}
.fc-success-message {
  color: #1a7f3c;
  background: #eafaf1;
  border: 1.5px solid #1a7f3c;
  border-radius: 4px;
  padding: 16px;
  margin-top: 18px;
  text-align: center;
  font-size: 1.1rem;
  font-family: 'Raleway', Arial, sans-serif;
  animation: fc-fadein 0.5s;
}
@keyframes fc-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 900px) {
  .fc-form-container {
    flex-direction: column;
    align-items: stretch;
  }
  .fc-form-left, .fc-form-right {
    max-width: 100%;
    padding: 24px 0;
    justify-content: flex-start;
  }
  .fc-form {
    max-width: 100%;
  }
  .fc-form-left {
    margin-left: 0;
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .fc-form-left, .fc-form-right {
    padding: 16px 0;
    font-size: 1.1rem;
  }
  .fc-form {
    gap: 12px;
  }
  .fc-btn {
    font-size: 1rem;
    padding: 10px 0;
  }
} 